From 41dd9817d61913fc1b4d074853e839050fa9473f Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Mon, 3 Feb 2025 09:16:26 -0800 Subject: [PATCH 001/103] [RDS] Replace XML Jinja Templates with XML Response Serializer (#8555) Add a response serializer for the AWS Query protocol to the RDS backend, eliminating the need for manually editing XML Jinja templates. The serializer uses the model information already present in the `botocore` data files to output formatted, type-aware XML responses based on the `moto` RDS model classes. --- moto/rds/exceptions.py | 24 +- moto/rds/models.py | 598 ---------------- moto/rds/responses.py | 1486 +++++++++------------------------------- moto/rds/serialize.py | 386 +++++++++++ moto/rds/utils.py | 85 +++ moto/rds/viewmodels.py | 441 ++++++++++++ 6 files changed, 1254 insertions(+), 1766 deletions(-) create mode 100644 moto/rds/serialize.py create mode 100644 moto/rds/viewmodels.py diff --git a/moto/rds/exceptions.py b/moto/rds/exceptions.py index 181b5ba1c109..8150687fc593 100644 --- a/moto/rds/exceptions.py +++ b/moto/rds/exceptions.py @@ -1,23 +1,7 @@ -from jinja2 import Template - -from moto.core.exceptions import RESTError - - -class RDSClientError(RESTError): +class RDSClientError(Exception): def __init__(self, code: str, message: str): - super().__init__(error_type=code, message=message) - template = Template( - """ - - - {{ code }} - {{ message }} - Sender - - 6876f774-7273-11e4-85dc-39e55ca848d1 - """ - ) - self.description = template.render(code=code, message=message) + super().__init__(message) + self.code = code class DBInstanceNotFoundError(RDSClientError): @@ -48,8 +32,6 @@ def __init__(self, security_group_name: str): class DBSubnetGroupNotFoundError(RDSClientError): - code = 404 - def __init__(self, subnet_group_name: str): super().__init__( "DBSubnetGroupNotFoundFault", f"Subnet Group {subnet_group_name} not found." diff --git a/moto/rds/models.py b/moto/rds/models.py index 4f070b2231fe..6f0aa2ce3540 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -8,8 +8,6 @@ from re import compile as re_compile from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Tuple, Union -from jinja2 import Template - from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel from moto.core.utils import iso_8601_datetime_with_milliseconds @@ -168,26 +166,6 @@ def __init__( def name(self) -> str: return self._name - def to_xml(self) -> str: - template = Template("""{{ group.proxy_name }} - {{ group.group_name }} - {{ group.arn }} - true - available - - {{ group.max_connections }} - {{ group.max_idle_connections }} - {{ group.borrow_timeout }} - - {% for filter in group.session_pinning_filters %} - {{ filter }} - {% endfor %} - - - {{ group.created_date }} - {{ group.updated_date }}""") - return template.render(group=self) - class GlobalCluster(RDSBaseModel): resource_type = "global-cluster" @@ -233,37 +211,6 @@ def arn(self) -> str: def global_cluster_arn(self) -> str: return self.arn - def to_xml(self) -> str: - template = Template( - """ - {{ cluster.global_cluster_identifier }} - {{ cluster.global_cluster_resource_id }} - {{ cluster.global_cluster_arn }} - {{ cluster.engine }} - available - {{ cluster.engine_version }} - {{ 'true' if cluster.storage_encrypted else 'false' }} - {{ 'true' if cluster.deletion_protection else 'false' }} - - {% for cluster_member in cluster.members %} - - {{ cluster_member.arn }} - {{ 'true' if cluster_member.is_writer else 'false' }} - {% if not cluster_member.is_writer %}disabled{% endif %} - - {% if cluster_member.is_writer %} - {% for reader in cluster.members %} - {% if not reader.is_writer %}{{ reader.db_cluster_arn }}{% endif %} - {% endfor %} - {% endif %} - - - {% endfor %} - - """ - ) - return template.render(cluster=self) - class DBCluster(RDSBaseModel): SUPPORTED_FILTERS = { @@ -517,123 +464,6 @@ def get_cfg(self) -> Dict[str, Any]: cfg["enable_http_endpoint"] = cfg.pop("_enable_http_endpoint") return cfg - def to_xml(self, initial: bool = False) -> str: - status = "creating" if initial else self.status - template = Template( - """ - {{ cluster.allocated_storage }} - - {% for zone in cluster.availability_zones %} - {{ zone }} - {% endfor %} - - {{ cluster.backup_retention_period }} - {{ cluster.backtrack_window }} - {{ cluster.status }} - {% if cluster.db_name %}{{ cluster.db_name }}{% endif %} - {% if cluster.kms_key_id %}{{ cluster.kms_key_id }}{% endif %} - {% if cluster.network_type %}{{ cluster.network_type }}{% endif %} - {{ cluster.db_cluster_identifier }} - {{ cluster.parameter_group }} - {{ cluster.subnet_group }} - {{ cluster.cluster_create_time }} - {{ cluster.earliest_restorable_time }} - {{ cluster.engine }} - {{ status }} - {{ cluster.endpoint }} - {{ cluster.reader_endpoint }} - {{ 'true' if cluster.is_multi_az else 'false' }} - {{ cluster.engine_version }} - {{ cluster.port }} - {% if cluster.iops %} - {{ cluster.iops }} - io1 - {% endif %} - {% if cluster.db_cluster_instance_class %}{{ cluster.db_cluster_instance_class }}{% endif %} - {{ cluster.master_username }} - {{ cluster.preferred_backup_window }} - {{ cluster.preferred_maintenance_window }} - - {% for replica_id in cluster.read_replica_identifiers %} - {{ replica_id }} - {% endfor %} - - - {% for member in cluster.cluster_members %} - - {{ member }} - true - in-sync - 1 - - {% endfor %} - - - {% for id in cluster.vpc_security_group_ids %} - - {{ id }} - active - - {% endfor %} - - {{ cluster.hosted_zone_id }} - {{ 'true' if cluster.storage_encrypted else 'false' }} - {{ 'true' if cluster.global_write_forwarding_requested else 'false' }} - {{ cluster.resource_id }} - {{ cluster.db_cluster_arn }} - - {{ 'true' if cluster.iam_auth else 'false' }} - {{ cluster.engine_mode }} - {{ 'true' if cluster.deletion_protection else 'false' }} - {{ 'true' if cluster.enable_http_endpoint else 'false' }} - {{ 'true' if cluster.copy_tags_to_snapshot else 'false' }} - false - - - {% for export in cluster.enabled_cloudwatch_logs_exports %} - {{ export }} - {% endfor %} - - - {%- for tag in cluster.tags -%} - - {{ tag['Key'] }} - {{ tag['Value'] }} - - {%- endfor -%} - - {% if cluster.scaling_configuration %} - - {% if "min_capacity" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["min_capacity"] }}{% endif %} - {% if "max_capacity" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["max_capacity"] }}{% endif %} - {% if "auto_pause" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["auto_pause"] }}{% endif %} - {% if "seconds_until_auto_pause" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["seconds_until_auto_pause"] }}{% endif %} - {% if "timeout_action" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["timeout_action"] }}{% endif %} - {% if "seconds_before_timeout" in cluster.scaling_configuration %}{{ cluster.scaling_configuration["seconds_before_timeout"] }}{% endif %} - - {% endif %} - {% if cluster.serverless_v2_scaling_configuration %} - - {% if "MinCapacity" in cluster.serverless_v2_scaling_configuration %}{{ cluster.serverless_v2_scaling_configuration["MinCapacity"] }}{% endif %} - {% if "MaxCapacity" in cluster.serverless_v2_scaling_configuration %}{{ cluster.serverless_v2_scaling_configuration["MaxCapacity"] }}{% endif %} - - {% endif %} - {%- if cluster.global_cluster_identifier -%} - {{ cluster.global_cluster_identifier }} - {%- endif -%} - {%- if cluster.replication_source_identifier -%}{{ cluster.replication_source_identifier }}{%- endif -%} - {%- if cluster.manage_master_user_password -%} - - {% set master_user_secret = cluster.master_user_secret() %} - {% if "secret_arn" in master_user_secret %}{{ master_user_secret["secret_arn"] }}{% endif %} - {% if "secret_status" in master_user_secret %}{{ master_user_secret["secret_status"] }}{% endif %} - {% if "kms_key_id" in master_user_secret %}{{ master_user_secret["kms_key_id"] }}{% endif %} - - {%- endif -%} - """ - ) - return template.render(cluster=self, status=status) - @staticmethod def default_engine_version(engine: str) -> str: return { @@ -715,41 +545,6 @@ def name(self) -> str: def snapshot_arn(self) -> str: return self.arn - def to_xml(self) -> str: - template = Template( - """ - - {{ snapshot.snapshot_id }} - {{ snapshot.created_at }} - {{ cluster.db_cluster_identifier }} - {{ snapshot.created_at }} - {{ 100 }} - {{ cluster.allocated_storage }} - {{ cluster.master_username }} - {{ cluster.port }} - {{ cluster.engine }} - {{ snapshot.status }} - {{ snapshot.snapshot_type }} - {{ snapshot.snapshot_arn }} - {{ cluster.region }} - {% if cluster.iops %} - {{ cluster.iops }} - io1 - {% else %} - {{ cluster.storage_type }} - {% endif %} - - {%- for tag in snapshot.tags -%} - {{ tag['Key'] }}{{ tag['Value'] }} - {%- endfor -%} - - - {{ cluster.license_model }} - - """ - ) - return template.render(snapshot=self, cluster=self.cluster) - class DBInstance(CloudFormationModel, RDSBaseModel): SUPPORTED_FILTERS = { @@ -962,140 +757,6 @@ def master_user_secret(self) -> Dict[str, Any]: else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.name}", } - def to_xml(self) -> str: - template = Template( - """ - {{ database.availability_zone }} - {{ database.backup_retention_period }} - {{ database.status }} - {% if database.db_name %}{{ database.db_name }}{% endif %} - {{ 'true' if database.multi_az else 'false' }} - - {% for vpc_security_group_id in database.vpc_security_group_ids %} - - active - {{ vpc_security_group_id }} - - {% endfor %} - - {% if database.db_cluster_identifier %}{{ database.db_cluster_identifier }}{% endif %} - {{ database.db_instance_identifier }} - {{ database.dbi_resource_id }} - {{ database.instance_create_time }} - {{ database.preferred_backup_window }} - {{ database.preferred_maintenance_window }} - - {% for replica_id in database.replicas %} - {{ replica_id }} - {% endfor %} - - - {% if database.is_replica %} - - read replication - replicating - true - - - {% endif %} - - - {% for export in database.enabled_cloudwatch_logs_exports %} - {{ export }} - {% endfor %} - - {% if database.is_replica %} - {{ database.source_db_identifier }} - {% endif %} - {{ database.engine }} - {{'true' if database.enable_iam_database_authentication else 'false' }} - {{ database.license_model }} - {{ database.engine_version }} - - - {{ database.option_group_name }} - in-sync - - - - {% for db_parameter_group in database.db_parameter_groups() %} - - in-sync - {{ db_parameter_group.name }} - - {% endfor %} - - - {% for security_group in database.security_groups %} - - active - {{ security_group }} - - {% endfor %} - - {% if database.db_subnet_group %} - - {{ database.db_subnet_group.subnet_name }} - {{ database.db_subnet_group.description }} - {{ database.db_subnet_group.status }} - - {% for subnet in database.db_subnet_group.subnets %} - - Active - {{ subnet.id }} - - {{ subnet.availability_zone }} - false - - - {% endfor %} - - {{ database.db_subnet_group.vpc_id }} - - {% endif %} - {{ 'true' if database.publicly_accessible else 'false' }} - {{ 'true' if database.copy_tags_to_snapshot else 'false' }} - {{ 'true' if database.auto_minor_version_upgrade else 'false' }} - {{ database.allocated_storage }} - {{ 'true' if database.storage_encrypted else 'false' }} - {% if database.kms_key_id %} - {{ database.kms_key_id }} - {% endif %} - {% if database.iops %} - {{ database.iops }} - io1 - {% else %} - {{ database.storage_type }} - {% endif %} - {{ database.db_instance_class }} - {{ database.master_username }} - -
{{ database.address }}
- {{ database.port }} -
- {{ database.port }} - {{ database.db_instance_arn }} - - {%- for tag in database.tags -%} - - {{ tag['Key'] }} - {{ tag['Value'] }} - - {%- endfor -%} - - {{ 'true' if database.deletion_protection else 'false' }} - {%- if database.manage_master_user_password -%} - - {% set master_user_secret = database.master_user_secret() %} - {% if "secret_arn" in master_user_secret %}{{ master_user_secret["secret_arn"] }}{% endif %} - {% if "secret_status" in master_user_secret %}{{ master_user_secret["secret_status"] }}{% endif %} - {% if "kms_key_id" in master_user_secret %}{{ master_user_secret["kms_key_id"] }}{% endif %} - - {%- endif -%} -
""" - ) - return template.render(database=self) - @property def address(self) -> str: return ( @@ -1299,57 +960,6 @@ def name(self) -> str: def snapshot_arn(self) -> str: return self.arn - def to_xml(self) -> str: - template = Template( - """ - {{ snapshot.snapshot_id }} - {{ database.db_instance_identifier }} - {{ database.dbi_resource_id }} - {{ snapshot.created_at }} - {{ database.engine }} - {{ database.allocated_storage }} - {{ snapshot.status }} - {{ database.port }} - {{ database.availability_zone }} - {{ database.db_subnet_group.vpc_id }} - {{ snapshot.created_at }} - {% if database.master_username %} - {{ database.master_username }} - {% endif %} - {{ database.engine_version }} - {% if database.license_model %} - {{ database.license_model }} - {% endif %} - {{ snapshot.snapshot_type }} - {% if database.iops %} - {{ database.iops }} - io1 - {% else %} - {{ database.storage_type }} - {% endif %} - {{ database.option_group_name }} - {{ 100 }} - {{ database.region }} - - - {%- for tag in snapshot.tags -%} - {{ tag['Key'] }}{{ tag['Value'] }} - {%- endfor -%} - - - {{ database.storage_encrypted }} - {% if database.kms_key_id %} - {{ database.kms_key_id }} - {% endif %} - {{ snapshot.snapshot_arn }} - - {% if database.enable_iam_database_authentication %} - {{ 'true' if database.enable_iam_database_authentication else 'false' }} - {% endif %} - """ - ) - return template.render(snapshot=self, database=self.database) - class ExportTask(BaseModel): def __init__( @@ -1371,35 +981,6 @@ def __init__( self.created_at = iso_8601_datetime_with_milliseconds() self.source_type = "SNAPSHOT" if type(snapshot) is DBSnapshot else "CLUSTER" - def to_xml(self) -> str: - template = Template( - """ - {{ task.export_task_identifier }} - {{ snapshot.snapshot_arn }} - {{ task.created_at }} - {{ task.created_at }} - {{ snapshot.created_at }} - {{ task.s3_bucket_name }} - {{ task.s3_prefix }} - {{ task.iam_role_arn }} - {{ task.kms_key_id }} - {%- if task.export_only -%} - - {%- for table in task.export_only -%} - {{ table }} - {%- endfor -%} - - {%- endif -%} - {{ task.status }} - {{ 100 }} - {{ 1 }} - - - {{ task.source_type }} - """ - ) - return template.render(task=self, snapshot=self.snapshot) - class EventSubscription(RDSBaseModel): resource_type = "es" @@ -1422,38 +1003,6 @@ def __init__(self, backend: "RDSBackend", subscription_name: str, **kwargs: Any) def name(self) -> str: return self.subscription_name - def to_xml(self) -> str: - template = Template( - """ - - {{ subscription.account_id }} - {{ subscription.name }} - {{ subscription.sns_topic_arn }} - {{ subscription.created_at }} - {{ subscription.source_type }} - - {%- for source_id in subscription.source_ids -%} - {{ source_id }} - {%- endfor -%} - - - {%- for category in subscription.event_categories -%} - {{ category }} - {%- endfor -%} - - {{ subscription.status }} - {{ 'true' if subscription.enabled else 'false' }} - {{ subscription.arn }} - - {%- for tag in subscription.tags -%} - {{ tag['Key'] }}{{ tag['Value'] }} - {%- endfor -%} - - - """ - ) - return template.render(subscription=self) - class DBSecurityGroup(CloudFormationModel, RDSBaseModel): resource_type = "secgrp" @@ -1478,36 +1027,6 @@ def __init__( def name(self) -> str: return self.group_name - def to_xml(self) -> str: - template = Template( - """ - - {% for security_group in security_group.ec2_security_groups %} - - {{ security_group.id }} - {{ security_group.group_name }} - {{ security_group.account_id }} - authorized - - {% endfor %} - - - {{ security_group.description }} - - {% for ip_range in security_group.ip_ranges %} - - {{ ip_range }} - authorized - - {% endfor %} - - {{ security_group.ownder_id }} - {{ security_group.name }} - {{ security_group.arn }} - """ - ) - return template.render(security_group=self) - def authorize_cidr(self, cidr_ip: str) -> None: self.ip_ranges.append(cidr_ip) @@ -1583,30 +1102,6 @@ def __init__( def name(self) -> str: return self.subnet_name - def to_xml(self) -> str: - template = Template( - """ - {{ subnet_group.vpc_id }} - {{ subnet_group.status }} - {{ subnet_group.description }} - {{ subnet_group.name }} - {{ subnet_group.arn }} - - {% for subnet in subnet_group.subnets %} - - Active - {{ subnet.id }} - - {{ subnet.availability_zone }} - false - - - {% endfor %} - - """ - ) - return template.render(subnet_group=self) - @staticmethod def cloudformation_name_type() -> str: return "DBSubnetGroupName" @@ -1728,49 +1223,6 @@ def name(self) -> str: def arn(self) -> str: return f"arn:{self.partition}:rds:{self.region}:{self.account_id}:{self.resource_type}:{self.unique_id}" - def to_xml(self) -> str: - template = Template( - """ - {{ dbproxy.require_tls }} - - {% if dbproxy.vpc_security_group_ids %} - {% for sg in dbproxy.vpc_security_group_ids %} - {{ sg }} - {% endfor %} - {% endif %} - - - {% for auth in dbproxy.auth %} - - {{ auth["Description"] }} - {{ auth["UserName"] }} - {{ auth["AuthScheme"] }} - {{ auth["SecretArn"] }} - {{ auth["IAMAuth"] }} - {{ auth["ClientPasswordAuthType"] }} - - {% endfor %} - - {{ dbproxy.engine_family }} - {{ dbproxy.updated_date }} - {{ dbproxy.db_proxy_name }} - {{ dbproxy.idle_client_timeout }} - {{ dbproxy.endpoint }} - {{ dbproxy.created_date }} - {{ dbproxy.role_arn }} - {{ 'true' if dbproxy.debug_logging else 'false' }} - {{ dbproxy.vpc_id }} - {{ dbproxy.arn }} - - {% for vpcsubnetid in dbproxy.vpc_subnet_ids %} - {{ vpcsubnetid }} - {% endfor %} - - {{ dbproxy.status }} - """ - ) - return template.render(dbproxy=self) - class RDSBackend(BaseBackend): def __init__(self, region_name: str, account_id: str): @@ -3221,34 +2673,6 @@ def __init__( def name(self) -> str: return self._name - def to_xml(self) -> str: - template = Template( - """ - {{ option_group.name }} - {{ option_group.vpc_and_non_vpc_instance_memberships }} - {{ option_group.major_engine_version }} - {{ option_group.engine_name }} - {{ option_group.description }} - {{ option_group.arn }} - - {% for name, option_settings in option_group.options.items() %} - - {% endfor %} - - """ - ) - return template.render(option_group=self) - def remove_options(self, options_to_remove: Any) -> None: for option in options_to_remove: if isinstance(option, str): @@ -3284,17 +2708,6 @@ def __init__( def name(self) -> str: return self._name - def to_xml(self) -> str: - template = Template( - """ - {{ param_group.name }} - {{ param_group.family }} - {{ param_group.description }} - {{ param_group.arn }} - """ - ) - return template.render(param_group=self) - def update_parameters(self, new_parameters: Iterable[Dict[str, Any]]) -> None: for new_parameter in new_parameters: parameter = self.parameters[new_parameter["ParameterName"]] @@ -3360,16 +2773,5 @@ def __init__(self, backend: RDSBackend, name: str, description: str, family: str def name(self) -> str: return self._name - def to_xml(self) -> str: - template = Template( - """ - {{ param_group.name }} - {{ param_group.family }} - {{ param_group.description }} - {{ param_group.arn }} - """ - ) - return template.render(param_group=self) - rds_backends = BackendDict(RDSBackend, "rds") diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 85ef5081ba89..bf1c359ab2f4 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -1,14 +1,49 @@ from collections import defaultdict from typing import Any, Dict, Iterable, List, Optional, Tuple +from botocore.awsrequest import AWSPreparedRequest +from werkzeug.wrappers import Request + +from moto import settings +from moto.core.common_types import TYPE_RESPONSE from moto.core.responses import BaseResponse from moto.ec2.models import ec2_backends -from .exceptions import DBParameterGroupNotFoundError +from .exceptions import DBParameterGroupNotFoundError, RDSClientError from .models import RDSBackend, rds_backends +from .viewmodels import ( + DBClusterDTO, + DBClusterSnapshotDTO, + DBInstanceDTO, + DBProxyTargetDTO, + DBProxyTargetGroupDTO, + DBSecurityGroupDTO, + DBSnapshotDTO, + DBSubnetGroupDTO, + GlobalClusterDTO, + OptionGroupDTO, +) + + +def normalize_request(request: AWSPreparedRequest) -> Request: + from urllib.parse import urlparse + + parsed_url = urlparse(request.url) + normalized_request = Request.from_values( + method=request.method, + base_url=f"{parsed_url.scheme}://{parsed_url.netloc}", + path=parsed_url.path, + query_string=parsed_url.query, + data=request.body, + headers=[(k, v) for k, v in request.headers.items()], + ) + return normalized_request class RDSResponse(BaseResponse): + def __init__(self) -> None: + super().__init__(service_name="rds") + @property def backend(self) -> RDSBackend: return rds_backends[self.current_account][self.region] @@ -18,6 +53,45 @@ def global_backend(self) -> RDSBackend: """Return backend instance of the region that stores Global Clusters""" return rds_backends[self.current_account]["us-east-1"] + def _dispatch(self, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: + # return super()._dispatch(request, full_url, headers) + self.setup_class(request, full_url, headers) + + if isinstance(request, AWSPreparedRequest): + request = normalize_request(request) + + from .serialize import QuerySerializer + from .utils import ValuePicker, get_service_model + from .viewmodels import SERIALIZATION_ALIASES + + self.action = request.values["Action"] + + service_model = get_service_model(self.service_name) + self.operation_model = service_model.operation_model(self.action) + + # parser = QueryParser() + # parsed = parser.get_parameters( + # {"query_params": request.values}, self.operation_model + # ) + # self.parameters = xform_dict(parsed) + + value_picker = ValuePicker(SERIALIZATION_ALIASES) + self.serializer = QuerySerializer( + self.operation_model, + {"request-id": "request-id"}, + value_picker=value_picker, + pretty_print=settings.PRETTIFY_RESPONSES, + ) + try: + response = self.call_action() + except RDSClientError as e: + response = self.serialize(e) + return response + + def serialize(self, result: Any) -> TYPE_RESPONSE: + serialized = self.serializer.serialize_to_response(result) + return serialized["status_code"], serialized["headers"], serialized["body"] + def _get_db_kwargs(self) -> Dict[str, Any]: args = { "auto_minor_version_upgrade": self._get_param("AutoMinorVersionUpgrade"), @@ -258,20 +332,19 @@ def unpack_list_params(self, label: str, child_label: str) -> List[Dict[str, Any root = self._get_multi_param_dict(label) or {} return root.get(child_label, []) - def create_db_instance(self) -> str: + def create_db_instance(self) -> TYPE_RESPONSE: db_kwargs = self._get_db_kwargs() database = self.backend.create_db_instance(db_kwargs) - template = self.response_template(CREATE_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def create_db_instance_read_replica(self) -> str: + def create_db_instance_read_replica(self) -> TYPE_RESPONSE: db_kwargs = self._get_db_replica_kwargs() - database = self.backend.create_db_instance_read_replica(db_kwargs) - template = self.response_template(CREATE_DATABASE_REPLICA_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def describe_db_instances(self) -> str: + def describe_db_instances(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") filters = self._get_multi_param("Filters.Filter.") filter_dict = {f["Name"]: f["Values"] for f in filters} @@ -281,10 +354,13 @@ def describe_db_instances(self) -> str: ) ) instances_resp, next_marker = self._paginate(all_instances) - template = self.response_template(DESCRIBE_DATABASES_TEMPLATE) - return template.render(databases=instances_resp, marker=next_marker) + result = { + "DBInstances": [DBInstanceDTO(db) for db in instances_resp], + "Marker": next_marker, + } + return self.serialize(result) - def modify_db_instance(self) -> str: + def modify_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_kwargs = self._get_db_kwargs() # NOTE modify_db_instance does not support tags @@ -293,10 +369,10 @@ def modify_db_instance(self) -> str: if new_db_instance_identifier: db_kwargs["new_db_instance_identifier"] = new_db_instance_identifier database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) - template = self.response_template(MODIFY_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def delete_db_instance(self) -> str: + def delete_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_snapshot_name = self._get_param("FinalDBSnapshotIdentifier") if db_snapshot_name is not None: @@ -307,16 +383,16 @@ def delete_db_instance(self) -> str: database = self.backend.delete_db_instance( db_instance_identifier, db_snapshot_name ) - template = self.response_template(DELETE_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def reboot_db_instance(self) -> str: + def reboot_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") database = self.backend.reboot_db_instance(db_instance_identifier) - template = self.response_template(REBOOT_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def create_db_snapshot(self) -> str: + def create_db_snapshot(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") tags = self.unpack_list_params("Tags", "Tag") @@ -328,10 +404,10 @@ def create_db_snapshot(self) -> str: db_snapshot_identifier, tags=tags, ) - template = self.response_template(CREATE_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + return self.serialize(result) - def copy_db_snapshot(self) -> str: + def copy_db_snapshot(self) -> TYPE_RESPONSE: source_snapshot_identifier = self._get_param("SourceDBSnapshotIdentifier") target_snapshot_identifier = self._get_param("TargetDBSnapshotIdentifier") tags = self.unpack_list_params("Tags", "Tag") @@ -343,10 +419,10 @@ def copy_db_snapshot(self) -> str: snapshot = self.backend.copy_db_snapshot( source_snapshot_identifier, target_snapshot_identifier, tags, copy_tags ) - template = self.response_template(COPY_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + return self.serialize(result) - def describe_db_snapshots(self) -> str: + def describe_db_snapshots(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") filters = self._get_multi_param("Filters.Filter.") @@ -354,33 +430,33 @@ def describe_db_snapshots(self) -> str: snapshots = self.backend.describe_db_snapshots( db_instance_identifier, db_snapshot_identifier, filter_dict ) - template = self.response_template(DESCRIBE_SNAPSHOTS_TEMPLATE) - return template.render(snapshots=snapshots) + result = {"DBSnapshots": [DBSnapshotDTO(snapshot) for snapshot in snapshots]} + return self.serialize(result) - def promote_read_replica(self) -> str: + def promote_read_replica(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_kwargs = self._get_db_kwargs() database = self.backend.promote_read_replica(db_kwargs) database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) - template = self.response_template(PROMOTE_REPLICA_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": DBInstanceDTO(database)} + return self.serialize(result) - def delete_db_snapshot(self) -> str: + def delete_db_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") snapshot = self.backend.delete_db_snapshot(db_snapshot_identifier) - template = self.response_template(DELETE_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + return self.serialize(result) - def restore_db_instance_from_db_snapshot(self) -> str: + def restore_db_instance_from_db_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") db_kwargs = self._get_db_kwargs() new_instance = self.backend.restore_db_instance_from_db_snapshot( db_snapshot_identifier, db_kwargs ) - template = self.response_template(RESTORE_INSTANCE_FROM_SNAPSHOT_TEMPLATE) - return template.render(database=new_instance) + result = {"DBInstance": DBInstanceDTO(new_instance)} + return self.serialize(result) - def restore_db_instance_to_point_in_time(self) -> str: + def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: source_db_identifier = self._get_param("SourceDBInstanceIdentifier") target_db_identifier = self._get_param("TargetDBInstanceIdentifier") @@ -388,30 +464,28 @@ def restore_db_instance_to_point_in_time(self) -> str: new_instance = self.backend.restore_db_instance_to_point_in_time( source_db_identifier, target_db_identifier, db_kwargs ) - template = self.response_template(RESTORE_INSTANCE_TO_POINT_IN_TIME_TEMPLATE) - return template.render(database=new_instance) + result = {"DBInstance": DBInstanceDTO(new_instance)} + return self.serialize(result) - def list_tags_for_resource(self) -> str: + def list_tags_for_resource(self) -> TYPE_RESPONSE: arn = self._get_param("ResourceName") - template = self.response_template(LIST_TAGS_FOR_RESOURCE_TEMPLATE) tags = self.backend.list_tags_for_resource(arn) - return template.render(tags=tags) + result = {"TagList": tags} + return self.serialize(result) - def add_tags_to_resource(self) -> str: + def add_tags_to_resource(self) -> TYPE_RESPONSE: arn = self._get_param("ResourceName") tags = self.unpack_list_params("Tags", "Tag") - tags = self.backend.add_tags_to_resource(arn, tags) - template = self.response_template(ADD_TAGS_TO_RESOURCE_TEMPLATE) - return template.render(tags=tags) + self.backend.add_tags_to_resource(arn, tags) + return self.serialize({}) - def remove_tags_from_resource(self) -> str: + def remove_tags_from_resource(self) -> TYPE_RESPONSE: arn = self._get_param("ResourceName") tag_keys = self.unpack_list_params("TagKeys", "member") self.backend.remove_tags_from_resource(arn, tag_keys) # type: ignore - template = self.response_template(REMOVE_TAGS_FROM_RESOURCE_TEMPLATE) - return template.render() + return self.serialize({}) - def stop_db_instance(self) -> str: + def stop_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") if db_snapshot_identifier is not None: @@ -422,47 +496,49 @@ def stop_db_instance(self) -> str: database = self.backend.stop_db_instance( db_instance_identifier, db_snapshot_identifier ) - template = self.response_template(STOP_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": database} + return self.serialize(result) - def start_db_instance(self) -> str: + def start_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") database = self.backend.start_db_instance(db_instance_identifier) - template = self.response_template(START_DATABASE_TEMPLATE) - return template.render(database=database) + result = {"DBInstance": database} + return self.serialize(result) - def create_db_security_group(self) -> str: + def create_db_security_group(self) -> TYPE_RESPONSE: group_name = self._get_param("DBSecurityGroupName") description = self._get_param("DBSecurityGroupDescription") tags = self.unpack_list_params("Tags", "Tag") security_group = self.backend.create_db_security_group( group_name, description, tags ) - template = self.response_template(CREATE_SECURITY_GROUP_TEMPLATE) - return template.render(security_group=security_group) + result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + return self.serialize(result) - def describe_db_security_groups(self) -> str: + def describe_db_security_groups(self) -> TYPE_RESPONSE: security_group_name = self._get_param("DBSecurityGroupName") security_groups = self.backend.describe_security_groups(security_group_name) - template = self.response_template(DESCRIBE_SECURITY_GROUPS_TEMPLATE) - return template.render(security_groups=security_groups) + result = { + "DBSecurityGroups": [DBSecurityGroupDTO(sg) for sg in security_groups] + } + return self.serialize(result) - def delete_db_security_group(self) -> str: + def delete_db_security_group(self) -> TYPE_RESPONSE: security_group_name = self._get_param("DBSecurityGroupName") security_group = self.backend.delete_security_group(security_group_name) - template = self.response_template(DELETE_SECURITY_GROUP_TEMPLATE) - return template.render(security_group=security_group) + result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + return self.serialize(result) - def authorize_db_security_group_ingress(self) -> str: + def authorize_db_security_group_ingress(self) -> TYPE_RESPONSE: security_group_name = self._get_param("DBSecurityGroupName") cidr_ip = self._get_param("CIDRIP") security_group = self.backend.authorize_security_group( security_group_name, cidr_ip ) - template = self.response_template(AUTHORIZE_SECURITY_GROUP_TEMPLATE) - return template.render(security_group=security_group) + result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + return self.serialize(result) - def create_db_subnet_group(self) -> str: + def create_db_subnet_group(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") description = self._get_param("DBSubnetGroupDescription") subnet_ids = self._get_multi_param("SubnetIds.SubnetIdentifier") @@ -474,16 +550,18 @@ def create_db_subnet_group(self) -> str: subnet_group = self.backend.create_subnet_group( subnet_name, description, subnets, tags ) - template = self.response_template(CREATE_SUBNET_GROUP_TEMPLATE) - return template.render(subnet_group=subnet_group) + result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + return self.serialize(result) - def describe_db_subnet_groups(self) -> str: + def describe_db_subnet_groups(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") subnet_groups = self.backend.describe_db_subnet_groups(subnet_name) - template = self.response_template(DESCRIBE_SUBNET_GROUPS_TEMPLATE) - return template.render(subnet_groups=subnet_groups) + result = { + "DBSubnetGroups": [DBSubnetGroupDTO(group) for group in subnet_groups] + } + return self.serialize(result) - def modify_db_subnet_group(self) -> str: + def modify_db_subnet_group(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") description = self._get_param("DBSubnetGroupDescription") subnet_ids = self._get_multi_param("SubnetIds.SubnetIdentifier") @@ -494,33 +572,36 @@ def modify_db_subnet_group(self) -> str: subnet_group = self.backend.modify_db_subnet_group( subnet_name, description, subnets ) - template = self.response_template(MODIFY_SUBNET_GROUPS_TEMPLATE) - return template.render(subnet_group=subnet_group) + result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + return self.serialize(result) - def delete_db_subnet_group(self) -> str: + def delete_db_subnet_group(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") subnet_group = self.backend.delete_subnet_group(subnet_name) - template = self.response_template(DELETE_SUBNET_GROUP_TEMPLATE) - return template.render(subnet_group=subnet_group) + result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + return self.serialize(result) - def create_option_group(self) -> str: + def create_option_group(self) -> TYPE_RESPONSE: kwargs = self._get_option_group_kwargs() option_group = self.backend.create_option_group(kwargs) - template = self.response_template(CREATE_OPTION_GROUP_TEMPLATE) - return template.render(option_group=option_group) + result = {"OptionGroup": OptionGroupDTO(option_group)} + return self.serialize(result) - def delete_option_group(self) -> str: + def delete_option_group(self) -> TYPE_RESPONSE: kwargs = self._get_option_group_kwargs() option_group = self.backend.delete_option_group(kwargs["name"]) - template = self.response_template(DELETE_OPTION_GROUP_TEMPLATE) - return template.render(option_group=option_group) + result = {"OptionGroup": OptionGroupDTO(option_group)} + return self.serialize(result) - def describe_option_groups(self) -> str: + def describe_option_groups(self) -> TYPE_RESPONSE: kwargs = self._get_option_group_kwargs() option_groups = self.backend.describe_option_groups(kwargs) - option_groups, _ = self._paginate(option_groups) - template = self.response_template(DESCRIBE_OPTION_GROUP_TEMPLATE) - return template.render(option_groups=option_groups) + option_groups, marker = self._paginate(option_groups) + result = { + "OptionGroupsList": [OptionGroupDTO(group) for group in option_groups], + "Marker": marker, + } + return self.serialize(result) def describe_option_group_options(self) -> str: engine_name = self._get_param("EngineName") @@ -529,7 +610,7 @@ def describe_option_group_options(self) -> str: engine_name, major_engine_version ) - def modify_option_group(self) -> str: + def modify_option_group(self) -> TYPE_RESPONSE: option_group_name = self._get_param("OptionGroupName") options_to_include = (self._get_multi_param_dict("OptionsToInclude") or {}).get( "OptionConfiguration", [] @@ -539,30 +620,30 @@ def modify_option_group(self) -> str: option_group = self.backend.modify_option_group( option_group_name, options_to_include, options_to_remove ) - template = self.response_template(MODIFY_OPTION_GROUP_TEMPLATE) - return template.render(option_group=option_group) + result = {"OptionGroup": OptionGroupDTO(option_group)} + return self.serialize(result) - def create_db_parameter_group(self) -> str: + def create_db_parameter_group(self) -> TYPE_RESPONSE: kwargs = self._get_db_parameter_group_kwargs() db_parameter_group = self.backend.create_db_parameter_group(kwargs) - template = self.response_template(CREATE_DB_PARAMETER_GROUP_TEMPLATE) - return template.render(db_parameter_group=db_parameter_group) + result = {"DBParameterGroup": db_parameter_group} + return self.serialize(result) - def describe_db_parameter_groups(self) -> str: + def describe_db_parameter_groups(self) -> TYPE_RESPONSE: kwargs = self._get_db_parameter_group_kwargs() db_parameter_groups = self.backend.describe_db_parameter_groups(kwargs) db_parameter_groups, _ = self._paginate(db_parameter_groups) - template = self.response_template(DESCRIBE_DB_PARAMETER_GROUPS_TEMPLATE) - return template.render(db_parameter_groups=db_parameter_groups) + result = {"DBParameterGroups": db_parameter_groups} + return self.serialize(result) - def modify_db_parameter_group(self) -> str: + def modify_db_parameter_group(self) -> TYPE_RESPONSE: db_parameter_group_name = self._get_param("DBParameterGroupName") db_parameter_group_parameters = self._get_db_parameter_group_parameters() db_parameter_group = self.backend.modify_db_parameter_group( db_parameter_group_name, db_parameter_group_parameters ) - template = self.response_template(MODIFY_DB_PARAMETER_GROUP_TEMPLATE) - return template.render(db_parameter_group=db_parameter_group) + result = {"DBParameterGroupName": db_parameter_group.name} + return self.serialize(result) def _get_db_parameter_group_parameters(self) -> Iterable[Dict[str, Any]]: parameter_group_parameters: Dict[str, Any] = defaultdict(dict) @@ -578,86 +659,85 @@ def _get_db_parameter_group_parameters(self) -> Iterable[Dict[str, Any]]: return parameter_group_parameters.values() - def describe_db_parameters(self) -> str: + def describe_db_parameters(self) -> TYPE_RESPONSE: db_parameter_group_name = self._get_param("DBParameterGroupName") db_parameter_groups = self.backend.describe_db_parameter_groups( {"name": db_parameter_group_name} ) if not db_parameter_groups: raise DBParameterGroupNotFoundError(db_parameter_group_name) + parameters = db_parameter_groups[0].parameters.values() + result = {"Parameters": parameters} + return self.serialize(result) - template = self.response_template(DESCRIBE_DB_PARAMETERS_TEMPLATE) - return template.render(db_parameter_group=db_parameter_groups[0]) - - def delete_db_parameter_group(self) -> str: + def delete_db_parameter_group(self) -> TYPE_RESPONSE: kwargs = self._get_db_parameter_group_kwargs() db_parameter_group = self.backend.delete_db_parameter_group(kwargs["name"]) - template = self.response_template(DELETE_DB_PARAMETER_GROUP_TEMPLATE) - return template.render(db_parameter_group=db_parameter_group) + return self.serialize(db_parameter_group) - def describe_db_cluster_parameters(self) -> str: + def describe_db_cluster_parameters(self) -> TYPE_RESPONSE: + # TODO: This never worked at all... db_parameter_group_name = self._get_param("DBParameterGroupName") db_parameter_groups = self.backend.describe_db_cluster_parameters() if db_parameter_groups is None: raise DBParameterGroupNotFoundError(db_parameter_group_name) + result = {"Parameters": db_parameter_groups} + return self.serialize(result) - template = self.response_template(DESCRIBE_DB_CLUSTER_PARAMETERS_TEMPLATE) - return template.render(db_parameter_group=db_parameter_groups) - - def create_db_cluster(self) -> str: + def create_db_cluster(self) -> TYPE_RESPONSE: kwargs = self._get_db_cluster_kwargs() cluster = self.backend.create_db_cluster(kwargs) - template = self.response_template(CREATE_DB_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster, creating=True)} + return self.serialize(result) - def modify_db_cluster(self) -> str: + def modify_db_cluster(self) -> TYPE_RESPONSE: kwargs = self._get_modify_db_cluster_kwargs() cluster = self.backend.modify_db_cluster(kwargs) - template = self.response_template(MODIFY_DB_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster)} + return self.serialize(result) - def describe_db_clusters(self) -> str: + def describe_db_clusters(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") filters = self._get_multi_param("Filters.Filter.") filter_dict = {f["Name"]: f["Values"] for f in filters} clusters = self.backend.describe_db_clusters( cluster_identifier=_id, filters=filter_dict ) - template = self.response_template(DESCRIBE_CLUSTERS_TEMPLATE) - return template.render(clusters=clusters) + result = {"DBClusters": [DBClusterDTO(cluster) for cluster in clusters]} + return self.serialize(result) - def delete_db_cluster(self) -> str: + def delete_db_cluster(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") snapshot_name = self._get_param("FinalDBSnapshotIdentifier") cluster = self.backend.delete_db_cluster( cluster_identifier=_id, snapshot_name=snapshot_name ) - template = self.response_template(DELETE_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster)} + return self.serialize(result) - def start_db_cluster(self) -> str: + def start_db_cluster(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") cluster = self.backend.start_db_cluster(cluster_identifier=_id) - template = self.response_template(START_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster)} + return self.serialize(result) - def stop_db_cluster(self) -> str: + def stop_db_cluster(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") cluster = self.backend.stop_db_cluster(cluster_identifier=_id) - template = self.response_template(STOP_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster)} + return self.serialize(result) - def create_db_cluster_snapshot(self) -> str: + def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: db_cluster_identifier = self._get_param("DBClusterIdentifier") db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") tags = self.unpack_list_params("Tags", "Tag") snapshot = self.backend.create_db_cluster_snapshot( db_cluster_identifier, db_snapshot_identifier, tags=tags ) - template = self.response_template(CREATE_CLUSTER_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + return self.serialize(result) - def copy_db_cluster_snapshot(self) -> str: + def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: source_snapshot_identifier = self._get_param( "SourceDBClusterSnapshotIdentifier" ) @@ -668,10 +748,10 @@ def copy_db_cluster_snapshot(self) -> str: snapshot = self.backend.copy_db_cluster_snapshot( source_snapshot_identifier, target_snapshot_identifier, tags ) - template = self.response_template(COPY_CLUSTER_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + return self.serialize(result) - def describe_db_cluster_snapshots(self) -> str: + def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: db_cluster_identifier = self._get_param("DBClusterIdentifier") db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") filters = self._get_multi_param("Filters.Filter.") @@ -679,75 +759,77 @@ def describe_db_cluster_snapshots(self) -> str: snapshots = self.backend.describe_db_cluster_snapshots( db_cluster_identifier, db_snapshot_identifier, filter_dict ) - template = self.response_template(DESCRIBE_CLUSTER_SNAPSHOTS_TEMPLATE) - return template.render(snapshots=snapshots) + results = { + "DBClusterSnapshots": [ + DBClusterSnapshotDTO(snapshot) for snapshot in snapshots + ] + } + return self.serialize(results) - def delete_db_cluster_snapshot(self) -> str: + def delete_db_cluster_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") snapshot = self.backend.delete_db_cluster_snapshot(db_snapshot_identifier) - template = self.response_template(DELETE_CLUSTER_SNAPSHOT_TEMPLATE) - return template.render(snapshot=snapshot) + result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + return self.serialize(result) - def restore_db_cluster_from_snapshot(self) -> str: + def restore_db_cluster_from_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("SnapshotIdentifier") db_kwargs = self._get_db_cluster_kwargs() new_cluster = self.backend.restore_db_cluster_from_snapshot( db_snapshot_identifier, db_kwargs ) - template = self.response_template(RESTORE_CLUSTER_FROM_SNAPSHOT_TEMPLATE) - return template.render(cluster=new_cluster) + result = {"DBCluster": DBClusterDTO(new_cluster)} + return self.serialize(result) - def start_export_task(self) -> str: + def start_export_task(self) -> TYPE_RESPONSE: kwargs = self._get_export_task_kwargs() export_task = self.backend.start_export_task(kwargs) - template = self.response_template(START_EXPORT_TASK_TEMPLATE) - return template.render(task=export_task) + return self.serialize(export_task) - def cancel_export_task(self) -> str: + def cancel_export_task(self) -> TYPE_RESPONSE: export_task_identifier = self._get_param("ExportTaskIdentifier") export_task = self.backend.cancel_export_task(export_task_identifier) - template = self.response_template(CANCEL_EXPORT_TASK_TEMPLATE) - return template.render(task=export_task) + return self.serialize(export_task) - def describe_export_tasks(self) -> str: + def describe_export_tasks(self) -> TYPE_RESPONSE: export_task_identifier = self._get_param("ExportTaskIdentifier") tasks = self.backend.describe_export_tasks(export_task_identifier) - template = self.response_template(DESCRIBE_EXPORT_TASKS_TEMPLATE) - return template.render(tasks=tasks) + result = {"ExportTasks": tasks} + return self.serialize(result) - def create_event_subscription(self) -> str: + def create_event_subscription(self) -> TYPE_RESPONSE: kwargs = self._get_event_subscription_kwargs() subscription = self.backend.create_event_subscription(kwargs) - template = self.response_template(CREATE_EVENT_SUBSCRIPTION_TEMPLATE) - return template.render(subscription=subscription) + result = {"EventSubscription": subscription} + return self.serialize(result) - def delete_event_subscription(self) -> str: + def delete_event_subscription(self) -> TYPE_RESPONSE: subscription_name = self._get_param("SubscriptionName") subscription = self.backend.delete_event_subscription(subscription_name) - template = self.response_template(DELETE_EVENT_SUBSCRIPTION_TEMPLATE) - return template.render(subscription=subscription) + result = {"EventSubscription": subscription} + return self.serialize(result) - def describe_event_subscriptions(self) -> str: + def describe_event_subscriptions(self) -> TYPE_RESPONSE: subscription_name = self._get_param("SubscriptionName") subscriptions = self.backend.describe_event_subscriptions(subscription_name) - template = self.response_template(DESCRIBE_EVENT_SUBSCRIPTIONS_TEMPLATE) - return template.render(subscriptions=subscriptions) + result = {"EventSubscriptionsList": subscriptions} + return self.serialize(result) - def describe_orderable_db_instance_options(self) -> str: + def describe_orderable_db_instance_options(self) -> TYPE_RESPONSE: engine = self._get_param("Engine") engine_version = self._get_param("EngineVersion") options = self.backend.describe_orderable_db_instance_options( engine, engine_version ) - template = self.response_template(DESCRIBE_ORDERABLE_CLUSTER_OPTIONS) - return template.render(options=options, marker=None) + result = {"OrderableDBInstanceOptions": options} + return self.serialize(result) - def describe_global_clusters(self) -> str: + def describe_global_clusters(self) -> TYPE_RESPONSE: clusters = self.global_backend.describe_global_clusters() - template = self.response_template(DESCRIBE_GLOBAL_CLUSTERS_TEMPLATE) - return template.render(clusters=clusters) + result = {"GlobalClusters": [GlobalClusterDTO(cluster) for cluster in clusters]} + return self.serialize(result) - def create_global_cluster(self) -> str: + def create_global_cluster(self) -> TYPE_RESPONSE: params = self._get_params() cluster = self.global_backend.create_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], @@ -757,27 +839,31 @@ def create_global_cluster(self) -> str: storage_encrypted=params.get("StorageEncrypted"), deletion_protection=params.get("DeletionProtection"), ) - template = self.response_template(CREATE_GLOBAL_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"GlobalCluster": GlobalClusterDTO(cluster)} + return self.serialize(result) - def delete_global_cluster(self) -> str: + def delete_global_cluster(self) -> TYPE_RESPONSE: params = self._get_params() cluster = self.global_backend.delete_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], ) - template = self.response_template(DELETE_GLOBAL_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"GlobalCluster": GlobalClusterDTO(cluster)} + return self.serialize(result) - def remove_from_global_cluster(self) -> str: + def remove_from_global_cluster(self) -> TYPE_RESPONSE: params = self._get_params() global_cluster = self.backend.remove_from_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], db_cluster_identifier=params["DbClusterIdentifier"], ) - template = self.response_template(REMOVE_FROM_GLOBAL_CLUSTER_TEMPLATE) - return template.render(cluster=global_cluster) + result = { + "GlobalCluster": GlobalClusterDTO(global_cluster) + if global_cluster + else global_cluster + } + return self.serialize(result) - def create_db_cluster_parameter_group(self) -> str: + def create_db_cluster_parameter_group(self) -> TYPE_RESPONSE: group_name = self._get_param("DBClusterParameterGroupName") family = self._get_param("DBParameterGroupFamily") desc = self._get_param("Description") @@ -786,44 +872,45 @@ def create_db_cluster_parameter_group(self) -> str: family=family, description=desc, ) - template = self.response_template(CREATE_DB_CLUSTER_PARAMETER_GROUP_TEMPLATE) - return template.render(db_cluster_parameter_group=db_cluster_parameter_group) + result = {"DBClusterParameterGroup": db_cluster_parameter_group} + return self.serialize(result) - def describe_db_cluster_parameter_groups(self) -> str: + def describe_db_cluster_parameter_groups(self) -> TYPE_RESPONSE: group_name = self._get_param("DBClusterParameterGroupName") db_parameter_groups = self.backend.describe_db_cluster_parameter_groups( group_name=group_name, ) - template = self.response_template(DESCRIBE_DB_CLUSTER_PARAMETER_GROUPS_TEMPLATE) - return template.render(db_parameter_groups=db_parameter_groups) + result = {"DBClusterParameterGroups": db_parameter_groups} + return self.serialize(result) - def delete_db_cluster_parameter_group(self) -> str: + def delete_db_cluster_parameter_group(self) -> TYPE_RESPONSE: group_name = self._get_param("DBClusterParameterGroupName") self.backend.delete_db_cluster_parameter_group( group_name=group_name, ) - template = self.response_template(DELETE_DB_CLUSTER_PARAMETER_GROUP_TEMPLATE) - return template.render() + return self.serialize({}) - def promote_read_replica_db_cluster(self) -> str: + def promote_read_replica_db_cluster(self) -> TYPE_RESPONSE: db_cluster_identifier = self._get_param("DBClusterIdentifier") cluster = self.backend.promote_read_replica_db_cluster(db_cluster_identifier) - template = self.response_template(PROMOTE_READ_REPLICA_DB_CLUSTER_TEMPLATE) - return template.render(cluster=cluster) + result = {"DBCluster": DBClusterDTO(cluster)} + return self.serialize(result) - def describe_db_snapshot_attributes(self) -> str: + def describe_db_snapshot_attributes(self) -> TYPE_RESPONSE: params = self._get_params() db_snapshot_identifier = params["DBSnapshotIdentifier"] db_snapshot_attributes_result = self.backend.describe_db_snapshot_attributes( db_snapshot_identifier=db_snapshot_identifier, ) - template = self.response_template(DESCRIBE_DB_SNAPSHOT_ATTRIBUTES_TEMPLATE) - return template.render( - db_snapshot_attributes_result=db_snapshot_attributes_result, - db_snapshot_identifier=db_snapshot_identifier, - ) + result = { + "DBSnapshotAttributesResult": { + "DBSnapshotIdentifier": db_snapshot_identifier, + "DBSnapshotAttributes": db_snapshot_attributes_result, + } + } + return self.serialize(result) - def modify_db_snapshot_attribute(self) -> str: + def modify_db_snapshot_attribute(self) -> TYPE_RESPONSE: params = self._get_params() db_snapshot_identifier = params["DBSnapshotIdentifier"] db_snapshot_attributes_result = self.backend.modify_db_snapshot_attribute( @@ -832,13 +919,15 @@ def modify_db_snapshot_attribute(self) -> str: values_to_add=params.get("ValuesToAdd"), values_to_remove=params.get("ValuesToRemove"), ) - template = self.response_template(MODIFY_DB_SNAPSHOT_ATTRIBUTE_TEMPLATE) - return template.render( - db_snapshot_attributes_result=db_snapshot_attributes_result, - db_snapshot_identifier=db_snapshot_identifier, - ) + result = { + "DBSnapshotAttributesResult": { + "DBSnapshotIdentifier": db_snapshot_identifier, + "DBSnapshotAttributes": db_snapshot_attributes_result, + } + } + return self.serialize(result) - def describe_db_cluster_snapshot_attributes(self) -> str: + def describe_db_cluster_snapshot_attributes(self) -> TYPE_RESPONSE: params = self._get_params() db_cluster_snapshot_identifier = params["DBClusterSnapshotIdentifier"] db_cluster_snapshot_attributes_result = ( @@ -846,15 +935,15 @@ def describe_db_cluster_snapshot_attributes(self) -> str: db_cluster_snapshot_identifier=db_cluster_snapshot_identifier, ) ) - template = self.response_template( - DESCRIBE_DB_CLUSTER_SNAPSHOT_ATTRIBUTES_TEMPLATE - ) - return template.render( - db_cluster_snapshot_attributes_result=db_cluster_snapshot_attributes_result, - db_cluster_snapshot_identifier=db_cluster_snapshot_identifier, - ) + result = { + "DBClusterSnapshotAttributesResult": { + "DBClusterSnapshotIdentifier": db_cluster_snapshot_identifier, + "DBClusterSnapshotAttributes": db_cluster_snapshot_attributes_result, + } + } + return self.serialize(result) - def modify_db_cluster_snapshot_attribute(self) -> str: + def modify_db_cluster_snapshot_attribute(self) -> TYPE_RESPONSE: params = self._get_params() db_cluster_snapshot_identifier = params["DBClusterSnapshotIdentifier"] db_cluster_snapshot_attributes_result = ( @@ -865,13 +954,15 @@ def modify_db_cluster_snapshot_attribute(self) -> str: values_to_remove=params.get("ValuesToRemove"), ) ) - template = self.response_template(MODIFY_DB_CLUSTER_SNAPSHOT_ATTRIBUTE_TEMPLATE) - return template.render( - db_cluster_snapshot_attributes_result=db_cluster_snapshot_attributes_result, - db_cluster_snapshot_identifier=db_cluster_snapshot_identifier, - ) + result = { + "DBClusterSnapshotAttributesResult": { + "DBClusterSnapshotIdentifier": db_cluster_snapshot_identifier, + "DBClusterSnapshotAttributes": db_cluster_snapshot_attributes_result, + } + } + return self.serialize(result) - def describe_db_proxies(self) -> str: + def describe_db_proxies(self) -> TYPE_RESPONSE: params = self._get_params() db_proxy_name = params.get("DBProxyName") # filters = params.get("Filters") @@ -880,11 +971,13 @@ def describe_db_proxies(self) -> str: db_proxy_name=db_proxy_name, # filters=filters, ) - template = self.response_template(DESCRIBE_DB_PROXIES_TEMPLATE) - rendered = template.render(dbproxies=db_proxies, marker=marker) - return rendered + result = { + "DBProxies": db_proxies, + "Marker": marker, + } + return self.serialize(result) - def create_db_proxy(self) -> str: + def create_db_proxy(self) -> TYPE_RESPONSE: params = self._get_params() db_proxy_name = params["DBProxyName"] engine_family = params["EngineFamily"] @@ -908,10 +1001,10 @@ def create_db_proxy(self) -> str: debug_logging=debug_logging, tags=tags, ) - template = self.response_template(CREATE_DB_PROXY_TEMPLATE) - return template.render(dbproxy=db_proxy) + result = {"DBProxy": db_proxy} + return self.serialize(result) - def register_db_proxy_targets(self) -> str: + def register_db_proxy_targets(self) -> TYPE_RESPONSE: db_proxy_name = self._get_param("DBProxyName") target_group_name = self._get_param("TargetGroupName") db_cluster_identifiers = self._get_params().get("DBClusterIdentifiers", []) @@ -922,11 +1015,14 @@ def register_db_proxy_targets(self) -> str: db_cluster_identifiers=db_cluster_identifiers, db_instance_identifiers=db_instance_identifiers, ) + result = { + "DBProxyTargets": [ + DBProxyTargetDTO(target, registering=True) for target in targets + ] + } + return self.serialize(result) - template = self.response_template(REGISTER_DB_PROXY_TARGET) - return template.render(targets=targets) - - def deregister_db_proxy_targets(self) -> str: + def deregister_db_proxy_targets(self) -> TYPE_RESPONSE: db_proxy_name = self._get_param("DBProxyName") target_group_name = self._get_param("TargetGroupName") db_cluster_identifiers = self._get_params().get("DBClusterIdentifiers", []) @@ -937,36 +1033,34 @@ def deregister_db_proxy_targets(self) -> str: db_cluster_identifiers=db_cluster_identifiers, db_instance_identifiers=db_instance_identifiers, ) + return self.serialize({}) - template = self.response_template(DEREGISTER_DB_PROXY_TARGET) - return template.render() - - def describe_db_proxy_targets(self) -> str: + def describe_db_proxy_targets(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") targets = self.backend.describe_db_proxy_targets(proxy_name=proxy_name) - template = self.response_template(DESCRIBE_DB_PROXY_TARGETS) - return template.render(targets=targets) + result = {"Targets": [DBProxyTargetDTO(target) for target in targets]} + return self.serialize(result) - def delete_db_proxy(self) -> str: + def delete_db_proxy(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") proxy = self.backend.delete_db_proxy(proxy_name=proxy_name) - template = self.response_template(DELETE_DB_PROXY_TEMPLATE) - return template.render(dbproxy=proxy) + result = {"DBProxy": proxy} + return self.serialize(result) - def describe_db_proxy_target_groups(self) -> str: + def describe_db_proxy_target_groups(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") groups = self.backend.describe_db_proxy_target_groups(proxy_name=proxy_name) - template = self.response_template(DESCRIBE_DB_PROXY_TARGET_GROUPS) - return template.render(groups=groups) + result = {"TargetGroups": [DBProxyTargetGroupDTO(group) for group in groups]} + return self.serialize(result) - def modify_db_proxy_target_group(self) -> str: + def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") config = self._get_params().get("ConnectionPoolConfig", {}) group = self.backend.modify_db_proxy_target_group( proxy_name=proxy_name, config=config ) - template = self.response_template(MODIFY_DB_PROXY_TARGET_GROUP) - return template.render(group=group) + result = {"DBProxyTargetGroup": DBProxyTargetGroupDTO(group)} + return self.serialize(result) def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: from moto.rds.exceptions import InvalidParameterValue @@ -990,905 +1084,3 @@ def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: if len(all_resources) > start + page_size: next_marker = paginated_resources[-1].name return paginated_resources, next_marker - - -CREATE_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -CREATE_DATABASE_REPLICA_TEMPLATE = """ - - {{ database.to_xml() }} - - - 5e60c46d-a844-11e4-bb68-17f36418e58f - -""" - -DESCRIBE_DATABASES_TEMPLATE = """ - - - {%- for database in databases -%} - {{ database.to_xml() }} - {%- endfor -%} - - {% if marker %} - {{ marker }} - {% endif %} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -MODIFY_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - bb58476c-a1a8-11e4-99cf-55e92d4bbada - -""" - -PROMOTE_REPLICA_TEMPLATE = """ - - {{ database.to_xml() }} - - - 8e8c0d64-be21-11d3-a71c-13dc2f771e41 - -""" - -REBOOT_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - d55711cb-a1ab-11e4-99cf-55e92d4bbada - -""" - -START_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab9 - -""" - -STOP_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab8 - -""" - -DELETE_DATABASE_TEMPLATE = """ - - {{ database.to_xml() }} - - - 7369556f-b70d-11c3-faca-6ba18376ea1b - -""" - -DELETE_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 7369556f-b70d-11c3-faca-6ba18376ea1b - -""" - -RESTORE_INSTANCE_FROM_SNAPSHOT_TEMPLATE = """ - - {{ database.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - - -RESTORE_INSTANCE_TO_POINT_IN_TIME_TEMPLATE = """ - - {{ database.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -CREATE_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -COPY_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -DESCRIBE_SNAPSHOTS_TEMPLATE = """ - - - {%- for snapshot in snapshots -%} - {{ snapshot.to_xml() }} - {%- endfor -%} - - {% if marker %} - {{ marker }} - {% endif %} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -DELETE_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -CREATE_SECURITY_GROUP_TEMPLATE = """ - - {{ security_group.to_xml() }} - - - 462165d0-a77a-11e4-a5fa-75b30c556f97 - -""" - -DESCRIBE_SECURITY_GROUPS_TEMPLATE = """ - - - {% for security_group in security_groups %} - {{ security_group.to_xml() }} - {% endfor %} - - - - 5df2014e-a779-11e4-bdb0-594def064d0c - -""" - -DELETE_SECURITY_GROUP_TEMPLATE = """ - - 97e846bd-a77d-11e4-ac58-91351c0f3426 - -""" - -AUTHORIZE_SECURITY_GROUP_TEMPLATE = """ - - {{ security_group.to_xml() }} - - - 75d32fd5-a77e-11e4-8892-b10432f7a87d - -""" - -CREATE_SUBNET_GROUP_TEMPLATE = """ - - {{ subnet_group.to_xml() }} - - - 3a401b3f-bb9e-11d3-f4c6-37db295f7674 - -""" - -DESCRIBE_SUBNET_GROUPS_TEMPLATE = """ - - - {% for subnet_group in subnet_groups %} - {{ subnet_group.to_xml() }} - {% endfor %} - - - - b783db3b-b98c-11d3-fbc7-5c0aad74da7c - -""" - -MODIFY_SUBNET_GROUPS_TEMPLATE = """ - - {{ subnet_group.to_xml() }} - - - b783db3b-b98c-11d3-fbc7-5c0aad74da7c - -""" - -DELETE_SUBNET_GROUP_TEMPLATE = """ - - 13785dd5-a7fc-11e4-bb9c-7f371d0859b0 - -""" - -CREATE_OPTION_GROUP_TEMPLATE = """ - - {{ option_group.to_xml() }} - - - 1e38dad4-9f50-11e4-87ea-a31c60ed2e36 - -""" - -DELETE_OPTION_GROUP_TEMPLATE = """ - - e2590367-9fa2-11e4-99cf-55e92d41c60e - -""" - -DESCRIBE_OPTION_GROUP_TEMPLATE = """ - - - {%- for option_group in option_groups -%} - {{ option_group.to_xml() }} - {%- endfor -%} - - - - 4caf445d-9fbc-11e4-87ea-a31c60ed2e36 - -""" - -DESCRIBE_OPTION_GROUP_OPTIONS_TEMPLATE = """ - - - {%- for option_group_option in option_group_options -%} - {{ option_group_option.to_xml() }} - {%- endfor -%} - - - - 457f7bb8-9fbf-11e4-9084-5754f80d5144 - -""" - -MODIFY_OPTION_GROUP_TEMPLATE = """ - - {{ option_group.to_xml() }} - - - ce9284a5-a0de-11e4-b984-a11a53e1f328 - -""" - -CREATE_DB_PARAMETER_GROUP_TEMPLATE = """ - - {{ db_parameter_group.to_xml() }} - - - 7805c127-af22-11c3-96ac-6999cc5f7e72 - -""" - -DESCRIBE_DB_PARAMETER_GROUPS_TEMPLATE = """ - - - {%- for db_parameter_group in db_parameter_groups -%} - {{ db_parameter_group.to_xml() }} - {%- endfor -%} - - - - b75d527a-b98c-11d3-f272-7cd6cce12cc5 - -""" - -MODIFY_DB_PARAMETER_GROUP_TEMPLATE = """ - - {{ db_parameter_group.name }} - - - 12d7435e-bba0-11d3-fe11-33d33a9bb7e3 - -""" - -DELETE_DB_PARAMETER_GROUP_TEMPLATE = """ - - cad6c267-ba25-11d3-fe11-33d33a9bb7e3 - -""" - -DESCRIBE_DB_PARAMETERS_TEMPLATE = """ - - - {%- for db_parameter_name, db_parameter in db_parameter_group.parameters.items() -%} - - {%- for parameter_name, parameter_value in db_parameter.items() -%} - <{{ parameter_name }}>{{ parameter_value }} - {%- endfor -%} - - {%- endfor -%} - - - - 8c40488f-b9ff-11d3-a15e-7ac49293f4fa - - -""" - -DESCRIBE_DB_CLUSTER_PARAMETERS_TEMPLATE = """ - - - {%- for param in db_parameter_group -%} - - {%- for parameter_name, parameter_value in db_parameter.items() -%} - <{{ parameter_name }}>{{ parameter_value }} - {%- endfor -%} - - {%- endfor -%} - - - - 8c40488f-b9ff-11d3-a15e-7ac49293f4fa - - -""" - -LIST_TAGS_FOR_RESOURCE_TEMPLATE = """ - - - {%- for tag in tags -%} - - {{ tag['Key'] }} - {{ tag['Value'] }} - - {%- endfor -%} - - - - 8c21ba39-a598-11e4-b688-194eaf8658fa - -""" - -ADD_TAGS_TO_RESOURCE_TEMPLATE = """ - - b194d9ca-a664-11e4-b688-194eaf8658fa - -""" - -REMOVE_TAGS_FROM_RESOURCE_TEMPLATE = """ - - b194d9ca-a664-11e4-b688-194eaf8658fa - -""" - -CREATE_DB_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml(initial=True) }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -MODIFY_DB_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 69673d54-e48e-4ba4-9333-c5a6c1e7526a - -""" - -DESCRIBE_CLUSTERS_TEMPLATE = """ - - - {%- for cluster in clusters -%} - {{ cluster.to_xml() }} - {%- endfor -%} - - {% if marker %} - {{ marker }} - {% endif %} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -START_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab9 - -""" - -STOP_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab8 - -""" - -RESTORE_CLUSTER_FROM_SNAPSHOT_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -CREATE_CLUSTER_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -COPY_CLUSTER_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -DESCRIBE_CLUSTER_SNAPSHOTS_TEMPLATE = """ - - - {%- for snapshot in snapshots -%} - {{ snapshot.to_xml() }} - {%- endfor -%} - - {% if marker %} - {{ marker }} - {% endif %} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - -""" - -DELETE_CLUSTER_SNAPSHOT_TEMPLATE = """ - - {{ snapshot.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -START_EXPORT_TASK_TEMPLATE = """ - - {{ task.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -CANCEL_EXPORT_TASK_TEMPLATE = """ - - {{ task.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -DESCRIBE_EXPORT_TASKS_TEMPLATE = """ - - - {%- for task in tasks -%} - {{ task.to_xml() }} - {%- endfor -%} - - {% if marker %} - {{ marker }} - {% endif %} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -CREATE_EVENT_SUBSCRIPTION_TEMPLATE = """ - - {{ subscription.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -DELETE_EVENT_SUBSCRIPTION_TEMPLATE = """ - - {{ subscription.to_xml() }} - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - -DESCRIBE_EVENT_SUBSCRIPTIONS_TEMPLATE = """ - - - {%- for subscription in subscriptions -%} - {{ subscription.to_xml() }} - {%- endfor -%} - - - - 523e3218-afc7-11c3-90f5-f90431260ab4 - - -""" - - -DESCRIBE_ORDERABLE_CLUSTER_OPTIONS = """ - - - {% for option in options %} - - false - - {% for zone in option["AvailabilityZones"] %} - - {{ zone["Name"] }} - - {% endfor %} - - {{ option["SupportsStorageThroughput"] }} - - provisioned - - {{ option["SupportsGlobalDatabases"] }} - {{ option["SupportsClusters"] }} - {{ option["Engine"] }} - - false - {{ option["EngineVersion"] }} - false - true - {{ option["DBInstanceClass"] }} - {{ option["SupportsStorageEncryption"] }} - {{ option["SupportsKerberosAuthentication"] }} - - IPV4 - - - {{ option["SupportsPerformanceInsights"] }} - {{ option["LicenseModel"] }} - {{ option["MultiAZCapable"] }} - {{ option["RequiresCustomProcessorFeatures"] }} - {{ option["StorageType"] }} - {{ option["SupportsIops"] }} - {{ option["SupportsIAMDatabaseAuthentication"] }} - - {% endfor %} - - {% if marker %} - {{ marker }} - {% endif %} - - - 54212dc5-16c4-4eb8-a88e-448691e877ab - -""" - -CREATE_DB_CLUSTER_PARAMETER_GROUP_TEMPLATE = """ - - {{ db_cluster_parameter_group.to_xml() }} - - - 7805c127-af22-11c3-96ac-6999cc5f7e72 - -""" - - -DESCRIBE_DB_CLUSTER_PARAMETER_GROUPS_TEMPLATE = """ - - - {%- for db_parameter_group in db_parameter_groups -%} - {{ db_parameter_group.to_xml() }} - {%- endfor -%} - - - - b75d527a-b98c-11d3-f272-7cd6cce12cc5 - -""" - -DELETE_DB_CLUSTER_PARAMETER_GROUP_TEMPLATE = """ - - cad6c267-ba25-11d3-fe11-33d33a9bb7e3 - -""" - -PROMOTE_READ_REPLICA_DB_CLUSTER_TEMPLATE = """ - - {{ cluster.to_xml() }} - - - 7369556f-b70d-11c3-faca-6ba18376ea1b - -""" - -DESCRIBE_DB_SNAPSHOT_ATTRIBUTES_TEMPLATE = """ - - - - {%- for attribute in db_snapshot_attributes_result -%} - - {{ attribute["AttributeName"] }} - - {%- for value in attribute["AttributeValues"] -%} - {{ value }} - {%- endfor -%} - - - {%- endfor -%} - - {{ db_snapshot_identifier }} - - - - 1549581b-12b7-11e3-895e-1334a - -""" - -MODIFY_DB_SNAPSHOT_ATTRIBUTE_TEMPLATE = """ - - - - {%- for attribute in db_snapshot_attributes_result -%} - - {{ attribute["AttributeName"] }} - - {%- for value in attribute["AttributeValues"] -%} - {{ value }} - {%- endfor -%} - - - {%- endfor -%} - - {{ db_snapshot_identifier }} - - - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - -""" - -MODIFY_DB_CLUSTER_SNAPSHOT_ATTRIBUTE_TEMPLATE = """ - - - - {%- for attribute in db_cluster_snapshot_attributes_result -%} - - {{ attribute["AttributeName"] }} - - {%- for value in attribute["AttributeValues"] -%} - {{ value }} - {%- endfor -%} - - - {%- endfor -%} - - {{ db_cluster_snapshot_identifier }} - - - - 1549581b-12b7-11e3-895e-1334a - -""" - -DESCRIBE_DB_CLUSTER_SNAPSHOT_ATTRIBUTES_TEMPLATE = """ - - - - {%- for attribute in db_cluster_snapshot_attributes_result -%} - - {{ attribute["AttributeName"] }} - - {%- for value in attribute["AttributeValues"] -%} - {{ value }} - {%- endfor -%} - - - {%- endfor -%} - - {{ db_cluster_snapshot_identifier }} - - - - 1549581b-12b7-11e3-895e-1334a - -""" - -CREATE_DB_PROXY_TEMPLATE = """ - - - {{ dbproxy.to_xml() }} - - - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - -""" - -DESCRIBE_DB_PROXIES_TEMPLATE = """ - - - {% for dbproxy in dbproxies %} - - {{ dbproxy.to_xml() }} - - {% endfor %} - - - - 1549581b-12b7-11e3-895e-1334a - - -""" - -CREATE_GLOBAL_CLUSTER_TEMPLATE = """ - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - - - - {{ cluster.to_xml() }} - - -""" - -DELETE_GLOBAL_CLUSTER_TEMPLATE = """ - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - - - - {{ cluster.to_xml() }} - - -""" - -DESCRIBE_GLOBAL_CLUSTERS_TEMPLATE = """ - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - - - -{% for cluster in clusters %} - - {{ cluster.to_xml() }} - -{% endfor %} - - -""" - -REMOVE_FROM_GLOBAL_CLUSTER_TEMPLATE = """ - - 1549581b-12b7-11e3-895e-1334aEXAMPLE - - - {% if cluster %} - - {{ cluster.to_xml() }} - - {% endif %} - -""" - - -DEREGISTER_DB_PROXY_TARGET = """ - - -""" - - -REGISTER_DB_PROXY_TARGET = """ - - - {% for target in targets %} - - {{ target.rds_resource_id }} - 5432 - {{ target.type }} - - REGISTERING - - {% if target.endpoint %}{{ target.endpoint }}{% endif %} - - {% endfor %} - - -""" - - -DESCRIBE_DB_PROXY_TARGETS = """ - - - {% for target in targets %} - - {{ target.rds_resource_id }} - 5432 - {{ target.type }} - - AVAILABLE - - {% if target.endpoint %}{{ target.endpoint }}{% endif %} - - {% endfor %} - - - -""" - - -DELETE_DB_PROXY_TEMPLATE = """ - - - {{ dbproxy.to_xml() }} - - -""" - - -DESCRIBE_DB_PROXY_TARGET_GROUPS = """ - - - {% for group in groups %} - - {{ group.to_xml() }} - - {% endfor %} - - -""" - - -MODIFY_DB_PROXY_TARGET_GROUP = """ - - - {{ group.to_xml() }} - - -""" diff --git a/moto/rds/serialize.py b/moto/rds/serialize.py new file mode 100644 index 000000000000..b96051486db6 --- /dev/null +++ b/moto/rds/serialize.py @@ -0,0 +1,386 @@ +# mypy: disable-error-code="misc, var-annotated" + +from __future__ import annotations + +from datetime import datetime +from typing import Any, Mapping, MutableMapping, Optional, Tuple, Union + +import xmltodict +from botocore.model import ( + ListShape, + NoShapeFoundError, + OperationModel, + Shape, + StructureShape, +) +from botocore.utils import parse_to_aware_datetime +from typing_extensions import TypeAlias + +Serialized: TypeAlias = MutableMapping[str, Any] + + +class ErrorShape(StructureShape): + pass + + +class ShapeHelpersMixin: + @staticmethod + def get_serialized_name(shape: Shape, default_name: str) -> str: + return shape.serialization.get("name", default_name) + + +class TimestampSerializer: + TIMESTAMP_FORMAT_ISO8601 = "iso8601" + TIMESTAMP_FORMAT_RFC822 = "rfc822" + TIMESTAMP_FORMAT_UNIX = "unixtimestamp" + + ISO8601 = "%Y-%m-%dT%H:%M:%SZ" + ISO8601_MICRO = "%Y-%m-%dT%H:%M:%S.%fZ" + + def __init__(self, default_format: str) -> None: + self.default_format = default_format + + def serialize( + self, serialized: Serialized, value: Any, shape: Shape, key: str + ) -> None: + timestamp_format = shape.serialization.get( + "timestampFormat", self.default_format + ) + serialized_value = self._convert_timestamp_to_str(value, timestamp_format) + serialized[key] = serialized_value + + def _timestamp_iso8601(self, value: datetime) -> str: + timestamp_format = self.ISO8601 + if value.microsecond > 0: + timestamp_format = self.ISO8601_MICRO + return value.strftime(timestamp_format) + + def _convert_timestamp_to_str( + self, value: Union[int, str, datetime], timestamp_format: str + ) -> str: + timestamp_format = timestamp_format.lower() + converter = getattr(self, "_timestamp_%s" % timestamp_format) + datetime_obj = parse_to_aware_datetime(value) # type: ignore + final_value = converter(datetime_obj) + return final_value + + +class Serializer(ShapeHelpersMixin): # , BaseSerializer): + DEFAULT_RESPONSE_CODE = 200 + DEFAULT_ERROR_RESPONSE_CODE = 400 + # Clients can change this to a different MutableMapping + # (i.e. OrderedDict) if they want. This is used in the + # compliance test to match the hash ordering used in the + # tests. + # NOTE: This is no longer necessary because dicts post 3.6 are ordered + # https://stackoverflow.com/questions/39980323/are-dictionaries-ordered-in-python-3-6 + MAP_TYPE = dict + DEFAULT_ENCODING = "utf-8" + + # From the spec, the default timestamp format if not specified is iso8601. + DEFAULT_TIMESTAMP_FORMAT = TimestampSerializer.TIMESTAMP_FORMAT_ISO8601 + + def __init__( + self, + operation_model: OperationModel, + context: Optional[dict[str, Any]] = None, + value_picker: Any = None, + pretty_print: bool = False, + ) -> None: + self.operation_model = operation_model + self.context = context or {"request_id": "request-id"} + self.pretty_print = pretty_print + self._value_picker = value_picker + self._timestamp_serializer = TimestampSerializer(self.DEFAULT_TIMESTAMP_FORMAT) + + def serialize_to_response( + self, + result: Any, + ) -> Mapping[str, Any]: + raise NotImplementedError("serialize_to_response") + + def _create_default_response(self) -> Serialized: + # Creates a boilerplate default request dict that subclasses + # can use as a starting point. + serialized = { + "status_code": self.DEFAULT_RESPONSE_CODE, + "headers": {}, + # An empty body is represented as an empty string. + "body": "", + } + return serialized + + # Some extra utility methods subclasses can use. + + @staticmethod + def _is_error_result(result: object) -> bool: + return isinstance(result, Exception) + + def _get_value(self, value: Any, key: str, shape: Shape) -> Any: + return self._value_picker(value, key, shape) + + +class ResponseSerializer(Serializer): + DEFAULT_TIMESTAMP_FORMAT = TimestampSerializer.TIMESTAMP_FORMAT_ISO8601 + + CONTENT_TYPE = "text" + + def _encode_body(self, body: Any) -> str: + raise NotImplementedError("_encode_body") + + @staticmethod + def _get_error_shape_name(error: Exception) -> str: + shape_name = getattr(error, "code", error.__class__.__name__) + return shape_name + + def _get_error_shape( + self, error: Exception, operation_model: OperationModel + ) -> ErrorShape: + shape_name = self._get_error_shape_name(error) + try: + # TODO: there is also an errors array in the operation model, + # but I think it only includes the possible errors for that + # operation. Maybe we try that first, then try all shapes? + shape = operation_model.service_model.shape_for(shape_name) + # We convert to ErrorShape to keep mypy happy... + shape = ErrorShape( + shape_name, + shape._shape_model, # type: ignore + shape._shape_resolver, # type: ignore + ) + except NoShapeFoundError: + generic_error_model = { + "exception": True, + "type": "structure", + "members": {}, + "error": { + "code": shape_name, + }, + } + shape = ErrorShape(shape_name, generic_error_model) + return shape + + def _serialize_error( + self, + serialized: Serialized, + error: Exception, + operation_model: OperationModel, + request_ctx: Mapping[str, Any], + ) -> Serialized: + shape = self._get_error_shape(error, operation_model) + status_code = shape.metadata.get("error", {}).get( + "httpStatusCode", self.DEFAULT_ERROR_RESPONSE_CODE + ) + serialized["status_code"] = status_code + message = getattr(error, "message", None) or str(error) + error_wrapper, error_body = self._get_error_wrapper( + operation_model, request_ctx + ) + self._inject_error_metadata(error_body, error, shape, operation_model) + if message: + error_body["Message"] = message + if shape is not None: + self._serialize(error_body, error, shape, "") + serialized["body"] = error_wrapper + self._inject_error_headers(serialized["headers"], shape, operation_model) + return serialized + + def _get_error_wrapper( + self, operation_model: OperationModel, request_ctx: Mapping[str, Any] + ) -> Tuple[Serialized, Serialized]: + raise NotImplementedError("_get_error_wrapper") + + def _inject_error_metadata( + self, + serialized: Serialized, + error: Exception, + shape: ErrorShape, + operation_model: OperationModel, + ) -> None: + raise NotImplementedError("_inject_error_metadata") + + def _inject_error_headers( + self, serialized: Serialized, shape: ErrorShape, operation_model: OperationModel + ) -> None: + pass + + def _inject_response_metadata( + self, + serialized: Serialized, + operation_model: OperationModel, + request_ctx: Mapping[str, Any], + ) -> None: + raise NotImplementedError("_inject_response_metadata") + + def serialize_to_response( + self, + result: Any, + ) -> Serialized: + serialized = self._create_default_response() + if self._is_error_result(result): + serialized = self._serialize_error( + serialized, result, self.operation_model, self.context + ) + else: + response_wrapper, result_wrapper = self._get_response_wrapper( + self.operation_model, self.context + ) + output_shape = self.operation_model.output_shape + if output_shape is not None: + self._serialize(result_wrapper, result, output_shape, "") + + root_key = list(response_wrapper.keys())[0] + self._inject_response_metadata( + response_wrapper[root_key], self.operation_model, self.context + ) + + serialized["body"] = response_wrapper + + serialized["body"] = self._encode_body(serialized["body"]) + + serialized["headers"]["Content-Type"] = self.CONTENT_TYPE + return serialized + + def _serialize( + self, serialized: Serialized, value: Any, shape: Shape, key: str + ) -> None: + method = getattr( + self, "_serialize_type_%s" % shape.type_name, self._default_serialize + ) + method(serialized, value, shape, key) + + def _serialize_type_structure( + self, serialized: Serialized, value: Any, shape: StructureShape, key: str + ) -> None: + if key: + new_serialized = self.MAP_TYPE() + serialized[key] = new_serialized + serialized = new_serialized + for member_key, member_shape in shape.members.items(): + self._serialize_structure_member( + serialized, value, member_shape, member_key + ) + + def _serialize_structure_member( + self, serialized: Serialized, value: Any, shape: Shape, key: str + ) -> None: + member_value = self._get_value(value, key, shape) + if member_value is not None: + key_name = self.get_serialized_name(shape, key) + self._serialize(serialized, member_value, shape, key_name) + + @staticmethod + def _default_serialize( + serialized: Serialized, value: Any, _: Shape, key: str + ) -> None: + serialized[key] = value + + def _serialize_type_timestamp( + self, serialized: Serialized, value: Any, shape: Shape, key: str + ) -> None: + value_wrapper = {} + value_key = "timestamp" + self._timestamp_serializer.serialize(value_wrapper, value, shape, value_key) + self._default_serialize(serialized, value_wrapper[value_key], shape, key) + + def _get_response_wrapper( + self, operation_model: OperationModel, request_ctx: Mapping[str, Any] + ) -> Tuple[Serialized, Serialized]: + raise NotImplementedError("shouldn't get here...") + + +class BaseXMLSerializer(ResponseSerializer): + @staticmethod + def _serialize_namespace_attribute( + serialized: Serialized, operation_model: OperationModel + ) -> None: + if "xmlNamespace" in operation_model.metadata: + namespace = operation_model.metadata["xmlNamespace"] + serialized["@xmlns"] = namespace + + def _get_error_wrapper( + self, operation_model: OperationModel, request_ctx: Mapping[str, Any] + ) -> Tuple[Serialized, Serialized]: + serialized_error = self.MAP_TYPE() + error_wrapper = { + "ErrorResponse": { + "Error": serialized_error, + "RequestId": request_ctx.get("request_id"), + } + } + self._serialize_namespace_attribute( + error_wrapper["ErrorResponse"], operation_model + ) + return error_wrapper, serialized_error + + def _get_response_wrapper( + self, operation_model: OperationModel, request_ctx: Mapping[str, Any] + ) -> Tuple[Serialized, Serialized]: + serialized_result = self.MAP_TYPE() + root_key = f"{operation_model.name}Response" + response_wrapper = {root_key: {}} + output_shape = operation_model.output_shape + result_key = None + if output_shape is not None: + result_key = output_shape.serialization.get("resultWrapper") + if result_key is not None: + response_wrapper[root_key][result_key] = serialized_result + else: + response_wrapper[root_key] = serialized_result + self._serialize_namespace_attribute(response_wrapper[root_key], operation_model) + return response_wrapper, serialized_result + + def _inject_error_metadata( + self, + serialized: Serialized, + error: Exception, + shape: ErrorShape, + operation_model: OperationModel, + ) -> None: + sender_fault = shape.metadata.get("error", {}).get("senderFault", True) + serialized["Type"] = "Sender" if sender_fault else "Receiver" + serialized["Code"] = shape.error_code + message = getattr(error, "message", None) or str(error) + if message: + serialized["Message"] = message + if shape is not None: + self._serialize(serialized, error, shape, "") + + def _encode_body(self, body: Serialized) -> str: + body_encoded = xmltodict.unparse( + body, + full_document=False, + short_empty_elements=True, + pretty=self.pretty_print, + ) + return body_encoded + + def _serialize_type_list( + self, serialized: Serialized, value: Any, shape: ListShape, key: str + ) -> None: + list_obj = [] + items_name = self.get_serialized_name(shape.member, "member") + serialized[key] = {items_name: list_obj} + for list_item in value: + wrapper = {} + self._serialize(wrapper, list_item, shape.member, "__current__") + list_obj.append(wrapper["__current__"]) + if not list_obj: + serialized[key] = "" + + +class QuerySerializer(BaseXMLSerializer): + CONTENT_TYPE = "text/xml" + + def _inject_response_metadata( + self, + serialized: MutableMapping[str, Any], + operation_model: OperationModel, + request_ctx: Mapping[str, Any], + ) -> None: + serialized["ResponseMetadata"] = {"RequestId": request_ctx.get("request_id")} + + +SERIALIZERS = { + "query": QuerySerializer, +} diff --git a/moto/rds/utils.py b/moto/rds/utils.py index ebb75d898edf..924f4c5afad0 100644 --- a/moto/rds/utils.py +++ b/moto/rds/utils.py @@ -1,10 +1,16 @@ +from __future__ import annotations + import copy import datetime import re from collections import OrderedDict, namedtuple from enum import Enum +from functools import lru_cache from typing import Any, Dict, List, Optional, Tuple +from botocore import xform_name +from botocore.loaders import create_loader +from botocore.model import ServiceModel, Shape from botocore.utils import merge_dicts SECONDS_IN_ONE_DAY = 24 * 60 * 60 @@ -385,3 +391,82 @@ def decode_orderable_db_instance(db: Dict[str, Any]) -> Dict[str, Any]: ORDERABLE_DB_INSTANCE_DECODING.get(key, key): value for key, value in decoded.items() } + + +@lru_cache() +def get_service_model(service_name: str) -> ServiceModel: + loader = create_loader() + model = loader.load_service_model(service_name, "service-2") + service_model = ServiceModel(model, service_name) + return service_model + + +class _Missing: + def __repr__(self) -> str: + return "" + + +missing = _Missing() + + +def get_value(obj: Any, key: int | str, default: Any = missing) -> Any: + if not hasattr(obj, "__getitem__"): + return getattr(obj, str(key), default) + + try: + return obj[key] + except (KeyError, IndexError, TypeError, AttributeError): + return getattr(obj, str(key), default) + + +class ValuePicker: + def __init__(self, alias_dict: Dict[str, List[str]]) -> None: + self.alias_dict = alias_dict + + def __call__(self, value: Any, key: str, shape: Shape) -> Any: + return self._get_value(value, key, shape) + + def _get_value(self, value: Any, key: str, shape: Shape) -> Any: + new_value = None + possible_keys = self._get_possible_keys(key, value, shape) + for key in possible_keys: + new_value = get_value(value, key) + if new_value is not missing: + break + if new_value is missing: + return None + if callable(new_value): + new_value = new_value() + # Testing if DBInstance.engine was an Engine() instance with a __str__ method + if new_value and shape.type_name == "string" and not isinstance(new_value, str): + new_value = str(new_value) + return new_value + + def _get_possible_keys(self, key: str, obj: Any, shape: Shape) -> List[str]: + possible_keys = [] + # Sometimes the list or structure name differs from the attribute name + if shape.type_name in ["list", "structure"]: + possible_keys += [shape.name, xform_name(shape.name)] + # db_instance_identifier or DBInstanceIdentifier + possible_keys += [xform_name(key), key] + # Check our alias dict... + if key in self.alias_dict: + key_aliases = self.alias_dict[key] + possible_keys += key_aliases + # Translate e.g. DBInstanceIdentifier to identifier if class is DBInstance + from moto.rds.models import RDSBaseModel + + obj_is_rds_model = isinstance(obj, RDSBaseModel) + obj_is_dto = isinstance(obj, object) and obj.__class__.__name__.endswith("DTO") + if obj_is_dto or obj_is_rds_model: # isinstance(obj, object): + # Use alias_dict so DBInstanceDTO resolves to DBInstance + default_class_name = obj.__class__.__name__ + class_name_aliases = self.alias_dict.get( + default_class_name, [default_class_name] + ) + class_name = class_name_aliases[0] + if class_name in key: + short_key = key.replace(class_name, "") + possible_keys += [xform_name(short_key), short_key] + + return possible_keys diff --git a/moto/rds/viewmodels.py b/moto/rds/viewmodels.py new file mode 100644 index 000000000000..975173111fde --- /dev/null +++ b/moto/rds/viewmodels.py @@ -0,0 +1,441 @@ +# mypy: disable-error-code="misc" +from __future__ import annotations + +from typing import Any, Dict, List, Optional + +from .models import ( + DBCluster, + DBClusterSnapshot, + DBInstance, + DBSecurityGroup, + DBSnapshot, + DBSubnetGroup, + GlobalCluster, + OptionGroup, + ProxyTarget, + ProxyTargetGroup, +) + +# We use this dict to alias AWS model attributes to Moto RDS model attributes +# This is just temporary. Eventually we will update the RDS model attributes +# to match AWS. +SERIALIZATION_ALIASES = { + "CustSubscriptionId": ["subscription_name"], + "DatabaseName": ["db_name"], + "DbClusterResourceId": ["resource_id"], + "DBClusterSnapshotArn": ["snapshot_arn"], + "DBClusterSnapshotIdentifier": ["snapshot_id"], + "DBInstanceDTO": ["DBInstance"], + "DbInstancePort": ["port"], + "DBParameterGroupDTO": ["DBParameterGroup"], + "DBParameterGroupFamily": ["family"], + "DBProxyName": ["proxy_name"], + "DBSecurityGroupDTO": ["DBSecurityGroup"], + "DBSnapshotArn": ["snapshot_arn"], + "DBSnapshotDTO": ["DBSnapshot"], + "DBSnapshotIdentifier": ["snapshot_id"], + "DBSubnetGroup": ["subnet_group"], + "DBSubnetGroupName": ["subnet_name"], + "DBSubnetGroupDTO": ["DBSubnetGroup"], + "EC2SecurityGroupId": ["id"], + "EC2SecurityGroupName": ["name"], + "EC2SubnetGroupOwnerId": ["owner_id"], + "EventCategoriesList": ["event_categories"], + "HttpEndpointEnabled": ["enable_http_endpoint"], + "IAMDatabaseAuthenticationEnabled": [ + "enable_iam_database_authentication", + "iam_auth", + ], + "MultiAZ": ["is_multi_az"], + "OptionGroupDTO": ["OptionGroup"], + "ReadReplicaSourceDBInstanceIdentifier": ["source_db_identifier"], + "S3Bucket": ["s3_bucket_name"], + "SourceIdsList": ["source_ids"], + "TagList": ["tags"], + "TargetGroupArn": ["arn"], + "TargetGroupName": ["group_name"], +} + + +class Engine: + def __init__(self, name: str, version: str) -> None: + self.name = name + self.version = version + + def __str__(self) -> str: + return self.name + + +class DBInstanceDTO: + def __init__(self, instance: DBInstance) -> None: + self.db_instance = instance + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.db_instance.__getattribute__(name) + + @property + def engine(self) -> Engine: + return Engine(self.db_instance.engine, self.db_instance.engine_version) + + @property + def master_user_secret(self) -> Optional[Dict[str, Any]]: + secret_dict = self.db_instance.master_user_secret() + manage_master_user_password = self.db_instance.manage_master_user_password + return secret_dict if manage_master_user_password else None + + @property + def vpc_security_group_membership_list(self) -> List[Dict[str, Any]]: + groups = [ + { + "Status": "active", + "VpcSecurityGroupId": id_, + } + for id_ in self.db_instance.vpc_security_group_ids + ] + return groups + + @property + def db_parameter_group_status_list(self) -> Any: + groups = self.db_instance.db_parameter_groups() + for group in groups: + # this is hideous + setattr(group, "ParameterApplyStatus", "in-sync") + return groups + + @property + def db_security_group_membership_list(self) -> List[Dict[str, Any]]: + groups = [ + { + "Status": "active", + "DBSecurityGroupName": group, + } + for group in self.db_instance.security_groups + ] + return groups + + @property + def endpoint(self) -> Dict[str, Any]: + return { + "Address": self.db_instance.address, + "Port": self.db_instance.port, + } + + @property + def option_group_memberships(self) -> List[Dict[str, Any]]: + groups = [ + { + "OptionGroupName": self.db_instance.option_group_name, + "Status": "in-sync", + } + ] + return groups + + @property + def read_replica_db_instance_identifiers(self) -> List[str]: + return [replica for replica in self.db_instance.replicas] + + +class DBProxyTargetGroupDTO: + def __init__(self, group: ProxyTargetGroup) -> None: + self.group = group + + @property + def is_default(self) -> bool: + return True + + @property + def status(self) -> str: + return "available" + + @property + def connection_pool_config(self) -> Dict[str, Any]: + return { + "MaxConnectionsPercent": self.group.max_connections, + "MaxIdleConnectionsPercent": self.group.max_idle_connections, + "ConnectionBorrowTimeout": self.group.borrow_timeout, + "SessionPinningFilters": [ + filter_ for filter_ in self.group.session_pinning_filters + ], + } + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.group.__getattribute__(name) + + +class DBProxyTargetDTO: + def __init__(self, target: ProxyTarget, registering: bool = False) -> None: + self.target = target + self.registering = registering + + # terrible hack because get_value tries to pull arn and calls .name which isn't there + @property + def target_arn(self) -> str | None: + return None + + @property + def role(self) -> None: + # We do this because the model right now sets it to "", + # which does get serialized... + return None + + @property + def port(self) -> int: + return 5432 + + @property + def target_health(self) -> Dict[str, Any]: + return { + "State": "REGISTERING" if self.registering else "AVAILABLE", + } + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.target.__getattribute__(name) + + +class OptionGroupDTO: + def __init__(self, group: OptionGroup) -> None: + self.group = group + + @property + def options(self) -> List[Dict[str, Any]]: + return [ + { + "OptionName": name, + "OptionSettings": [ + { + "Name": setting.get("Name"), + "Value": setting.get("Value"), + } + for setting in option_settings + ], + } + for name, option_settings in self.group.options.items() + ] + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.group.__getattribute__(name) + + +class DBSubnetGroupDTO: + def __init__(self, subnet_group: DBSubnetGroup) -> None: + self.subnet_group = subnet_group + + @property + def subnets(self) -> List[Dict[str, Any]]: + subnets = [ + { + "SubnetStatus": "Active", + "SubnetIdentifier": subnet.id, + "SubnetAvailabilityZone": { + "Name": subnet.availability_zone, + "ProvisionedIopsCapable": False, + }, + } + for subnet in self.subnet_group.subnets + ] + return subnets + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.subnet_group.__getattribute__(name) + + +class DBSecurityGroupDTO: + def __init__(self, security_group: DBSecurityGroup) -> None: + self.security_group = security_group + + @property + def ip_ranges(self) -> List[Dict[str, Any]]: + ranges = [ + { + "CIDRIP": ip_range, + "Status": "authorized", + } + for ip_range in self.security_group.ip_ranges + ] + return ranges + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + return self.security_group.__getattribute__(name) + + +class DBSnapshotDTO: + def __init__(self, snapshot: DBSnapshot) -> None: + self.db_snapshot = snapshot + self.db_instance = snapshot.database + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + try: + return self.db_snapshot.__getattribute__(name) + except AttributeError: + pass + return self.db_instance.__getattribute__(name) + + @property + def dbi_resource_id(self) -> str: + return self.db_instance.dbi_resource_id + + @property + def engine(self) -> str: + return self.db_instance.engine + + +class GlobalClusterDTO: + def __init__(self, cluster: GlobalCluster) -> None: + self.cluster = cluster + + @property + def status(self) -> str: + return "available" # this is hardcoded in GlobalCluster.to_xml + + @property + def global_cluster_members(self) -> List[Dict[str, Any]]: + readers = [ + reader.db_cluster_arn + for reader in self.cluster.members + if not reader.is_writer + ] + members = [ + { + "DBClusterArn": member.db_cluster_arn, + "IsWriter": True if member.is_writer else False, + "DBClusterParameterGroupStatus": "in-sync", + "PromotionTier": 1, + # I don't think this is correct, but current test assert on it being empty for non writers + "Readers": [], + } + for member in self.members + ] + for member in members: + if member["IsWriter"]: + member["Readers"] = readers + else: + member["GlobalWriteForwardingStatus"] = "disabled" + return members + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + return self.cluster.__getattribute__(name) + + +class DBClusterDTO: + def __init__(self, cluster: DBCluster, creating: bool = False) -> None: + self.cluster = cluster + self.creating = creating + + def master_user_secret(self) -> Optional[Dict[str, Any]]: + secret_dict = self.cluster.master_user_secret() + manage_master_user_password = self.cluster.manage_master_user_password + return secret_dict if manage_master_user_password else None + + @property + def db_cluster_parameter_group(self) -> str: + return self.cluster.parameter_group + + @property + def status(self) -> str: + return "creating" if self.creating else self.cluster.status + + @property + def associated_roles(self) -> List[Dict[str, Any]]: + return [] + + @property + def scaling_configuration_info(self) -> Dict[str, Any]: + configuration = self.cluster.scaling_configuration or {} + info = { + "MinCapacity": configuration.get("min_capacity"), + "MaxCapacity": configuration.get("max_capacity"), + "AutoPause": configuration.get("auto_pause"), + "SecondsUntilAutoPause": configuration.get("seconds_until_auto_pause"), + "TimeoutAction": configuration.get("timeout_action"), + "SecondsBeforeTimeout": configuration.get("seconds_before_timeout"), + } + return info + + @property + def vpc_security_groups(self) -> List[Dict[str, Any]]: + groups = [ + {"VpcSecurityGroupId": sg_id, "Status": "active"} + for sg_id in self.cluster.vpc_security_group_ids + ] + return groups + + @property + def domain_memberships(self) -> List[str]: + return [] + + @property + def cross_account_clone(self) -> bool: + return False + + @property + def global_write_forwarding_requested(self) -> bool: + # This does not appear to be in the standard response for any clusters + # Docs say it's only for a secondary cluster in aurora global database... + return True if self.cluster.global_write_forwarding_requested else False + + @property + def db_cluster_members(self) -> List[Dict[str, Any]]: + members = [ + { + "DBInstanceIdentifier": member, + "IsClusterWriter": True, + "DBClusterParameterGroupStatus": "in-sync", + "PromotionTier": 1, + } + for member in self.cluster_members + ] + return members + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + return self.cluster.__getattribute__(name) + + +class DBClusterSnapshotDTO: + def __init__(self, snapshot: DBClusterSnapshot) -> None: + self.snapshot = snapshot + self.cluster = DBClusterDTO(snapshot.cluster) + + def __getattribute__(self, name: str) -> Any: + try: + return super().__getattribute__(name) + except AttributeError: + pass + try: + return self.snapshot.__getattribute__(name) + except AttributeError: + pass + return self.cluster.__getattribute__(name) From 1c8c9f75b27a52b7e6695a2f7e7bd9a6281bab6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 04:01:00 +0000 Subject: [PATCH 002/103] Bump ruby/setup-ruby from 1.214.0 to 1.215.0 (#8559) --- .github/workflows/tests_sdk_ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests_sdk_ruby.yml b/.github/workflows/tests_sdk_ruby.yml index c9e3f4289b1a..17c303ace1bf 100644 --- a/.github/workflows/tests_sdk_ruby.yml +++ b/.github/workflows/tests_sdk_ruby.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Ruby ${{ matrix.ruby-version }} - uses: ruby/setup-ruby@1287d2b408066abada82d5ad1c63652e758428d9 + uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 with: ruby-version: ${{ matrix.ruby-version }} - name: Set up Python 3.8 From 5abecce75285f6be8f6e2db7d488cabd8eda49e2 Mon Sep 17 00:00:00 2001 From: Nikos Date: Tue, 4 Feb 2025 12:26:08 +0200 Subject: [PATCH 003/103] EBS: Require size/snapshot when creating volume (#8556) --- moto/ec2/models/elastic_block_store.py | 5 +++++ tests/test_ec2/test_elastic_block_store.py | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/moto/ec2/models/elastic_block_store.py b/moto/ec2/models/elastic_block_store.py index e0c35e18e2d8..27a028ffab43 100644 --- a/moto/ec2/models/elastic_block_store.py +++ b/moto/ec2/models/elastic_block_store.py @@ -12,6 +12,7 @@ InvalidVolumeAttachmentError, InvalidVolumeDetachmentError, InvalidVolumeIdError, + MissingParameterError, VolumeInUseError, ) from ..utils import ( @@ -305,6 +306,10 @@ def create_volume( size = snapshot.volume.size if snapshot.encrypted: encrypted = snapshot.encrypted + + if size is None: + raise MissingParameterError("size/snapshot") + volume = Volume( self, volume_id=volume_id, diff --git a/tests/test_ec2/test_elastic_block_store.py b/tests/test_ec2/test_elastic_block_store.py index a5636ed2fd37..376436f46d4b 100644 --- a/tests/test_ec2/test_elastic_block_store.py +++ b/tests/test_ec2/test_elastic_block_store.py @@ -1198,3 +1198,17 @@ def test_modify_ebs_default_kms_key_id(): KmsKeyId=new_default_key["Arn"] )["KmsKeyId"] assert new_default_ebs_key_arn != original_default_ebs_key_arn + + +@mock_aws +def test_create_volume_without_size(): + ec2 = boto3.client("ec2", region_name="us-east-1") + + with pytest.raises(ClientError) as ex: + ec2.create_volume(AvailabilityZone="us-east-1a") + + assert ex.value.response["Error"]["Code"] == "MissingParameter" + assert ( + ex.value.response["Error"]["Message"] + == "The request must contain the parameter size/snapshot" + ) From 3012a95d69bf5a0f6e39695e2530bdff12982028 Mon Sep 17 00:00:00 2001 From: Stefan Nordhausen Date: Tue, 4 Feb 2025 21:40:21 +0100 Subject: [PATCH 004/103] RDS: add OriginalSnapshotCreateTime to DB snapshots (#8540) In contrast to `SnapshotCreateTime`, the `OriginalSnapshotCreateTime` does not change when the snapshot gets copied. --------- Co-authored-by: Brian Pandola --- moto/rds/models.py | 19 ++++++++++++++++++- tests/test_rds/test_rds.py | 38 +++++++++++++++++++++++++++----------- 2 files changed, 45 insertions(+), 12 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 6f0aa2ce3540..8656d9a82688 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -942,6 +942,7 @@ def __init__( snapshot_id: str, snapshot_type: str, tags: List[Dict[str, str]], + original_created_at: Optional[str] = None, ): super().__init__(backend) self.database = database @@ -950,6 +951,7 @@ def __init__( self.tags = tags self.status = "available" self.created_at = iso_8601_datetime_with_milliseconds() + self.original_created_at = original_created_at or self.created_at self.attributes: List[Dict[str, Any]] = [] @property @@ -960,6 +962,14 @@ def name(self) -> str: def snapshot_arn(self) -> str: return self.arn + @property + def snapshot_create_time(self) -> str: + return self.created_at + + @property + def original_snapshot_create_time(self) -> str: + return self.original_created_at + class ExportTask(BaseModel): def __init__( @@ -1314,6 +1324,7 @@ def create_db_snapshot( db_snapshot_identifier: str, snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, + original_created_at: Optional[str] = None, ) -> DBSnapshot: if isinstance(db_instance, str): database = self.databases.get(db_instance) @@ -1333,7 +1344,12 @@ def create_db_snapshot( if database.copy_tags_to_snapshot and not tags: tags = database.get_tags() snapshot = DBSnapshot( - self, database, db_snapshot_identifier, snapshot_type, tags + self, + database, + db_snapshot_identifier, + snapshot_type, + tags, + original_created_at, ) self.database_snapshots[db_snapshot_identifier] = snapshot return snapshot @@ -1364,6 +1380,7 @@ def copy_db_snapshot( db_instance=source_snapshot.database, db_snapshot_identifier=target_snapshot_identifier, tags=tags, + original_created_at=source_snapshot.original_created_at, ) def delete_db_snapshot(self, db_snapshot_identifier: str) -> DBSnapshot: diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 254be674716c..29b151cecac0 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -4,8 +4,10 @@ import boto3 import pytest from botocore.exceptions import ClientError +from dateutil.tz import tzutc +from freezegun import freeze_time -from moto import mock_aws +from moto import mock_aws, settings from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID from moto.rds.exceptions import InvalidDBInstanceIdentifier, InvalidDBSnapshotIdentifier from moto.rds.models import RDSBackend @@ -757,13 +759,19 @@ def test_create_db_snapshots(client): create_db_instance(DBInstanceIdentifier="db-primary-1") - snapshot = client.create_db_snapshot( - DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="g-1" - )["DBSnapshot"] + snapshot_create_time = datetime.datetime(2025, 1, 2, tzinfo=tzutc()) + with freeze_time(snapshot_create_time): + snapshot = client.create_db_snapshot( + DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="g-1" + )["DBSnapshot"] assert snapshot["Engine"] == "postgres" assert snapshot["DBInstanceIdentifier"] == "db-primary-1" assert snapshot["DBSnapshotIdentifier"] == "g-1" + if not settings.TEST_SERVER_MODE: + assert snapshot["SnapshotCreateTime"] == snapshot_create_time + assert snapshot["SnapshotCreateTime"] == snapshot["OriginalSnapshotCreateTime"] + result = client.list_tags_for_resource(ResourceName=snapshot["DBSnapshotArn"]) assert result["TagList"] == [] @@ -827,22 +835,30 @@ def test_copy_db_snapshots( ): create_db_instance(DBInstanceIdentifier="db-primary-1") - client.create_db_snapshot( - DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="snapshot-1" - ) + snapshot_create_time = datetime.datetime(2025, 1, 2, tzinfo=tzutc()) + with freeze_time(snapshot_create_time): + client.create_db_snapshot( + DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="snapshot-1" + ) if delete_db_instance: # Delete the original instance, but the copy snapshot operation should still succeed. client.delete_db_instance(DBInstanceIdentifier="db-primary-1") - target_snapshot = client.copy_db_snapshot( - SourceDBSnapshotIdentifier=db_snapshot_identifier, - TargetDBSnapshotIdentifier="snapshot-2", - )["DBSnapshot"] + target_snapshot_create_time = snapshot_create_time + datetime.timedelta(minutes=1) + with freeze_time(target_snapshot_create_time): + target_snapshot = client.copy_db_snapshot( + SourceDBSnapshotIdentifier=db_snapshot_identifier, + TargetDBSnapshotIdentifier="snapshot-2", + )["DBSnapshot"] assert target_snapshot["Engine"] == "postgres" assert target_snapshot["DBInstanceIdentifier"] == "db-primary-1" assert target_snapshot["DBSnapshotIdentifier"] == "snapshot-2" + if not settings.TEST_SERVER_MODE: + assert target_snapshot["SnapshotCreateTime"] == target_snapshot_create_time + assert target_snapshot["OriginalSnapshotCreateTime"] == snapshot_create_time + result = client.list_tags_for_resource( ResourceName=target_snapshot["DBSnapshotArn"] ) From fdb9315cf0dda1b7cab002b15f7e1c6724c18516 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Wed, 5 Feb 2025 18:05:13 -0100 Subject: [PATCH 005/103] Admin: Compatibility with MyPy 1.15 (#8567) --- moto/appmesh/models.py | 42 ++--- moto/appmesh/responses.py | 24 ++- moto/bedrock/models.py | 49 +----- moto/bedrock/responses.py | 39 ++++- moto/bedrockagent/models.py | 25 +-- moto/bedrockagent/responses.py | 4 +- moto/core/responses.py | 2 +- moto/identitystore/models.py | 14 +- moto/identitystore/responses.py | 4 +- moto/iot/models.py | 75 +++------ moto/iot/responses.py | 18 +- moto/iot/utils.py | 8 +- moto/ivs/models.py | 2 +- moto/kinesis/models.py | 7 +- moto/kinesis/responses.py | 2 +- moto/kinesis/utils.py | 13 +- moto/logs/models.py | 10 +- moto/logs/responses.py | 2 +- moto/medialive/models.py | 16 +- moto/medialive/responses.py | 9 +- moto/organizations/models.py | 26 ++- moto/organizations/responses.py | 8 +- moto/organizations/utils.py | 4 +- moto/ram/models.py | 2 +- moto/route53/models.py | 2 +- moto/route53resolver/models.py | 4 +- moto/s3/models.py | 2 +- moto/ssoadmin/models.py | 8 +- moto/utilities/paginator.py | 1 + moto/wafv2/models.py | 8 +- moto/wafv2/responses.py | 5 +- tests/test_appmesh/test_appmesh.py | 155 +++++++++++++++++- .../test_identitystore/test_identitystore.py | 8 +- tests/test_iot/test_iot_job_executions.py | 30 +++- 34 files changed, 380 insertions(+), 248 deletions(-) diff --git a/moto/appmesh/models.py b/moto/appmesh/models.py index 800720129b63..1ef675b6e819 100644 --- a/moto/appmesh/models.py +++ b/moto/appmesh/models.py @@ -1,6 +1,6 @@ """AppMeshBackend class with methods for supported APIs.""" -from typing import Any, Dict, List, Literal, Optional, Union +from typing import Dict, List, Literal, Optional, Union from moto.appmesh.dataclasses.mesh import ( Mesh, @@ -35,7 +35,7 @@ PAGINATION_MODEL = { "list_meshes": { "input_token": "next_token", - "limit_key": "max_results", + "limit_key": "limit", "limit_default": 100, "unique_attribute": "meshName", }, @@ -55,13 +55,13 @@ "input_token": "next_token", "limit_key": "limit", "limit_default": 100, - "unique_attribute": ["routeName"], + "unique_attribute": "route_name", }, "list_virtual_nodes": { "input_token": "next_token", "limit_key": "limit", "limit_default": 100, - "unique_attribute": ["virtualNodeName"], + "unique_attribute": "virtual_node_name", }, } @@ -249,8 +249,8 @@ def delete_mesh(self, mesh_name: str) -> Mesh: del self.meshes[mesh_name] return mesh - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_meshes(self, limit: Optional[int], next_token: Optional[str]): + @paginate(pagination_model=PAGINATION_MODEL) + def list_meshes(self) -> List[Dict[str, Union[str, int]]]: return [ { "arn": mesh.metadata.arn, @@ -284,7 +284,7 @@ def _get_resource_with_arn( raise ResourceNotFoundError(resource_arn) @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_tags_for_resource(self, limit: int, next_token: str, resource_arn: str): + def list_tags_for_resource(self, resource_arn: str) -> List[Dict[str, str]]: return self._get_resource_with_arn(resource_arn=resource_arn).tags def tag_resource(self, resource_arn: str, tags: List[Dict[str, str]]) -> None: @@ -375,10 +375,10 @@ def delete_virtual_router( del mesh.virtual_routers[virtual_router_name] return virtual_router - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_virtual_routers( - self, limit: int, mesh_name: str, mesh_owner: Optional[str], next_token: str - ): + self, mesh_name: str, mesh_owner: Optional[str] + ) -> List[Dict[str, Union[str, int]]]: self._validate_mesh(mesh_name=mesh_name, mesh_owner=mesh_owner) return [ { @@ -507,25 +507,20 @@ def delete_route( ) return route - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_routes( self, - limit: Optional[int], mesh_name: str, mesh_owner: Optional[str], - next_token: Optional[str], virtual_router_name: str, - ) -> List[Dict[str, Any]]: + ) -> List[RouteMetadata]: self._check_router_validity( mesh_name=mesh_name, mesh_owner=mesh_owner, virtual_router_name=virtual_router_name, ) virtual_router = self.meshes[mesh_name].virtual_routers[virtual_router_name] - return [ - route.metadata.formatted_for_list_api() - for route in virtual_router.routes.values() - ] + return [route.metadata for route in virtual_router.routes.values()] def describe_virtual_node( self, mesh_name: str, mesh_owner: Optional[str], virtual_node_name: str @@ -602,20 +597,15 @@ def delete_virtual_node( del self.meshes[mesh_name].virtual_nodes[virtual_node_name] return virtual_node - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_virtual_nodes( self, - limit: Optional[int], mesh_name: str, mesh_owner: Optional[str], - next_token: Optional[str], - ) -> List[Dict[str, Any]]: + ) -> List[VirtualNodeMetadata]: self._validate_mesh(mesh_name=mesh_name, mesh_owner=mesh_owner) virtual_nodes = self.meshes[mesh_name].virtual_nodes - return [ - virtual_node.metadata.formatted_for_list_api() - for virtual_node in virtual_nodes.values() - ] + return [virtual_node.metadata for virtual_node in virtual_nodes.values()] appmesh_backends = BackendDict(AppMeshBackend, "appmesh") diff --git a/moto/appmesh/responses.py b/moto/appmesh/responses.py index 86448dbe1d0c..9b77ae27b172 100644 --- a/moto/appmesh/responses.py +++ b/moto/appmesh/responses.py @@ -71,7 +71,7 @@ def delete_mesh(self) -> str: def list_meshes(self) -> str: params = self._get_params() - limit = params.get("limit") + limit = self._get_int_param("limit") next_token = params.get("nextToken") meshes, next_token = self.appmesh_backend.list_meshes( limit=limit, @@ -81,7 +81,7 @@ def list_meshes(self) -> str: def list_tags_for_resource(self) -> str: params = self._get_params() - limit = params.get("limit") + limit = self._get_int_param("limit") next_token = params.get("nextToken") resource_arn = params.get("resourceArn") tags, next_token = self.appmesh_backend.list_tags_for_resource( @@ -158,7 +158,7 @@ def delete_virtual_router(self) -> str: return json.dumps(virtual_router.to_dict()) def list_virtual_routers(self) -> str: - limit = self._get_param("limit") + limit = self._get_int_param("limit") mesh_name = self._get_param("meshName") mesh_owner = self._get_param("meshOwner") next_token = self._get_param("nextToken") @@ -235,7 +235,7 @@ def delete_route(self) -> str: return json.dumps(route.to_dict()) def list_routes(self) -> str: - limit = self._get_param("limit") + limit = self._get_int_param("limit") mesh_name = self._get_param("meshName") mesh_owner = self._get_param("meshOwner") next_token = self._get_param("nextToken") @@ -247,7 +247,12 @@ def list_routes(self) -> str: next_token=next_token, virtual_router_name=virtual_router_name, ) - return json.dumps(dict(nextToken=next_token, routes=routes)) + return json.dumps( + dict( + nextToken=next_token, + routes=[r.formatted_for_list_api() for r in routes], + ) + ) def describe_virtual_node(self) -> str: mesh_name = self._get_param("meshName") @@ -306,7 +311,7 @@ def delete_virtual_node(self) -> str: return json.dumps(virtual_node.to_dict()) def list_virtual_nodes(self) -> str: - limit = self._get_param("limit") + limit = self._get_int_param("limit") mesh_name = self._get_param("meshName") mesh_owner = self._get_param("meshOwner") next_token = self._get_param("nextToken") @@ -316,4 +321,9 @@ def list_virtual_nodes(self) -> str: mesh_owner=mesh_owner, next_token=next_token, ) - return json.dumps(dict(nextToken=next_token, virtualNodes=virtual_nodes)) + return json.dumps( + dict( + nextToken=next_token, + virtualNodes=[n.formatted_for_list_api() for n in virtual_nodes], + ) + ) diff --git a/moto/bedrock/models.py b/moto/bedrock/models.py index 4ace313a952a..f44655605f23 100644 --- a/moto/bedrock/models.py +++ b/moto/bedrock/models.py @@ -191,13 +191,13 @@ class BedrockBackend(BaseBackend): "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, - "unique_attribute": "jobArn", + "unique_attribute": "job_arn", }, "list_custom_models": { "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, - "unique_attribute": "modelArn", + "unique_attribute": "model_arn", }, } @@ -301,18 +301,16 @@ def stop_model_customization_job(self, job_identifier: str) -> None: ) return - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_model_customization_jobs( self, creation_time_after: Optional[datetime], creation_time_before: Optional[datetime], status_equals: Optional[str], name_contains: Optional[str], - max_results: Optional[int], - next_token: Optional[str], sort_by: Optional[str], sort_order: Optional[str], - ) -> List[Any]: + ) -> List[ModelCustomizationJob]: customization_jobs_fetched = list(self.model_customization_jobs.values()) if name_contains is not None: @@ -363,23 +361,7 @@ def list_model_customization_jobs( else: raise ValidationException(f"Invalid sort by field: {sort_by}") - model_customization_job_summaries = [] - for model in customization_jobs_fetched: - model_customization_job_summaries.append( - { - "jobArn": model.job_arn, - "baseModelArn": model.base_model_arn, - "jobName": model.job_name, - "status": model.status, - "lastModifiedTime": model.last_modified_time, - "creationTime": model.creation_time, - "endTime": model.end_time, - "customModelArn": model.output_model_arn, - "customModelName": model.custom_model_name, - "customizationType": model.customization_type, - } - ) - return model_customization_job_summaries + return customization_jobs_fetched def get_model_invocation_logging_configuration(self) -> Optional[Dict[str, Any]]: if self.model_invocation_logging_configuration: @@ -418,7 +400,7 @@ def delete_custom_model(self, model_identifier: str) -> None: ) return - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_custom_models( self, creation_time_before: Optional[datetime], @@ -426,11 +408,9 @@ def list_custom_models( name_contains: Optional[str], base_model_arn_equals: Optional[str], foundation_model_arn_equals: Optional[str], - max_results: Optional[int], - next_token: Optional[str], sort_by: Optional[str], sort_order: Optional[str], - ) -> List[Any]: + ) -> List[CustomModel]: """ The foundation_model_arn_equals-argument is not yet supported """ @@ -483,20 +463,7 @@ def list_custom_models( raise ValidationException(f"Invalid sort order: {sort_order}") else: raise ValidationException(f"Invalid sort by field: {sort_by}") - model_summaries = [] - for model in custom_models_fetched: - model_summaries.append( - { - "modelArn": model.model_arn, - "modelName": model.model_name, - "creationTime": model.creation_time, - "baseModelArn": model.base_model_arn, - "baseModelName": model.base_model_name, - "jobArn": model.job_arn, - "customizationType": model.customization_type, - } - ) - return model_summaries + return custom_models_fetched def tag_resource(self, resource_arn: str, tags: List[Dict[str, str]]) -> None: if resource_arn not in self._list_arns(): diff --git a/moto/bedrock/responses.py b/moto/bedrock/responses.py index c6adda6356b6..a76bd4ae8b92 100644 --- a/moto/bedrock/responses.py +++ b/moto/bedrock/responses.py @@ -133,7 +133,19 @@ def list_custom_models(self) -> str: sort_by=sort_by, sort_order=sort_order, ) - return json.dumps(dict(nextToken=next_token, modelSummaries=model_summaries)) + summaries = [ + { + "modelArn": model.model_arn, + "modelName": model.model_name, + "creationTime": model.creation_time, + "baseModelArn": model.base_model_arn, + "baseModelName": model.base_model_name, + "jobArn": model.job_arn, + "customizationType": model.customization_type, + } + for model in model_summaries + ] + return json.dumps(dict(nextToken=next_token, modelSummaries=summaries)) def list_model_customization_jobs(self) -> str: params = self._get_params() @@ -141,16 +153,12 @@ def list_model_customization_jobs(self) -> str: creation_time_before = params.get("creationTimeBefore") status_equals = params.get("statusEquals") name_contains = params.get("nameContains") - max_results = params.get("maxResults") + max_results = self._get_int_param("maxResults") next_token = params.get("nextToken") sort_by = params.get("sortBy") sort_order = params.get("sortOrder") - max_results = int(max_results) if max_results else None - ( - model_customization_job_summaries, - next_token, - ) = self.bedrock_backend.list_model_customization_jobs( + jobs, next_token = self.bedrock_backend.list_model_customization_jobs( creation_time_after=creation_time_after, creation_time_before=creation_time_before, status_equals=status_equals, @@ -160,10 +168,25 @@ def list_model_customization_jobs(self) -> str: sort_by=sort_by, sort_order=sort_order, ) + job_summaries = [ + { + "jobArn": job.job_arn, + "baseModelArn": job.base_model_arn, + "jobName": job.job_name, + "status": job.status, + "lastModifiedTime": job.last_modified_time, + "creationTime": job.creation_time, + "endTime": job.end_time, + "customModelArn": job.output_model_arn, + "customModelName": job.custom_model_name, + "customizationType": job.customization_type, + } + for job in jobs + ] return json.dumps( dict( nextToken=next_token, - modelCustomizationJobSummaries=model_customization_job_summaries, + modelCustomizationJobSummaries=job_summaries, ) ) diff --git a/moto/bedrockagent/models.py b/moto/bedrockagent/models.py index e9c36eddf690..d3b9cc28bf87 100644 --- a/moto/bedrockagent/models.py +++ b/moto/bedrockagent/models.py @@ -166,13 +166,13 @@ class AgentsforBedrockBackend(BaseBackend): "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, - "unique_attribute": "agentId", + "unique_attribute": "agent_id", }, "list_knowledge_bases": { "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, - "unique_attribute": "knowledgeBaseId", + "unique_attribute": "knowledge_base_id", }, } @@ -224,12 +224,9 @@ def get_agent(self, agent_id: str) -> Agent: raise ResourceNotFoundException(f"Agent {agent_id} not found") return self.agents[agent_id] - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_agents( - self, max_results: Optional[int], next_token: Optional[str] - ) -> List[Any]: - agent_summaries = [agent.dict_summary() for agent in self.agents.values()] - return agent_summaries + @paginate(pagination_model=PAGINATION_MODEL) + def list_agents(self) -> List[Agent]: + return [agent for agent in self.agents.values()] def delete_agent( self, agent_id: str, skip_resource_in_use_check: Optional[bool] @@ -273,15 +270,9 @@ def create_knowledge_base( self.tag_resource(knowledge_base.knowledge_base_arn, tags) return knowledge_base - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_knowledge_bases( - self, max_results: Optional[int], next_token: Optional[str] - ) -> List[Any]: - knowledge_base_summaries = [ - knowledge_base.dict_summary() - for knowledge_base in self.knowledge_bases.values() - ] - return knowledge_base_summaries + @paginate(pagination_model=PAGINATION_MODEL) + def list_knowledge_bases(self) -> List[KnowledgeBase]: + return [knowledge_base for knowledge_base in self.knowledge_bases.values()] def delete_knowledge_base(self, knowledge_base_id: str) -> Tuple[str, str]: if knowledge_base_id in self.knowledge_bases: diff --git a/moto/bedrockagent/responses.py b/moto/bedrockagent/responses.py index 7d3bada0ea7e..111ab66d4ac8 100644 --- a/moto/bedrockagent/responses.py +++ b/moto/bedrockagent/responses.py @@ -61,7 +61,7 @@ def list_agents(self) -> str: ) return json.dumps( { - "agentSummaries": agents, + "agentSummaries": [a.dict_summary() for a in agents], "nextToken": next_token, } ) @@ -106,7 +106,7 @@ def list_knowledge_bases(self) -> str: ) return json.dumps( { - "knowledgeBaseSummaries": knowledge_bases, + "knowledgeBaseSummaries": [kb.dict_summary() for kb in knowledge_bases], "nextToken": next_token, } ) diff --git a/moto/core/responses.py b/moto/core/responses.py index 054bcdf97c28..edd26019b4f6 100644 --- a/moto/core/responses.py +++ b/moto/core/responses.py @@ -303,7 +303,7 @@ def method_dispatch( # type: ignore[misc] """ @functools.wraps(to_call) # type: ignore - def _inner(request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: + def _inner(request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: # type: ignore[misc] response = getattr(cls(), to_call.__name__)(request, full_url, headers) if isinstance(response, str): status = 200 diff --git a/moto/identitystore/models.py b/moto/identitystore/models.py index 170cffcb1652..011710459d8f 100644 --- a/moto/identitystore/models.py +++ b/moto/identitystore/models.py @@ -260,7 +260,7 @@ def create_group_membership( return membership_id, identity_store_id @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_group_memberships( + def list_group_memberships( # type: ignore[misc] self, identity_store_id: str, group_id: str ) -> List[Any]: identity_store = self.__get_identity_store(identity_store_id) @@ -271,8 +271,8 @@ def list_group_memberships( if m["GroupId"] == group_id ] - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore - def list_group_memberships_for_member( + @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] + def list_group_memberships_for_member( # type: ignore[misc] self, identity_store_id: str, member_id: Dict[str, str] ) -> List[Any]: identity_store = self.__get_identity_store(identity_store_id) @@ -284,22 +284,22 @@ def list_group_memberships_for_member( if m["MemberId"]["UserId"] == user_id ] - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore + @paginate(pagination_model=PAGINATION_MODEL) def list_groups( self, identity_store_id: str, filters: List[Dict[str, str]] - ) -> List[Dict[str, Any]]: + ) -> List[Group]: identity_store = self.__get_identity_store(identity_store_id) if filters: if filters[0].get("AttributePath") == "DisplayName": displayname = filters[0].get("AttributeValue") return [ - m._asdict() + m for m in identity_store.groups.values() if m.DisplayName == displayname ] - return [m._asdict() for m in identity_store.groups.values()] + return [m for m in identity_store.groups.values()] @paginate(pagination_model=PAGINATION_MODEL) def list_users( diff --git a/moto/identitystore/responses.py b/moto/identitystore/responses.py index dd3ed4afd240..db057d5fb0a1 100644 --- a/moto/identitystore/responses.py +++ b/moto/identitystore/responses.py @@ -172,7 +172,9 @@ def list_groups(self) -> str: filters=filters, ) - return json.dumps(dict(Groups=groups, NextToken=next_token)) + return json.dumps( + dict(Groups=[g._asdict() for g in groups], NextToken=next_token) + ) def describe_group(self) -> str: identity_store_id = self._get_param("IdentityStoreId") diff --git a/moto/iot/models.py b/moto/iot/models.py index 9d4c05553570..af15871644e3 100644 --- a/moto/iot/models.py +++ b/moto/iot/models.py @@ -6,7 +6,17 @@ from dataclasses import asdict, dataclass, field, replace from datetime import datetime, timedelta from json import JSONDecodeError -from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Pattern, Tuple +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + List, + Optional, + Pattern, + Tuple, + Union, +) from cryptography import x509 from cryptography.hazmat._oid import NameOID @@ -827,7 +837,7 @@ def __init__( self.timeout_config = timeout_config self.created_at = time.mktime(datetime(2015, 1, 1).timetuple()) - def to_dict(self) -> Dict[str, Any]: + def to_dict(self) -> Dict[str, Union[str, float]]: return { "jobTemplateArn": self.job_template_arn, "jobTemplateId": self.job_template_id, @@ -2304,11 +2314,11 @@ def get_job_document(self, job_id: str) -> FakeJob: return self.jobs[job_id] @paginate(PAGINATION_MODEL) # type: ignore[misc] - def list_jobs(self) -> List[Dict[str, Any]]: + def list_jobs(self) -> List[FakeJob]: """ The following parameter are not yet implemented: Status, TargetSelection, ThingGroupName, ThingGroupId """ - return [_.to_dict() for _ in self.jobs.values()] + return [_ for _ in self.jobs.values()] def describe_job_execution( self, job_id: str, thing_name: str, execution_number: int @@ -2364,57 +2374,26 @@ def delete_job_execution( else: raise InvalidStateTransitionException() + @paginate(PAGINATION_MODEL) def list_job_executions_for_job( - self, job_id: str, status: str, max_results: int, token: Optional[str] - ) -> Tuple[List[Dict[str, Any]], Optional[str]]: - job_executions = [ - self.job_executions[je].to_dict() - for je in self.job_executions - if je[0] == job_id + self, job_id: str, status: str + ) -> List[FakeJobExecution]: + return [ + job_exec + for (_id, _), job_exec in self.job_executions.items() + if _id == job_id and (not status or job_exec.status == status) ] - if status is not None: - job_executions = list( - filter( - lambda elem: elem["jobExecutionSummary"].get("status") == status, - job_executions, - ) - ) - - if token is None: - job_executions = job_executions[0:max_results] - next_token = str(max_results) if len(job_executions) > max_results else None - else: - int_token = int(token) - job_executions = job_executions[int_token : int_token + max_results] - next_token = ( - str(int_token + max_results) - if len(job_executions) > int_token + max_results - else None - ) - - return job_executions, next_token - @paginate(PAGINATION_MODEL) # type: ignore[misc] def list_job_executions_for_thing( self, thing_name: str, status: Optional[str] - ) -> List[Dict[str, Any]]: - job_executions = [ - self.job_executions[je].to_dict() - for je in self.job_executions - if je[1] == thing_name + ) -> List[FakeJobExecution]: + return [ + job_exec + for (_, name), job_exec in self.job_executions.items() + if name == thing_name and (not status or job_exec.status == status) ] - if status is not None: - job_executions = list( - filter( - lambda elem: elem["jobExecutionSummary"].get("status") == status, - job_executions, - ) - ) - - return job_executions - def list_topic_rules(self) -> List[Dict[str, Any]]: return [r.to_dict() for r in self.rules.values()] @@ -2643,7 +2622,7 @@ def create_job_template( return job_template @paginate(PAGINATION_MODEL) # type: ignore[misc] - def list_job_templates(self) -> List[Dict[str, Any]]: + def list_job_templates(self) -> List[Dict[str, Union[str, float]]]: return [_.to_dict() for _ in self.jobs_templates.values()] def delete_job_template(self, job_template_id: str) -> None: diff --git a/moto/iot/responses.py b/moto/iot/responses.py index 32ea5c6eabee..6478eb382b16 100644 --- a/moto/iot/responses.py +++ b/moto/iot/responses.py @@ -231,7 +231,9 @@ def list_jobs(self) -> str: max_results=max_results, next_token=previous_next_token ) - return json.dumps(dict(jobs=jobs, nextToken=next_token)) + return json.dumps( + dict(jobs=[job.to_dict() for job in jobs], nextToken=next_token) + ) def describe_job_execution(self) -> str: job_id = self._get_param("jobId") @@ -280,7 +282,12 @@ def list_job_executions_for_job(self) -> str: job_id=job_id, status=status, max_results=max_results, token=next_token ) - return json.dumps(dict(executionSummaries=job_executions, nextToken=next_token)) + return json.dumps( + dict( + executionSummaries=[je.to_dict() for je in job_executions], + nextToken=next_token, + ) + ) def list_job_executions_for_thing(self) -> str: thing_name = self._get_param("thingName") @@ -296,7 +303,12 @@ def list_job_executions_for_thing(self) -> str: next_token=next_token, ) - return json.dumps(dict(executionSummaries=job_executions, nextToken=next_token)) + return json.dumps( + dict( + executionSummaries=[je.to_dict() for je in job_executions], + nextToken=next_token, + ) + ) def create_keys_and_certificate(self) -> str: set_as_active = self._get_bool_param("setAsActive") diff --git a/moto/iot/utils.py b/moto/iot/utils.py index fb71f639a484..7e29fcf18b24 100644 --- a/moto/iot/utils.py +++ b/moto/iot/utils.py @@ -1,11 +1,17 @@ from typing import Any PAGINATION_MODEL = { + "list_job_executions_for_job": { + "input_token": "token", + "limit_key": "max_results", + "limit_default": 100, + "unique_attribute": ["job_id", "thing_arn"], + }, "list_job_executions_for_thing": { "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, - "unique_attribute": "jobId", + "unique_attribute": "job_id", }, "list_job_templates": { "input_token": "next_token", diff --git a/moto/ivs/models.py b/moto/ivs/models.py index f5a430f10de7..2b986c010857 100644 --- a/moto/ivs/models.py +++ b/moto/ivs/models.py @@ -63,7 +63,7 @@ def create_channel( return channel, stream_key @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] - def list_channels( + def list_channels( # type: ignore[misc] self, filter_by_name: Optional[str], filter_by_recording_configuration_arn: Optional[str], diff --git a/moto/kinesis/models.py b/moto/kinesis/models.py index f3492006b362..f897ee898f77 100644 --- a/moto/kinesis/models.py +++ b/moto/kinesis/models.py @@ -808,13 +808,12 @@ def update_shard_count( return current_shard_count - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] + @paginate(pagination_model=PAGINATION_MODEL) def list_shards( self, stream_arn: Optional[str], stream_name: Optional[str] - ) -> List[Dict[str, Any]]: + ) -> List[Shard]: stream = self.describe_stream(stream_arn=stream_arn, stream_name=stream_name) - shards = sorted(stream.shards.values(), key=lambda x: x.shard_id) - return [shard.to_json() for shard in shards] + return sorted(stream.shards.values(), key=lambda x: x.shard_id) def increase_stream_retention_period( self, diff --git a/moto/kinesis/responses.py b/moto/kinesis/responses.py index e4d46410a1cb..b1e09813c653 100644 --- a/moto/kinesis/responses.py +++ b/moto/kinesis/responses.py @@ -164,7 +164,7 @@ def list_shards(self) -> str: limit=max_results, next_token=next_token, ) - res = {"Shards": shards, "NextToken": token} + res = {"Shards": [s.to_json() for s in shards], "NextToken": token} return json.dumps(res) def update_shard_count(self) -> str: diff --git a/moto/kinesis/utils.py b/moto/kinesis/utils.py index 92f03b90aaec..60271cd5c995 100644 --- a/moto/kinesis/utils.py +++ b/moto/kinesis/utils.py @@ -13,18 +13,7 @@ "input_token": "next_token", "limit_key": "limit", "limit_default": 10000, - "unique_attribute": "ShardId", - "fail_on_invalid_token": False, - }, -} - - -PAGINATION_MODEL = { - "list_shards": { - "input_token": "next_token", - "limit_key": "limit", - "limit_default": 10000, - "unique_attribute": "ShardId", + "unique_attribute": "shard_id", "fail_on_invalid_token": False, }, } diff --git a/moto/logs/models.py b/moto/logs/models.py index 82cb82c7e203..018b2fc55e5d 100644 --- a/moto/logs/models.py +++ b/moto/logs/models.py @@ -802,18 +802,16 @@ def delete_log_group(self, log_group_name: str) -> None: raise ResourceNotFoundException() del self.groups[log_group_name] - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] + @paginate(pagination_model=PAGINATION_MODEL) def describe_log_groups( self, log_group_name_prefix: Optional[str] = None - ) -> List[Dict[str, Any]]: + ) -> List[LogGroup]: groups = [ - group.to_describe_dict() + group for name, group in self.groups.items() if name.startswith(log_group_name_prefix or "") ] - groups = sorted(groups, key=lambda x: x["logGroupName"]) - - return groups + return sorted(groups, key=lambda x: x.name) def get_destination(self, destination_name: str) -> Destination: for destination in self.destinations: diff --git a/moto/logs/responses.py b/moto/logs/responses.py index 44e7ffb0670e..b6522f4d76c9 100644 --- a/moto/logs/responses.py +++ b/moto/logs/responses.py @@ -178,7 +178,7 @@ def describe_log_groups(self) -> str: log_group_name_prefix=log_group_name_prefix, next_token=next_token, ) - result = {"logGroups": groups} + result = {"logGroups": [g.to_describe_dict() for g in groups]} if next_token: result["nextToken"] = next_token return json.dumps(result) diff --git a/moto/medialive/models.py b/moto/medialive/models.py index e09777634a6a..812063be5050 100644 --- a/moto/medialive/models.py +++ b/moto/medialive/models.py @@ -173,12 +173,9 @@ def create_channel( self._channels[channel_id] = channel return channel - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] - def list_channels(self) -> List[Dict[str, Any]]: - channels = list(self._channels.values()) - return [ - c.to_dict(exclude=["encoderSettings", "pipelineDetails"]) for c in channels - ] + @paginate(pagination_model=PAGINATION_MODEL) + def list_channels(self) -> List[Channel]: + return [c for c in self._channels.values()] def describe_channel(self, channel_id: str) -> Channel: channel = self._channels[channel_id] @@ -267,10 +264,9 @@ def describe_input(self, input_id: str) -> Input: a_input._resolve_transient_states() return a_input - @paginate(PAGINATION_MODEL) # type: ignore[misc] - def list_inputs(self) -> List[Dict[str, Any]]: - inputs = list(self._inputs.values()) - return [i.to_dict() for i in inputs] + @paginate(PAGINATION_MODEL) + def list_inputs(self) -> List[Input]: + return [i for i in self._inputs.values()] def delete_input(self, input_id: str) -> None: a_input = self._inputs[input_id] diff --git a/moto/medialive/responses.py b/moto/medialive/responses.py index 2356bfa70279..8fccb2f45e9b 100644 --- a/moto/medialive/responses.py +++ b/moto/medialive/responses.py @@ -47,8 +47,11 @@ def list_channels(self) -> str: channels, next_token = self.medialive_backend.list_channels( max_results=max_results, next_token=next_token ) + channel_dicts = [ + c.to_dict(exclude=["encoderSettings", "pipelineDetails"]) for c in channels + ] - return json.dumps(dict(channels=channels, nextToken=next_token)) + return json.dumps(dict(channels=channel_dicts, nextToken=next_token)) def describe_channel(self) -> str: channel_id = self._get_param("channelId") @@ -128,7 +131,9 @@ def list_inputs(self) -> str: max_results=max_results, next_token=next_token ) - return json.dumps(dict(inputs=inputs, nextToken=next_token)) + return json.dumps( + dict(inputs=[i.to_dict() for i in inputs], nextToken=next_token) + ) def delete_input(self) -> str: input_id = self._get_param("inputId") diff --git a/moto/organizations/models.py b/moto/organizations/models.py index 3f036076ac14..cb7057efadc7 100644 --- a/moto/organizations/models.py +++ b/moto/organizations/models.py @@ -537,16 +537,12 @@ def describe_organizational_unit(self, **kwargs: Any) -> Dict[str, Any]: ou = self.get_organizational_unit_by_id(kwargs["OrganizationalUnitId"]) return ou.describe() - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] + @paginate(pagination_model=PAGINATION_MODEL) def list_organizational_units_for_parent( - self, **kwargs: Any - ) -> List[Dict[str, Any]]: - parent_id = self.validate_parent_id(kwargs["parent_id"]) - return [ - {"Id": ou.id, "Arn": ou.arn, "Name": ou.name} - for ou in self.ou - if ou.parent_id == parent_id - ] + self, parent_id: str + ) -> List[FakeOrganizationalUnit]: + parent_id = self.validate_parent_id(parent_id) + return [ou for ou in self.ou if ou.parent_id == parent_id] def create_account(self, **kwargs: Any) -> Dict[str, Any]: if self.org is None: @@ -629,15 +625,13 @@ def list_accounts(self) -> List[FakeAccount]: accounts = [account.describe() for account in self.accounts] return sorted(accounts, key=lambda x: x["JoinedTimestamp"]) # type: ignore - @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] - def list_accounts_for_parent(self, **kwargs: Any) -> Any: - parent_id = self.validate_parent_id(kwargs["parent_id"]) + @paginate(pagination_model=PAGINATION_MODEL) + def list_accounts_for_parent(self, parent_id: str) -> List[FakeAccount]: + parent_id = self.validate_parent_id(parent_id) accounts = [ - account.describe() - for account in self.accounts - if account.parent_id == parent_id + account for account in self.accounts if account.parent_id == parent_id ] - return sorted(accounts, key=lambda x: x["JoinedTimestamp"]) + return sorted(accounts, key=lambda x: x.create_time) def move_account(self, **kwargs: Any) -> None: new_parent_id = self.validate_parent_id(kwargs["DestinationParentId"]) diff --git a/moto/organizations/responses.py b/moto/organizations/responses.py index 60b3456618e0..17f6f9987fdd 100644 --- a/moto/organizations/responses.py +++ b/moto/organizations/responses.py @@ -72,7 +72,11 @@ def list_organizational_units_for_parent(self) -> str: ) = self.organizations_backend.list_organizational_units_for_parent( max_results=max_results, next_token=next_token, parent_id=parent_id ) - response = {"OrganizationalUnits": ous} + response = { + "OrganizationalUnits": [ + {"Id": ou.id, "Arn": ou.arn, "Name": ou.name} for ou in ous + ] + } if next_token: response["NextToken"] = next_token return json.dumps(response) @@ -126,7 +130,7 @@ def list_accounts_for_parent(self) -> str: accounts, next_token = self.organizations_backend.list_accounts_for_parent( max_results=max_results, next_token=next_token, parent_id=parent_id ) - response = {"Accounts": accounts} + response = {"Accounts": [a.describe() for a in accounts]} if next_token: response["NextToken"] = next_token return json.dumps(response) diff --git a/moto/organizations/utils.py b/moto/organizations/utils.py index 903449c88771..75560c3ec4e5 100644 --- a/moto/organizations/utils.py +++ b/moto/organizations/utils.py @@ -45,14 +45,14 @@ "limit_key": "max_results", "limit_default": 20, "result_key": "Accounts", - "unique_attribute": "JoinedTimestamp", + "unique_attribute": "id", }, "list_organizational_units_for_parent": { "input_token": "next_token", "limit_key": "max_results", "limit_default": 20, "result_key": "OrganizationalUnits", - "unique_attribute": "Id", + "unique_attribute": "id", }, } diff --git a/moto/ram/models.py b/moto/ram/models.py index 98060fc24eab..da26c41e0876 100644 --- a/moto/ram/models.py +++ b/moto/ram/models.py @@ -94,7 +94,7 @@ def add_principals(self, principals: List[str]) -> None: ) = self.organizations_backend.list_organizational_units_for_parent( parent_id=root_id ) - if any(principal == ou["Arn"] for ou in ous): + if any(principal == ou.arn for ou in ous): continue raise UnknownResourceException( diff --git a/moto/route53/models.py b/moto/route53/models.py index dc8e4e21eb4e..e5e41eb1d31b 100644 --- a/moto/route53/models.py +++ b/moto/route53/models.py @@ -915,7 +915,7 @@ def create_query_logging_config( log_groups = logs_backends[self.account_id][region].describe_log_groups() for entry in log_groups[0] if log_groups else []: - if log_group_arn == entry["arn"]: + if log_group_arn == f"{entry.arn}:*": break else: # There is no CloudWatch Logs log group with the specified ARN. diff --git a/moto/route53resolver/models.py b/moto/route53resolver/models.py index 15eaf64c27a1..bcb0dc716852 100644 --- a/moto/route53resolver/models.py +++ b/moto/route53resolver/models.py @@ -278,7 +278,7 @@ def description(self) -> Dict[str, Any]: "ModificationTime": self.modification_time, } - def ip_descriptions(self) -> List[Dict[str, Any]]: + def ip_descriptions(self) -> List[Dict[str, str]]: """Return a list of dicts describing resolver endpoint IP addresses.""" description = [] for subnet_id, ip_info in self.subnets.items(): @@ -755,7 +755,7 @@ def get_resolver_rule_association( @paginate(pagination_model=PAGINATION_MODEL) # type: ignore[misc] def list_resolver_endpoint_ip_addresses( self, resolver_endpoint_id: str - ) -> List[Dict[str, Any]]: + ) -> List[Dict[str, str]]: self._validate_resolver_endpoint_id(resolver_endpoint_id) endpoint = self.resolver_endpoints[resolver_endpoint_id] return endpoint.ip_descriptions() diff --git a/moto/s3/models.py b/moto/s3/models.py index d50c2b9c7de0..c34e30c57cd9 100644 --- a/moto/s3/models.py +++ b/moto/s3/models.py @@ -197,7 +197,7 @@ def arn(self) -> str: return f"arn:{self.partition}:s3:::{self.bucket_name}/{self.name}/{self.version_id}" @value.setter # type: ignore - def value(self, new_value: bytes) -> None: + def value(self, new_value: bytes) -> None: # type: ignore[misc] self._value_buffer.seek(0) self._value_buffer.truncate() diff --git a/moto/ssoadmin/models.py b/moto/ssoadmin/models.py index c28187d0397c..f809330160a6 100644 --- a/moto/ssoadmin/models.py +++ b/moto/ssoadmin/models.py @@ -246,10 +246,10 @@ def _find_managed_policy(self, managed_policy_arn: str) -> ManagedPolicy: f"Policy does not exist with ARN: {managed_policy_arn}" ) - @paginate(PAGINATION_MODEL) # type: ignore[misc] + @paginate(PAGINATION_MODEL) def list_account_assignments( self, instance_arn: str, account_id: str, permission_set_arn: str - ) -> List[Dict[str, Any]]: + ) -> List[Dict[str, str]]: account_assignments = [] for assignment in self.account_assignments: if ( @@ -267,14 +267,14 @@ def list_account_assignments( ) return account_assignments - @paginate(PAGINATION_MODEL) # type: ignore[misc] + @paginate(PAGINATION_MODEL) def list_account_assignments_for_principal( self, filter_: Dict[str, Any], instance_arn: str, principal_id: str, principal_type: str, - ) -> List[Dict[str, Any]]: + ) -> List[Dict[str, str]]: return [ { "AccountId": account_assignment.target_id, diff --git a/moto/utilities/paginator.py b/moto/utilities/paginator.py index 54f80ba46b7c..fc2776ca74c2 100644 --- a/moto/utilities/paginator.py +++ b/moto/utilities/paginator.py @@ -153,6 +153,7 @@ def _check_predicate(self, item: Any) -> bool: ) if not str(curr_val) == predicate_values[index]: return False + return True def _build_next_token(self, next_item: Any) -> str: diff --git a/moto/wafv2/models.py b/moto/wafv2/models.py index b704f163511c..adb62eb207e3 100644 --- a/moto/wafv2/models.py +++ b/moto/wafv2/models.py @@ -61,7 +61,7 @@ "input_token": "next_marker", "limit_key": "limit", "limit_default": 100, - "unique_attribute": "ARN", + "unique_attribute": "arn", }, } @@ -514,15 +514,15 @@ def get_web_acl(self, name: str, _id: str) -> FakeWebACL: raise WAFNonexistentItemException @paginate(PAGINATION_MODEL) # type: ignore - def list_web_acls(self) -> List[Dict[str, Any]]: - return [wacl.to_short_dict() for wacl in self.wacls.values()] + def list_web_acls(self) -> List[FakeWebACL]: + return [wacl for wacl in self.wacls.values()] def _is_duplicate_name(self, name: str) -> bool: all_wacl_names = set(wacl.name for wacl in self.wacls.values()) return name in all_wacl_names @paginate(PAGINATION_MODEL) # type: ignore - def list_rule_groups(self, scope: str) -> List[Any]: + def list_rule_groups(self, scope: str) -> List[FakeRuleGroup]: rule_groups = [ group for group in self.rule_groups.values() if group.scope == scope ] diff --git a/moto/wafv2/responses.py b/moto/wafv2/responses.py index c00812708dab..1b5d6ac46000 100644 --- a/moto/wafv2/responses.py +++ b/moto/wafv2/responses.py @@ -102,7 +102,10 @@ def list_web_ac_ls(self) -> TYPE_RESPONSE: web_acls, next_marker = self.wafv2_backend.list_web_acls( limit=limit, next_marker=next_marker ) - response = {"NextMarker": next_marker, "WebACLs": web_acls} + response = { + "NextMarker": next_marker, + "WebACLs": [web.to_short_dict() for web in web_acls], + } response_headers = {"Content-Type": "application/json"} return 200, response_headers, json.dumps(response) diff --git a/tests/test_appmesh/test_appmesh.py b/tests/test_appmesh/test_appmesh.py index ec7f37587821..c9eb6b98d246 100644 --- a/tests/test_appmesh/test_appmesh.py +++ b/tests/test_appmesh/test_appmesh.py @@ -127,6 +127,28 @@ def test_create_list_update_describe_delete_mesh(client): assert err["Message"] == "There are no meshes with the name mesh2." +@mock_aws +def test_list_meshes_paginated(client): + for i in range(5): + client.create_mesh( + meshName=f"mesh{i}", + spec={ + "egressFilter": {"type": "DROP_ALL"}, + "serviceDiscovery": {"ipPreference": "IPv4_ONLY"}, + }, + tags=[{"key": "owner", "value": "moto"}], + ) + + all_meshes = client.list_meshes()["meshes"] + assert len(all_meshes) == 5 + + page1 = client.list_meshes(limit=2) + assert len(page1["meshes"]) == 2 + + page2 = client.list_meshes(nextToken=page1["nextToken"]) + assert len(page2["meshes"]) == 3 + + @mock_aws def test_create_describe_list_update_delete_virtual_router(client): connection = client.create_mesh( @@ -242,6 +264,43 @@ def test_create_describe_list_update_delete_virtual_router(client): ) +@mock_aws +def test_list_virtual_routers_paginated(client): + mesh = client.create_mesh( + meshName=MESH_NAME, + spec={ + "egressFilter": {"type": "DROP_ALL"}, + "serviceDiscovery": {"ipPreference": "IPv4_ONLY"}, + }, + tags=[{"key": "owner", "value": "moto"}], + )["mesh"] + mesh_owner = mesh["metadata"]["meshOwner"] + + for i in range(5): + client.create_virtual_router( + meshName=MESH_NAME, + meshOwner=mesh_owner, + virtualRouterName=f"router{i}", + spec={"listeners": [{"portMapping": {"port": 80, "protocol": "http"}}]}, + tags=[{"key": "router_traffic", "value": "http"}], + ) + + all_routers = client.list_virtual_routers(meshName=MESH_NAME, meshOwner=mesh_owner)[ + "virtualRouters" + ] + assert len(all_routers) == 5 + + page1 = client.list_virtual_routers( + meshName=MESH_NAME, meshOwner=mesh_owner, limit=2 + ) + assert len(page1["virtualRouters"]) == 2 + + page2 = client.list_virtual_routers( + meshName=MESH_NAME, meshOwner=mesh_owner, nextToken=page1["nextToken"] + ) + assert len(page2["virtualRouters"]) == 3 + + @mock_aws def test_create_describe_list_update_delete_route(client): ROUTER_NAME = "mock_virtual_router" @@ -588,6 +647,54 @@ def test_create_describe_list_update_delete_route(client): ) +@mock_aws +def test_list_routes_paginated(client): + ROUTER_NAME = "mock_virtual_router" + + mesh = client.create_mesh( + meshName=MESH_NAME, + spec={ + "egressFilter": {"type": "DROP_ALL"}, + "serviceDiscovery": {"ipPreference": "IPv4_ONLY"}, + }, + tags=[{"key": "owner", "value": "moto"}], + )["mesh"] + mesh_owner = mesh["metadata"]["meshOwner"] + + client.create_virtual_router( + meshName=MESH_NAME, + meshOwner=mesh_owner, + virtualRouterName=ROUTER_NAME, + spec={"listeners": [{"portMapping": {"port": 80, "protocol": "http"}}]}, + tags=[{"key": "router_traffic", "value": "http"}], + ) + + for idx, license in enumerate(["apache", "mit", "mpl", "bsd"]): + client.create_route( + meshOwner=mesh_owner, + meshName=MESH_NAME, + virtualRouterName=ROUTER_NAME, + routeName=f"route{idx}", + tags=[{"key": "license", "value": license}], + spec=grpc_route_spec, + ) + + all_routes = client.list_routes(meshName=MESH_NAME, virtualRouterName=ROUTER_NAME)[ + "routes" + ] + assert len(all_routes) == 4 + + page1 = client.list_routes( + meshName=MESH_NAME, virtualRouterName=ROUTER_NAME, limit=2 + ) + assert len(page1["routes"]) == 2 + + page2 = client.list_routes( + meshName=MESH_NAME, virtualRouterName=ROUTER_NAME, nextToken=page1["nextToken"] + ) + assert len(page2["routes"]) == 2 + + @mock_aws def test_create_describe_list_update_delete_virtual_node(client): connection = client.create_mesh( @@ -1208,6 +1315,41 @@ def test_create_describe_list_update_delete_virtual_node(client): ) +@mock_aws +def test_list_virtual_nodes_paginated(client): + mesh = client.create_mesh( + meshName=MESH_NAME, + spec={ + "egressFilter": {"type": "DROP_ALL"}, + "serviceDiscovery": {"ipPreference": "IPv4_ONLY"}, + }, + tags=[{"key": "owner", "value": "moto"}], + )["mesh"] + mesh_owner = mesh["metadata"]["meshOwner"] + + for i in range(5): + client.create_virtual_node( + meshName=MESH_NAME, + meshOwner=mesh_owner, + spec=grpc_virtual_node_spec, + tags=[{"key": "type", "value": "grpc"}], + virtualNodeName=f"node{i}", + ) + + all_nodes = client.list_virtual_nodes(meshName=MESH_NAME, meshOwner=mesh_owner)[ + "virtualNodes" + ] + assert len(all_nodes) == 5 + + page1 = client.list_virtual_nodes(meshName=MESH_NAME, meshOwner=mesh_owner, limit=2) + assert len(page1["virtualNodes"]) == 2 + + page2 = client.list_virtual_nodes( + meshName=MESH_NAME, meshOwner=mesh_owner, nextToken=page1["nextToken"] + ) + assert len(page2["virtualNodes"]) == 3 + + @mock_aws def test_tag_and_list_tags_for_resource(client): # create resources @@ -1286,9 +1428,18 @@ def test_tag_and_list_tags_for_resource(client): client.tag_resource( resourceArn=virtual_node_arn, - tags=[{"key": "organization", "value": "how_moto_got_its_mojo_back"}], + tags=[{"key": "k2", "value": "v2"}, {"key": "k3", "value": "v3"}], ) connection = client.list_tags_for_resource(resourceArn=virtual_node_arn) tags = connection["tags"] assert tags[0] == {"key": "type", "value": "http"} - assert tags[1] == {"key": "organization", "value": "how_moto_got_its_mojo_back"} + assert tags[1] == {"key": "k2", "value": "v2"} + assert tags[2] == {"key": "k3", "value": "v3"} + + page1 = client.list_tags_for_resource(resourceArn=virtual_node_arn, limit=1) + assert page1["tags"] == [{"key": "type", "value": "http"}] + + page2 = client.list_tags_for_resource( + resourceArn=virtual_node_arn, nextToken=page1["nextToken"] + ) + assert page2["tags"] == [{"key": "k2", "value": "v2"}, {"key": "k3", "value": "v3"}] diff --git a/tests/test_identitystore/test_identitystore.py b/tests/test_identitystore/test_identitystore.py index bac5ef4281a8..07299ec5d21f 100644 --- a/tests/test_identitystore/test_identitystore.py +++ b/tests/test_identitystore/test_identitystore.py @@ -417,8 +417,8 @@ def test_list_groups(): identity_store_id = get_identity_store_id() start = 0 - end = 266 - batch_size = 100 + end = 20 + batch_size = 3 next_token = None expected_groups = list() @@ -509,8 +509,8 @@ def test_list_group_memberships(): identity_store_id = get_identity_store_id() start = 0 - end = 5000 - batch_size = 321 + end = 20 + batch_size = 3 next_token = None membership_ids = [] diff --git a/tests/test_iot/test_iot_job_executions.py b/tests/test_iot/test_iot_job_executions.py index 13df3302c499..27f906d7bb81 100644 --- a/tests/test_iot/test_iot_job_executions.py +++ b/tests/test_iot/test_iot_job_executions.py @@ -149,19 +149,18 @@ def test_delete_job_execution(): @mock_aws def test_list_job_executions_for_job(): client = boto3.client("iot", region_name="eu-west-1") - name = "my-thing" job_id = "TestJob" # thing - thing = client.create_thing(thingName=name) - assert thing["thingName"] == name - assert "thingArn" in thing + thing_arns = [ + client.create_thing(thingName=f"mything_{i}")["thingArn"] for i in range(10) + ] # job document job_document = {"field": "value"} job = client.create_job( jobId=job_id, - targets=[thing["thingArn"]], + targets=thing_arns, document=json.dumps(job_document), description="Description", presignedUrlConfig={ @@ -176,11 +175,24 @@ def test_list_job_executions_for_job(): assert "jobArn" in job assert "description" in job - job_execution = client.list_job_executions_for_job(jobId=job_id) - assert job_execution["executionSummaries"][0]["thingArn"] == thing["thingArn"] + job_executions = client.list_job_executions_for_job(jobId=job_id)[ + "executionSummaries" + ] + assert len(job_executions) == 10 + assert job_executions[0]["thingArn"] in thing_arns + + job_executions = client.list_job_executions_for_job(jobId=job_id, status="QUEUED")[ + "executionSummaries" + ] + assert len(job_executions) == 10 - job_execution = client.list_job_executions_for_job(jobId=job_id, status="QUEUED") - assert job_execution["executionSummaries"][0]["thingArn"] == thing["thingArn"] + page1 = client.list_job_executions_for_job(jobId=job_id, maxResults=4) + assert len(page1["executionSummaries"]) == 4 + + page2 = client.list_job_executions_for_job( + jobId=job_id, nextToken=page1["nextToken"] + ) + assert len(page2["executionSummaries"]) == 6 @mock_aws From 294fb7180289070e5de198f1037c6280a8e4f946 Mon Sep 17 00:00:00 2001 From: Jonathan Lim Date: Wed, 5 Feb 2025 14:12:50 -0500 Subject: [PATCH 006/103] Elasticsearch - Expose the tagging functionality (#8515) --- moto/es/urls.py | 6 ++- moto/opensearch/responses.py | 16 +++++++ tests/test_es/test_domain_tags.py | 78 +++++++++++++++++++++++++++++++ 3 files changed, 98 insertions(+), 2 deletions(-) create mode 100644 tests/test_es/test_domain_tags.py diff --git a/moto/es/urls.py b/moto/es/urls.py index 4c1ae5294eaf..0342095a6f1e 100644 --- a/moto/es/urls.py +++ b/moto/es/urls.py @@ -10,12 +10,14 @@ "{0}/2015-01-01/es/domain$": OpenSearchServiceResponse.domains, "{0}/2015-01-01/es/domain/(?P[^/]+)": OpenSearchServiceResponse.domain, "{0}/2015-01-01/es/domain-info$": OpenSearchServiceResponse.list_domains, + "{0}/2015-01-01/tags/?$": OpenSearchServiceResponse.tags, + "{0}/2015-01-01/tags-removal/?": OpenSearchServiceResponse.tag_removal, "{0}/2021-01-01/domain$": OpenSearchServiceResponse.dispatch, "{0}/2021-01-01/opensearch/compatibleVersions": OpenSearchServiceResponse.dispatch, "{0}/2021-01-01/opensearch/domain": OpenSearchServiceResponse.dispatch, "{0}/2021-01-01/opensearch/domain/(?P[^/]+)": OpenSearchServiceResponse.dispatch, "{0}/2021-01-01/opensearch/domain/(?P[^/]+)/config": OpenSearchServiceResponse.dispatch, "{0}/2021-01-01/opensearch/domain-info$": OpenSearchServiceResponse.dispatch, - "{0}/2021-01-01/tags/?": OpenSearchServiceResponse.dispatch, - "{0}/2021-01-01/tags-removal/": OpenSearchServiceResponse.dispatch, + "{0}/2021-01-01/tags/?$": OpenSearchServiceResponse.dispatch, + "{0}/2021-01-01/tags-removal/?": OpenSearchServiceResponse.dispatch, } diff --git a/moto/opensearch/responses.py b/moto/opensearch/responses.py index efb6f9badc1d..3c3828e3cfee 100644 --- a/moto/opensearch/responses.py +++ b/moto/opensearch/responses.py @@ -47,6 +47,22 @@ def domain(cls, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: # if request.method == "GET": return 200, {}, response.describe_domain() + @classmethod + def tags(cls, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: # type: ignore + response = cls() + response.setup_class(request, full_url, headers) + if request.method == "GET": + return 200, {}, response.list_tags() + if request.method == "POST": + return 200, {}, response.add_tags() + + @classmethod + def tag_removal(cls, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: # type: ignore + response = cls() + response.setup_class(request, full_url, headers) + if request.method == "POST": + return 200, {}, response.remove_tags() + def create_domain(self) -> str: domain_name = self._get_param("DomainName") if not re.match(r"^[a-z][a-z0-9\-]+$", domain_name): diff --git a/tests/test_es/test_domain_tags.py b/tests/test_es/test_domain_tags.py new file mode 100644 index 000000000000..b2f02b9f8809 --- /dev/null +++ b/tests/test_es/test_domain_tags.py @@ -0,0 +1,78 @@ +import boto3 + +from moto import mock_aws + + +@mock_aws +def test_create_without_tags(): + client = boto3.client("es", region_name="us-east-1") + arn = client.create_elasticsearch_domain(DomainName="testdn")["DomainStatus"]["ARN"] + + assert client.list_tags(ARN=arn)["TagList"] == [] + + +@mock_aws +def test_create_with_tags(): + client = boto3.client("es", region_name="us-east-1") + domain = client.create_elasticsearch_domain( + DomainName="testdn", TagList=[{"Key": "k1", "Value": "v1"}] + ) + arn = domain["DomainStatus"]["ARN"] + + assert client.list_tags(ARN=arn)["TagList"] == [{"Key": "k1", "Value": "v1"}] + + +@mock_aws +def test_add_tags(): + client = boto3.client("es", region_name="us-east-1") + domain = client.create_elasticsearch_domain(DomainName="testdn") + + arn = domain["DomainStatus"]["ARN"] + + client.add_tags( + ARN=arn, TagList=[{"Key": "k1", "Value": "v1"}, {"Key": "k2", "Value": "v2"}] + ) + + assert client.list_tags(ARN=arn)["TagList"] == [ + {"Key": "k1", "Value": "v1"}, + {"Key": "k2", "Value": "v2"}, + ] + + +@mock_aws +def test_update_tag(): + client = boto3.client("es", region_name="us-east-1") + domain = client.create_elasticsearch_domain( + DomainName="testdn", TagList=[{"Key": "k1", "Value": "v1"}] + ) + + arn = domain["DomainStatus"]["ARN"] + assert client.list_tags(ARN=arn)["TagList"] == [{"Key": "k1", "Value": "v1"}] + + # add the same key again with a different value + client.add_tags(ARN=arn, TagList=[{"Key": "k1", "Value": "v2"}]) + + assert client.list_tags(ARN=arn)["TagList"] == [ + {"Key": "k1", "Value": "v2"}, + ] + + +@mock_aws +def test_remove_tags(): + client = boto3.client("es", region_name="us-east-1") + domain = client.create_elasticsearch_domain( + DomainName="testdn", + TagList=[{"Key": "k1", "Value": "v1"}, {"Key": "k2", "Value": "v2"}], + ) + arn = domain["DomainStatus"]["ARN"] + + assert client.list_tags(ARN=arn)["TagList"] == [ + {"Key": "k1", "Value": "v1"}, + {"Key": "k2", "Value": "v2"}, + ] + + client.remove_tags(ARN=arn, TagKeys=["k1"]) + assert client.list_tags(ARN=arn)["TagList"] == [{"Key": "k2", "Value": "v2"}] + + client.remove_tags(ARN=arn, TagKeys=["k2"]) + assert client.list_tags(ARN=arn)["TagList"] == [] From 0217a47b77881cd809b804edb181f582ff5c542b Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Wed, 5 Feb 2025 20:04:44 -0100 Subject: [PATCH 007/103] APIGatewayV2/ECR: Change date formatting for TF-compatibility (#8569) --- moto/apigatewayv2/models.py | 17 +++++++------- moto/ecr/models.py | 4 +--- other_langs/terraform/apigw2/apigateway.tf | 24 +++++++++++++++++++ other_langs/terraform/apigw2/data.tf | 17 ++++++++++++++ other_langs/terraform/apigw2/provider.tf | 16 +++++++++++++ other_langs/terraform/ecr/provider.tf | 27 ++++++++++++++++++++++ other_langs/terraform/ecr/repository.tf | 8 +++++++ 7 files changed, 102 insertions(+), 11 deletions(-) create mode 100644 other_langs/terraform/apigw2/apigateway.tf create mode 100644 other_langs/terraform/apigw2/data.tf create mode 100644 other_langs/terraform/apigw2/provider.tf create mode 100644 other_langs/terraform/ecr/provider.tf create mode 100644 other_langs/terraform/ecr/repository.tf diff --git a/moto/apigatewayv2/models.py b/moto/apigatewayv2/models.py index 69d3117c45c1..86c87a6970dd 100644 --- a/moto/apigatewayv2/models.py +++ b/moto/apigatewayv2/models.py @@ -2,13 +2,14 @@ import hashlib import string +from datetime import datetime from typing import Any, Dict, List, Optional, Union import yaml from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel -from moto.core.utils import unix_time +from moto.core.utils import iso_8601_datetime_without_milliseconds from moto.moto_api._internal import mock_random as random from moto.utilities.tagging_service import TaggingService from moto.utilities.utils import get_partition @@ -54,14 +55,14 @@ def __init__(self, api: "Api", config: Dict[str, Any]): self.route_settings = config.get("routeSettings", {}) self.stage_variables = config.get("stageVariables", {}) self.tags = config.get("tags", {}) - self.created = self.updated = unix_time() + self.created = self.updated = datetime.now() def to_json(self) -> Dict[str, Any]: dct = { "stageName": self.name, "defaultRouteSettings": self.default_route_settings, - "createdDate": self.created, - "lastUpdatedDate": self.updated, + "createdDate": iso_8601_datetime_without_milliseconds(self.created), + "lastUpdatedDate": iso_8601_datetime_without_milliseconds(self.updated), "routeSettings": self.route_settings, "stageVariables": self.stage_variables, "tags": self.tags, @@ -578,7 +579,7 @@ def __init__( self.api_key_selection_expression = ( api_key_selection_expression or "$request.header.x-api-key" ) - self.created_date = unix_time() + self.created_date = datetime.now() self.cors_configuration = cors_configuration self.description = description self.disable_execute_api_endpoint = disable_execute_api_endpoint or False @@ -1036,7 +1037,7 @@ def to_json(self) -> Dict[str, Any]: "apiId": self.api_id, "apiEndpoint": self.api_endpoint, "apiKeySelectionExpression": self.api_key_selection_expression, - "createdDate": self.created_date, + "createdDate": iso_8601_datetime_without_milliseconds(self.created_date), "corsConfiguration": self.cors_configuration, "description": self.description, "disableExecuteApiEndpoint": self.disable_execute_api_endpoint, @@ -1058,7 +1059,7 @@ def __init__( tags: Dict[str, str], backend: "ApiGatewayV2Backend", ): - self.created = unix_time() + self.created = datetime.now() self.id = "".join(random.choice(string.ascii_lowercase) for _ in range(8)) self.name = name self.sg_ids = sg_ids @@ -1073,7 +1074,7 @@ def update(self, name: str) -> None: def to_json(self) -> Dict[str, Any]: return { - "createdDate": self.created, + "createdDate": iso_8601_datetime_without_milliseconds(self.created), "name": self.name, "securityGroupIds": self.sg_ids, "subnetIds": self.subnet_ids, diff --git a/moto/ecr/models.py b/moto/ecr/models.py index 70f325814f0c..fa96248ce23b 100644 --- a/moto/ecr/models.py +++ b/moto/ecr/models.py @@ -152,9 +152,7 @@ def response_object(self) -> Dict[str, Any]: # type: ignore[misc] response_object["repositoryArn"] = self.arn response_object["repositoryName"] = self.name response_object["repositoryUri"] = self.uri - response_object["createdAt"] = iso_8601_datetime_without_milliseconds( - self.created_at - ) + response_object["createdAt"] = self.created_at.timestamp() del response_object["arn"], response_object["name"], response_object["images"] return response_object diff --git a/other_langs/terraform/apigw2/apigateway.tf b/other_langs/terraform/apigw2/apigateway.tf new file mode 100644 index 000000000000..64f810fd56ba --- /dev/null +++ b/other_langs/terraform/apigw2/apigateway.tf @@ -0,0 +1,24 @@ +resource "aws_apigatewayv2_api" "example" { + name = "minimal-example" + protocol_type = "HTTP" +} + +resource "aws_apigatewayv2_stage" "example" { + api_id = aws_apigatewayv2_api.example.id + name = "example-stage" +} + +resource "aws_security_group" "this" { + name = "testsg" + vpc_id = data.aws_vpc.this.id +} + +resource "aws_apigatewayv2_vpc_link" "example" { + name = "example" + security_group_ids = [aws_security_group.this.id] + subnet_ids = data.aws_subnets.this.ids + + tags = { + Usage = "example" + } +} \ No newline at end of file diff --git a/other_langs/terraform/apigw2/data.tf b/other_langs/terraform/apigw2/data.tf new file mode 100644 index 000000000000..3d71c6420033 --- /dev/null +++ b/other_langs/terraform/apigw2/data.tf @@ -0,0 +1,17 @@ +data "aws_caller_identity" "this" {} + +data "aws_vpc" "this" { + default = true +} + +data "aws_subnets" "this" { + filter { + name = "vpc-id" + values = [data.aws_vpc.this.id] + } +} + +data "aws_subnet" "this" { + for_each = toset(data.aws_subnets.this.ids) + id = each.value +} diff --git a/other_langs/terraform/apigw2/provider.tf b/other_langs/terraform/apigw2/provider.tf new file mode 100644 index 000000000000..d6e9e83b3c37 --- /dev/null +++ b/other_langs/terraform/apigw2/provider.tf @@ -0,0 +1,16 @@ +provider "aws" { + access_key = "moto" + secret_key = "moto" + region = "us-east-2" + + skip_credentials_validation = true + skip_metadata_api_check = true + skip_requesting_account_id = true + s3_use_path_style = true + + endpoints { + apigatewayv2 = "http://localhost:5000" + ec2 = "http://localhost:5000" + sts = "http://localhost:5000" + } +} \ No newline at end of file diff --git a/other_langs/terraform/ecr/provider.tf b/other_langs/terraform/ecr/provider.tf new file mode 100644 index 000000000000..3a6c70da1d9a --- /dev/null +++ b/other_langs/terraform/ecr/provider.tf @@ -0,0 +1,27 @@ +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + } + } +} + +provider "aws" { + region = "us-east-1" + s3_use_path_style = true + skip_credentials_validation = true + skip_metadata_api_check = true + skip_requesting_account_id = true + + endpoints { + ec2 = "http://localhost:5000" + codebuild = "http://localhost:5000" + iam = "http://localhost:5000" + logs = "http://localhost:5000" + s3 = "http://localhost:5000" + ecr = "http://localhost:5000" + } + + access_key = "my-access-key" + secret_key = "my-secret-key" +} \ No newline at end of file diff --git a/other_langs/terraform/ecr/repository.tf b/other_langs/terraform/ecr/repository.tf new file mode 100644 index 000000000000..962eef11c72f --- /dev/null +++ b/other_langs/terraform/ecr/repository.tf @@ -0,0 +1,8 @@ +resource "aws_ecr_repository" "foo" { + name = "bar" + image_tag_mutability = "MUTABLE" + + image_scanning_configuration { + scan_on_push = true + } +} \ No newline at end of file From 8a2b9fe22783c6ba4777af16036d082933d29880 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Mon, 3 Feb 2025 20:51:36 -0800 Subject: [PATCH 008/103] [RDS] Enrich Data Model The RDS models have been updated with all the attributes from (the now deleted) `viewmodels.py` data transfer classes, encapsulating all entity information in one place. The models now also inherit a Mixin class that allows for seamless translation of the `botocore` model attributes (e.g. `DBInstanceIdentifier`) to the corresponding `moto` model attributes (e.g. `db_instance_identifier`) during serialization. --- moto/rds/models.py | 507 +++++++++++++++++++++++++++++++++-------- moto/rds/responses.py | 123 ++++------ moto/rds/serialize.py | 12 + moto/rds/utils.py | 114 +++++---- moto/rds/viewmodels.py | 441 ----------------------------------- 5 files changed, 526 insertions(+), 671 deletions(-) delete mode 100644 moto/rds/viewmodels.py diff --git a/moto/rds/models.py b/moto/rds/models.py index 8656d9a82688..db0f78e4ccc8 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import copy import math import os @@ -54,6 +56,7 @@ ClusterEngine, DbInstanceEngine, FilterDef, + XFormedAttributeAccessMixin, apply_filter, merge_filters, valid_preferred_maintenance_window, @@ -64,7 +67,7 @@ from moto.ec2.models.subnets import Subnet -def find_cluster(cluster_arn: str) -> "DBCluster": +def find_cluster(cluster_arn: str) -> DBCluster: arn_parts = cluster_arn.split(":") region, account = arn_parts[3], arn_parts[4] return rds_backends[account][region].describe_db_clusters(cluster_arn)[0] @@ -81,6 +84,10 @@ def tags(self) -> List[Dict[str, str]]: def tags(self, value: List[Dict[str, str]]) -> None: self._tags = value + @property + def tag_list(self) -> List[Dict[str, str]]: + return self._tags + def get_tags(self) -> List[Dict[str, str]]: return self.tags @@ -94,10 +101,10 @@ def remove_tags(self, tag_keys: List[str]) -> None: self.tags = [tag_set for tag_set in self.tags if tag_set["Key"] not in tag_keys] -class RDSBaseModel(TaggingMixin, BaseModel): +class RDSBaseModel(TaggingMixin, XFormedAttributeAccessMixin, BaseModel): resource_type: str - def __init__(self, backend: "RDSBackend"): + def __init__(self, backend: RDSBackend): self.backend = backend self.created = iso_8601_datetime_with_milliseconds() @@ -122,12 +129,12 @@ def arn(self) -> str: return f"arn:{self.partition}:rds:{self.region}:{self.account_id}:{self.resource_type}:{self.name}" -class ProxyTarget(RDSBaseModel): +class DBProxyTarget(RDSBaseModel): resource_type = "proxy-target" def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, resource_id: str, endpoint: Optional[str], type: str, @@ -136,23 +143,40 @@ def __init__( self.endpoint = endpoint self.rds_resource_id = resource_id self.type = type - self.role = "" + self.port = 5432 + self._registering = True + # Not implemented yet: + self.role = None + self.target_arn = None + + @property + def registering(self) -> bool: + if self._registering is True: + self._registering = False + return True + return self._registering + + @property + def target_health(self) -> Dict[str, str]: + return { + "State": "REGISTERING" if self.registering else "AVAILABLE", + } -class ProxyTargetGroup(RDSBaseModel): +class DBProxyTargetGroup(RDSBaseModel): resource_type = "target-group" def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, name: str, proxy_name: str, ): super().__init__(backend) self._name = f"prx-tg-{random.get_random_string(length=17, lower_case=True)}" - self.group_name = name - self.proxy_name = proxy_name - self.targets: List[ProxyTarget] = [] + self.target_group_name = name + self.db_proxy_name = proxy_name + self.targets: List[DBProxyTarget] = [] self.max_connections = 100 self.max_idle_connections = 50 @@ -162,17 +186,35 @@ def __init__( self.created_date = iso_8601_datetime_with_milliseconds() self.updated_date = iso_8601_datetime_with_milliseconds() + self.status = "available" + self.is_default = True + @property def name(self) -> str: return self._name + @property + def target_group_arn(self) -> str: + return self.arn + + @property + def connection_pool_config(self) -> Dict[str, Any]: # type: ignore[misc] + return { + "MaxConnectionsPercent": self.max_connections, + "MaxIdleConnectionsPercent": self.max_idle_connections, + "ConnectionBorrowTimeout": self.borrow_timeout, + "SessionPinningFilters": [ + filter_ for filter_ in self.session_pinning_filters + ], + } + class GlobalCluster(RDSBaseModel): resource_type = "global-cluster" def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, global_cluster_identifier: str, engine: str, engine_version: Optional[str], @@ -197,6 +239,7 @@ def __init__( if self.deletion_protection is None: self.deletion_protection = False self.members: List[DBCluster] = [] + self.status = "available" @property def name(self) -> str: @@ -211,6 +254,33 @@ def arn(self) -> str: def global_cluster_arn(self) -> str: return self.arn + @property + def readers(self) -> List[str]: + readers = [ + reader.db_cluster_arn for reader in self.members if not reader.is_writer + ] + return readers + + @property + def global_cluster_members(self) -> List[Dict[str, Any]]: # type: ignore[misc] + members: List[Dict[str, Any]] = [ + { + "DBClusterArn": member.db_cluster_arn, + "IsWriter": True if member.is_writer else False, + "DBClusterParameterGroupStatus": "in-sync", + "PromotionTier": 1, + # Not sure if this is correct, but current tests assert it being empty for non writers. + "Readers": [], + } + for member in self.members + ] + for member in members: + if member["IsWriter"]: + member["Readers"] = self.readers + else: + member["GlobalWriteForwardingStatus"] = "disabled" + return members + class DBCluster(RDSBaseModel): SUPPORTED_FILTERS = { @@ -222,9 +292,7 @@ class DBCluster(RDSBaseModel): resource_type = "cluster" - def __init__( - self, backend: "RDSBackend", db_cluster_identifier: str, **kwargs: Any - ): + def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: Any): super().__init__(backend) self.db_name = kwargs.get("db_name") self.db_cluster_identifier = db_cluster_identifier @@ -251,7 +319,7 @@ def __init__( self.iops = kwargs.get("iops") self.kms_key_id = kwargs.get("kms_key_id") self.network_type = kwargs.get("network_type") or "IPV4" - self.status = "available" + self._status = "creating" self.cluster_create_time = iso_8601_datetime_with_milliseconds() self.copy_tags_to_snapshot = kwargs.get("copy_tags_to_snapshot") if self.copy_tags_to_snapshot is None: @@ -312,7 +380,7 @@ def __init__( ) self.preferred_maintenance_window = "wed:02:40-wed:03:10" # This should default to the default security group - self.vpc_security_group_ids: List[str] = kwargs["vpc_security_group_ids"] + self._vpc_security_group_ids: List[str] = kwargs["vpc_security_group_ids"] self.hosted_zone_id = "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(14) ) @@ -351,7 +419,7 @@ def __init__( else: self.kms_key_id = kwargs.get("kms_key_id") if self.engine == "aurora-mysql" or self.engine == "aurora-postgresql": - self.global_write_forwarding_requested = kwargs.get( + self._global_write_forwarding_requested = kwargs.get( "enable_global_write_forwarding" ) self.backup_retention_period = kwargs.get("backup_retention_period") or 1 @@ -387,7 +455,7 @@ def name(self) -> str: return self.db_cluster_identifier @property - def is_multi_az(self) -> bool: + def multi_az(self) -> bool: return ( len(self.read_replica_identifiers) > 0 or self.replication_source_identifier is not None @@ -397,6 +465,10 @@ def is_multi_az(self) -> bool: def db_cluster_arn(self) -> str: return self.arn + @property + def db_cluster_resource_id(self) -> str: + return self.resource_id + @property def master_user_password(self) -> str: return self._master_user_password @@ -413,6 +485,14 @@ def master_user_password(self, val: str) -> None: ) self._master_user_password = val + @property + def database_name(self) -> Optional[str]: + return self.db_name + + @property + def db_subnet_group(self) -> str: + return self.subnet_group + @property def enable_http_endpoint(self) -> bool: return self._enable_http_endpoint @@ -448,20 +528,98 @@ def enable_http_endpoint(self, val: Optional[bool]) -> None: ]: self._enable_http_endpoint = val - def master_user_secret(self) -> Dict[str, Any]: - return { - "secret_arn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", - "secret_status": self.master_user_secret_status, - "kms_key_id": self.master_user_secret_kms_key_id + @property + def http_endpoint_enabled(self) -> bool: + return True if self.enable_http_endpoint else False + + @property + def master_user_secret(self) -> Optional[Dict[str, Any]]: # type: ignore[misc] + secret_info = { + "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", + "SecretStatus": self.master_user_secret_status, + "KmsKeyId": self.master_user_secret_kms_key_id if self.master_user_secret_kms_key_id is not None else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.name}", } + return secret_info if self.manage_master_user_password else None + + @property + def db_cluster_parameter_group(self) -> str: + return self.cluster.parameter_group + + @property + def status(self) -> str: + if self._status == "creating": + self._status = "available" + return "creating" + return self._status + + @status.setter + def status(self, value: str) -> None: + self._status = value + + @property + def associated_roles(self) -> List[Dict[str, Any]]: # type: ignore[misc] + return [] + + @property + def scaling_configuration_info(self) -> Dict[str, Any]: # type: ignore[misc] + configuration = self.scaling_configuration or {} + info = { + "MinCapacity": configuration.get("min_capacity"), + "MaxCapacity": configuration.get("max_capacity"), + "AutoPause": configuration.get("auto_pause"), + "SecondsUntilAutoPause": configuration.get("seconds_until_auto_pause"), + "TimeoutAction": configuration.get("timeout_action"), + "SecondsBeforeTimeout": configuration.get("seconds_before_timeout"), + } + return info + + @property + def vpc_security_groups(self) -> List[Dict[str, Any]]: # type: ignore[misc] + groups = [ + {"VpcSecurityGroupId": sg_id, "Status": "active"} + for sg_id in self._vpc_security_group_ids + ] + return groups + + @property + def domain_memberships(self) -> List[str]: + return [] + + @property + def cross_account_clone(self) -> bool: + return False + + @property + def global_write_forwarding_requested(self) -> bool: + # This does not appear to be in the standard response for any clusters + # Docs say it's only for a secondary cluster in aurora global database... + return True if self._global_write_forwarding_requested else False + + @property + def db_cluster_members(self) -> List[Dict[str, Any]]: # type: ignore[misc] + members = [ + { + "DBInstanceIdentifier": member, + "IsClusterWriter": True, + "DBClusterParameterGroupStatus": "in-sync", + "PromotionTier": 1, + } + for member in self.cluster_members + ] + return members + + @property + def iam_database_authentication_enabled(self) -> bool: + return True if self.iam_auth else False def get_cfg(self) -> Dict[str, Any]: cfg = self.__dict__.copy() cfg.pop("backend") cfg["master_user_password"] = cfg.pop("_master_user_password") cfg["enable_http_endpoint"] = cfg.pop("_enable_http_endpoint") + cfg["vpc_security_group_ids"] = cfg.pop("_vpc_security_group_ids") return cfg @staticmethod @@ -510,7 +668,7 @@ class DBClusterSnapshot(RDSBaseModel): SUPPORTED_FILTERS = { "db-cluster-id": FilterDef( - ["cluster.db_cluster_arn", "cluster.db_cluster_identifier"], + ["db_cluster_arn", "db_cluster_identifier"], "DB Cluster Identifiers", ), "db-cluster-snapshot-id": FilterDef( @@ -522,7 +680,7 @@ class DBClusterSnapshot(RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, cluster: DBCluster, snapshot_id: str, snapshot_type: str, @@ -542,9 +700,25 @@ def name(self) -> str: return self.snapshot_id @property - def snapshot_arn(self) -> str: + def db_cluster_snapshot_arn(self) -> str: return self.arn + @property + def db_cluster_snapshot_identifier(self) -> str: + return self.snapshot_id + + @property + def db_cluster_identifier(self) -> str: + return self.cluster.db_cluster_identifier + + @property + def db_cluster_arn(self) -> str: + return self.cluster.arn + + @property + def engine(self) -> Optional[str]: + return self.cluster.engine + class DBInstance(CloudFormationModel, RDSBaseModel): SUPPORTED_FILTERS = { @@ -572,9 +746,7 @@ class DBInstance(CloudFormationModel, RDSBaseModel): resource_type = "db" - def __init__( - self, backend: "RDSBackend", db_instance_identifier: str, **kwargs: Any - ): + def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: Any): super().__init__(backend) self.status = "available" self.is_replica = False @@ -711,7 +883,7 @@ def db_instance_arn(self) -> str: def physical_resource_id(self) -> Optional[str]: return self.db_instance_identifier - def db_parameter_groups(self) -> List["DBParameterGroup"]: + def db_parameter_groups(self) -> List[DBParameterGroup]: if not self.db_parameter_group_name or self.is_default_parameter_group( self.db_parameter_group_name ): @@ -748,14 +920,16 @@ def default_db_parameter_group_details(self) -> Tuple[str, str]: return db_family, f"default.{db_family}" - def master_user_secret(self) -> Dict[str, Any]: - return { - "secret_arn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", - "secret_status": self.master_user_secret_status, - "kms_key_id": self.master_user_secret_kms_key_id + @property + def master_user_secret(self) -> Dict[str, Any] | None: # type: ignore[misc] + secret_info = { + "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", + "SecretStatus": self.master_user_secret_status, + "KmsKeyId": self.master_user_secret_kms_key_id if self.master_user_secret_kms_key_id is not None else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.name}", } + return secret_info if self.manage_master_user_password else None @property def address(self) -> str: @@ -763,14 +937,76 @@ def address(self) -> str: f"{self.db_instance_identifier}.aaaaaaaaaa.{self.region}.rds.amazonaws.com" ) - def add_replica(self, replica: "DBInstance") -> None: + @property + def vpc_security_group_membership_list(self) -> List[Dict[str, Any]]: # type: ignore[misc] + groups = [ + { + "Status": "active", + "VpcSecurityGroupId": id_, + } + for id_ in self.vpc_security_group_ids + ] + return groups + + @property + def db_parameter_group_status_list(self) -> Any: # type: ignore[misc] + groups = self.db_parameter_groups() + for group in groups: + setattr(group, "ParameterApplyStatus", "in-sync") + return groups + + @property + def db_security_group_membership_list(self) -> List[Dict[str, Any]]: # type: ignore[misc] + groups = [ + { + "Status": "active", + "DBSecurityGroupName": group, + } + for group in self.security_groups + ] + return groups + + @property + def endpoint(self) -> Dict[str, Any]: # type: ignore[misc] + return { + "Address": self.address, + "Port": self.port, + } + + @property + def option_group_memberships(self) -> List[Dict[str, Any]]: # type: ignore[misc] + groups = [ + { + "OptionGroupName": self.option_group_name, + "Status": "in-sync", + } + ] + return groups + + @property + def read_replica_db_instance_identifiers(self) -> List[str]: + return [replica for replica in self.replicas] + + @property + def db_instance_port(self) -> Optional[int]: + return self.port + + @property + def read_replica_source_db_instance_identifier(self) -> Optional[str]: + return self.source_db_identifier + + @property + def iam_database_authentication_enabled(self) -> bool: + return self.enable_iam_database_authentication + + def add_replica(self, replica: DBInstance) -> None: if self.region != replica.region: # Cross Region replica self.replicas.append(replica.db_instance_arn) else: self.replicas.append(replica.db_instance_identifier) # type: ignore - def remove_replica(self, replica: "DBInstance") -> None: + def remove_replica(self, replica: DBInstance) -> None: self.replicas.remove(replica.db_instance_identifier) # type: ignore def set_as_replica(self) -> None: @@ -865,7 +1101,7 @@ def create_from_cloudformation_json( # type: ignore[misc] account_id: str, region_name: str, **kwargs: Any, - ) -> "DBInstance": + ) -> DBInstance: properties = cloudformation_json["Properties"] db_security_groups = properties.get("DBSecurityGroups") @@ -937,7 +1173,7 @@ class DBSnapshot(RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, database: DBInstance, snapshot_id: str, snapshot_type: str, @@ -959,8 +1195,24 @@ def name(self) -> str: return self.snapshot_id @property - def snapshot_arn(self) -> str: - return self.arn + def dbi_resource_id(self) -> str: + return self.database.dbi_resource_id + + @property + def engine(self) -> str: + return self.database.engine + + @property + def db_snapshot_identifier(self) -> str: + return self.snapshot_id + + @property + def db_instance_identifier(self) -> str: + return self.database.db_instance_identifier + + @property + def iam_database_authentication_enabled(self) -> bool: + return self.database.enable_iam_database_authentication @property def snapshot_create_time(self) -> str: @@ -971,19 +1223,21 @@ def original_snapshot_create_time(self) -> str: return self.original_created_at -class ExportTask(BaseModel): +class ExportTask(RDSBaseModel): def __init__( self, + backend: RDSBackend, snapshot: Union[DBSnapshot, DBClusterSnapshot], kwargs: Dict[str, Any], ): + super().__init__(backend) self.snapshot = snapshot self.export_task_identifier = kwargs.get("export_task_identifier") self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") self.source_arn = kwargs.get("source_arn") self.iam_role_arn = kwargs.get("iam_role_arn") - self.s3_bucket_name = kwargs.get("s3_bucket_name") + self.s3_bucket = kwargs.get("s3_bucket_name") self.s3_prefix = kwargs.get("s3_prefix", "") self.export_only = kwargs.get("export_only", []) @@ -995,7 +1249,7 @@ def __init__( class EventSubscription(RDSBaseModel): resource_type = "es" - def __init__(self, backend: "RDSBackend", subscription_name: str, **kwargs: Any): + def __init__(self, backend: RDSBackend, subscription_name: str, **kwargs: Any): super().__init__(backend) self.subscription_name = subscription_name self.sns_topic_arn = kwargs.get("sns_topic_arn") @@ -1013,13 +1267,25 @@ def __init__(self, backend: "RDSBackend", subscription_name: str, **kwargs: Any) def name(self) -> str: return self.subscription_name + @property + def cust_subscription_id(self) -> str: + return self.subscription_name + + @property + def event_categories_list(self) -> List[str]: + return self.event_categories + + @property + def source_ids_list(self) -> List[str]: + return self.source_ids + class DBSecurityGroup(CloudFormationModel, RDSBaseModel): resource_type = "secgrp" def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, group_name: str, description: str, tags: List[Dict[str, str]], @@ -1028,8 +1294,8 @@ def __init__( self.group_name = group_name self.description = description self.status = "authorized" - self.ip_ranges: List[Any] = [] - self.ec2_security_groups: List[Any] = [] + self._ip_ranges: List[Any] = [] + self._ec2_security_groups: List[Any] = [] self.tags = tags self.vpc_id = None @@ -1037,11 +1303,35 @@ def __init__( def name(self) -> str: return self.group_name + @property + def ec2_security_groups(self) -> List[Dict[str, str]]: + security_groups = [ + { + "Status": "Active", + "EC2SecurityGroupName": sg.name, + "EC2SecurityGroupId": sg.id, + "EC2SecurityGroupOwnerId": sg.owner_id, + } + for sg in self._ec2_security_groups + ] + return security_groups + + @property + def ip_ranges(self) -> List[Dict[str, Any]]: # type: ignore[misc] + ranges = [ + { + "CIDRIP": ip_range, + "Status": "authorized", + } + for ip_range in self._ip_ranges + ] + return ranges + def authorize_cidr(self, cidr_ip: str) -> None: - self.ip_ranges.append(cidr_ip) + self._ip_ranges.append(cidr_ip) def authorize_security_group(self, security_group: str) -> None: - self.ec2_security_groups.append(security_group) + self._ec2_security_groups.append(security_group) @staticmethod def cloudformation_name_type() -> str: @@ -1060,7 +1350,7 @@ def create_from_cloudformation_json( # type: ignore[misc] account_id: str, region_name: str, **kwargs: Any, - ) -> "DBSecurityGroup": + ) -> DBSecurityGroup: properties = cloudformation_json["Properties"] group_name = resource_name.lower() description = properties["GroupDescription"] @@ -1094,24 +1384,47 @@ class DBSubnetGroup(CloudFormationModel, RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, subnet_name: str, description: str, - subnets: "List[Subnet]", + subnets: List[Subnet], tags: List[Dict[str, str]], ): super().__init__(backend) self.subnet_name = subnet_name self.description = description - self.subnets = subnets + self._subnets = subnets self.status = "Complete" self.tags = tags - self.vpc_id = self.subnets[0].vpc_id + self.vpc_id = self._subnets[0].vpc_id @property def name(self) -> str: return self.subnet_name + @property + def db_subnet_group_description(self) -> str: + return self.description + + @property + def subnets(self) -> List[Dict[str, Any]]: # type: ignore[misc] + subnets = [ + { + "SubnetStatus": "Active", + "SubnetIdentifier": subnet.id, + "SubnetAvailabilityZone": { + "Name": subnet.availability_zone, + "ProvisionedIopsCapable": False, + }, + } + for subnet in self._subnets + ] + return subnets + + @subnets.setter + def subnets(self, subnets: List[Subnet]) -> None: + self._subnets = subnets + @staticmethod def cloudformation_name_type() -> str: return "DBSubnetGroupName" @@ -1129,7 +1442,7 @@ def create_from_cloudformation_json( # type: ignore[misc] account_id: str, region_name: str, **kwargs: Any, - ) -> "DBSubnetGroup": + ) -> DBSubnetGroup: properties = cloudformation_json["Properties"] description = properties["DBSubnetGroupDescription"] @@ -1157,7 +1470,7 @@ class DBProxy(RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, db_proxy_name: str, engine_family: str, auth: List[Dict[str, str]], @@ -1218,7 +1531,7 @@ def __init__( self.endpoint = f"{self.db_proxy_name}.db-proxy-{self.url_identifier}.{self.region}.rds.amazonaws.com" self.proxy_target_groups = { - "default": ProxyTargetGroup( + "default": DBProxyTargetGroup( backend=self.backend, name="default", proxy_name=db_proxy_name ) } @@ -1227,11 +1540,7 @@ def __init__( @property def name(self) -> str: - return self.db_proxy_name - - @property - def arn(self) -> str: - return f"arn:{self.partition}:rds:{self.region}:{self.account_id}:{self.resource_type}:{self.unique_id}" + return self.unique_id class RDSBackend(BaseBackend): @@ -1652,7 +1961,7 @@ def delete_security_group(self, security_group_name: str) -> DBSecurityGroup: def delete_db_parameter_group( self, db_parameter_group_name: str - ) -> "DBParameterGroup": + ) -> DBParameterGroup: if db_parameter_group_name in self.db_parameter_groups: return self.db_parameter_groups.pop(db_parameter_group_name) else: @@ -1685,13 +1994,13 @@ def describe_db_subnet_groups(self, subnet_group_name: str) -> List[DBSubnetGrou return list(self.subnet_groups.values()) def modify_db_subnet_group( - self, subnet_name: str, description: str, subnets: "List[Subnet]" + self, subnet_name: str, description: str, subnets: List[Subnet] ) -> DBSubnetGroup: subnet_group = self.subnet_groups.pop(subnet_name) if not subnet_group: raise DBSubnetGroupNotFoundError(subnet_name) subnet_group.subnet_name = subnet_name - subnet_group.subnets = subnets + subnet_group.subnets = subnets # type: ignore[assignment] if description is not None: subnet_group.description = description return subnet_group @@ -1702,7 +2011,7 @@ def delete_subnet_group(self, subnet_name: str) -> DBSubnetGroup: else: raise DBSubnetGroupNotFoundError(subnet_name) - def create_option_group(self, option_group_kwargs: Dict[str, Any]) -> "OptionGroup": + def create_option_group(self, option_group_kwargs: Dict[str, Any]) -> OptionGroup: option_group_id = option_group_kwargs["name"] # This list was verified against the AWS Console on 14 Dec 2022 # Having an automated way (using the CLI) would be nice, but AFAICS that's not possible @@ -1770,7 +2079,7 @@ def create_option_group(self, option_group_kwargs: Dict[str, Any]) -> "OptionGro self.option_groups[option_group_id] = option_group return option_group - def delete_option_group(self, option_group_name: str) -> "OptionGroup": + def delete_option_group(self, option_group_name: str) -> OptionGroup: if option_group_name in self.option_groups: return self.option_groups.pop(option_group_name) else: @@ -1778,7 +2087,7 @@ def delete_option_group(self, option_group_name: str) -> "OptionGroup": def describe_option_groups( self, option_group_kwargs: Dict[str, Any] - ) -> List["OptionGroup"]: + ) -> List[OptionGroup]: option_group_list = [] for option_group in self.option_groups.values(): if ( @@ -1852,7 +2161,7 @@ def modify_option_group( option_group_name: str, options_to_include: Optional[List[Dict[str, Any]]] = None, options_to_remove: Optional[List[Dict[str, Any]]] = None, - ) -> "OptionGroup": + ) -> OptionGroup: if option_group_name not in self.option_groups: raise OptionGroupNotFoundFaultError(option_group_name) if not options_to_include and not options_to_remove: @@ -1868,7 +2177,7 @@ def modify_option_group( def create_db_parameter_group( self, db_parameter_group_kwargs: Dict[str, Any] - ) -> "DBParameterGroup": + ) -> DBParameterGroup: db_parameter_group_id = db_parameter_group_kwargs["name"] if db_parameter_group_id in self.db_parameter_groups: raise RDSClientError( @@ -1891,7 +2200,7 @@ def create_db_parameter_group( def describe_db_parameter_groups( self, db_parameter_group_kwargs: Dict[str, Any] - ) -> List["DBParameterGroup"]: + ) -> List[DBParameterGroup]: db_parameter_group_list = [] for db_parameter_group in self.db_parameter_groups.values(): if not db_parameter_group_kwargs.get( @@ -1906,7 +2215,7 @@ def modify_db_parameter_group( self, db_parameter_group_name: str, db_parameter_group_parameters: Iterable[Dict[str, Any]], - ) -> "DBParameterGroup": + ) -> DBParameterGroup: if db_parameter_group_name not in self.db_parameter_groups: raise DBParameterGroupNotFoundError(db_parameter_group_name) @@ -2151,7 +2460,7 @@ def restore_db_cluster_from_snapshot( return self.create_db_cluster(new_cluster_props) - def stop_db_cluster(self, cluster_identifier: str) -> "DBCluster": + def stop_db_cluster(self, cluster_identifier: str) -> DBCluster: if cluster_identifier not in self.clusters: raise DBClusterNotFoundError(cluster_identifier) cluster = self.clusters[cluster_identifier] @@ -2190,7 +2499,7 @@ def start_export_task(self, kwargs: Dict[str, Any]) -> ExportTask: if snapshot.status not in ["available"]: raise InvalidExportSourceStateError(snapshot.status) - export_task = ExportTask(snapshot, kwargs) + export_task = ExportTask(self, snapshot, kwargs) self.export_tasks[export_task_id] = export_task return export_task @@ -2364,7 +2673,7 @@ def create_db_cluster_parameter_group( group_name: str, family: str, description: str, - ) -> "DBClusterParameterGroup": + ) -> DBClusterParameterGroup: group = DBClusterParameterGroup( backend=self, name=group_name, @@ -2376,7 +2685,7 @@ def create_db_cluster_parameter_group( def describe_db_cluster_parameter_groups( self, group_name: str - ) -> List["DBClusterParameterGroup"]: + ) -> List[DBClusterParameterGroup]: if group_name is not None: if group_name not in self.db_cluster_parameter_groups: raise DBClusterParameterGroupNotFoundError(group_name) @@ -2606,13 +2915,13 @@ def register_db_proxy_targets( target_group_name: str, db_cluster_identifiers: List[str], db_instance_identifiers: List[str], - ) -> List[ProxyTarget]: + ) -> List[DBProxyTarget]: db_proxy = self.db_proxies[db_proxy_name] target_group = db_proxy.proxy_target_groups[target_group_name or "default"] new_targets = [] for cluster_id in db_cluster_identifiers: cluster = self.clusters[cluster_id] - target = ProxyTarget( + target = DBProxyTarget( backend=self, resource_id=cluster_id, endpoint=cluster.endpoint, @@ -2620,7 +2929,7 @@ def register_db_proxy_targets( ) new_targets.append(target) for instance_id in db_instance_identifiers: - target = ProxyTarget( + target = DBProxyTarget( backend=self, resource_id=instance_id, endpoint=None, @@ -2633,20 +2942,20 @@ def register_db_proxy_targets( def delete_db_proxy(self, proxy_name: str) -> DBProxy: return self.db_proxies.pop(proxy_name) - def describe_db_proxy_targets(self, proxy_name: str) -> List[ProxyTarget]: + def describe_db_proxy_targets(self, proxy_name: str) -> List[DBProxyTarget]: proxy = self.db_proxies[proxy_name] target_group = proxy.proxy_target_groups["default"] return target_group.targets def describe_db_proxy_target_groups( self, proxy_name: str - ) -> List[ProxyTargetGroup]: + ) -> List[DBProxyTargetGroup]: proxy = self.db_proxies[proxy_name] return list(proxy.proxy_target_groups.values()) def modify_db_proxy_target_group( self, proxy_name: str, config: Dict[str, Any] - ) -> ProxyTargetGroup: + ) -> DBProxyTargetGroup: proxy = self.db_proxies[proxy_name] target_group = proxy.proxy_target_groups["default"] if max_connections := config.get("MaxConnectionsPercent"): @@ -2670,7 +2979,7 @@ class OptionGroup(RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, name: str, engine_name: str, major_engine_version: str, @@ -2682,7 +2991,7 @@ def __init__( self.description = description self._name = name self.vpc_and_non_vpc_instance_memberships = False - self.options: Dict[str, Any] = {} + self._options: Dict[str, Any] = {} self.vpcId = "null" self.tags: List[Dict[str, str]] = [] @@ -2690,17 +2999,33 @@ def __init__( def name(self) -> str: return self._name + @property + def options(self) -> List[Dict[str, Any]]: # type: ignore[misc] + return [ + { + "OptionName": name, + "OptionSettings": [ + { + "Name": setting.get("Name"), + "Value": setting.get("Value"), + } + for setting in option_settings + ], + } + for name, option_settings in self._options.items() + ] + def remove_options(self, options_to_remove: Any) -> None: for option in options_to_remove: if isinstance(option, str): - self.options.pop(option, None) + self._options.pop(option, None) def add_options(self, options_to_add: Any) -> None: for option in options_to_add: if isinstance(option, str): - self.options[option] = {} + self._options[option] = {} elif isinstance(option, dict): - self.options[option["OptionName"]] = option["OptionSettings"] + self._options[option["OptionName"]] = option["OptionSettings"] class DBParameterGroup(CloudFormationModel, RDSBaseModel): @@ -2708,7 +3033,7 @@ class DBParameterGroup(CloudFormationModel, RDSBaseModel): def __init__( self, - backend: "RDSBackend", + backend: RDSBackend, name: str, description: str, family: Optional[str], @@ -2751,7 +3076,7 @@ def create_from_cloudformation_json( # type: ignore[misc] account_id: str, region_name: str, **kwargs: Any, - ) -> "DBParameterGroup": + ) -> DBParameterGroup: properties = cloudformation_json["Properties"] db_parameter_group_kwargs = { @@ -2783,7 +3108,7 @@ def __init__(self, backend: RDSBackend, name: str, description: str, family: str super().__init__(backend) self._name = name self.description = description - self.family = family + self.db_parameter_group_family = family self.parameters: Dict[str, Any] = defaultdict(dict) @property diff --git a/moto/rds/responses.py b/moto/rds/responses.py index bf1c359ab2f4..dfae0aebdcf4 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -11,18 +11,6 @@ from .exceptions import DBParameterGroupNotFoundError, RDSClientError from .models import RDSBackend, rds_backends -from .viewmodels import ( - DBClusterDTO, - DBClusterSnapshotDTO, - DBInstanceDTO, - DBProxyTargetDTO, - DBProxyTargetGroupDTO, - DBSecurityGroupDTO, - DBSnapshotDTO, - DBSubnetGroupDTO, - GlobalClusterDTO, - OptionGroupDTO, -) def normalize_request(request: AWSPreparedRequest) -> Request: @@ -61,8 +49,7 @@ def _dispatch(self, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: request = normalize_request(request) from .serialize import QuerySerializer - from .utils import ValuePicker, get_service_model - from .viewmodels import SERIALIZATION_ALIASES + from .utils import get_service_model self.action = request.values["Action"] @@ -75,11 +62,9 @@ def _dispatch(self, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: # ) # self.parameters = xform_dict(parsed) - value_picker = ValuePicker(SERIALIZATION_ALIASES) self.serializer = QuerySerializer( self.operation_model, {"request-id": "request-id"}, - value_picker=value_picker, pretty_print=settings.PRETTIFY_RESPONSES, ) try: @@ -335,13 +320,13 @@ def unpack_list_params(self, label: str, child_label: str) -> List[Dict[str, Any def create_db_instance(self) -> TYPE_RESPONSE: db_kwargs = self._get_db_kwargs() database = self.backend.create_db_instance(db_kwargs) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def create_db_instance_read_replica(self) -> TYPE_RESPONSE: db_kwargs = self._get_db_replica_kwargs() database = self.backend.create_db_instance_read_replica(db_kwargs) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def describe_db_instances(self) -> TYPE_RESPONSE: @@ -355,7 +340,7 @@ def describe_db_instances(self) -> TYPE_RESPONSE: ) instances_resp, next_marker = self._paginate(all_instances) result = { - "DBInstances": [DBInstanceDTO(db) for db in instances_resp], + "DBInstances": instances_resp, "Marker": next_marker, } return self.serialize(result) @@ -369,7 +354,7 @@ def modify_db_instance(self) -> TYPE_RESPONSE: if new_db_instance_identifier: db_kwargs["new_db_instance_identifier"] = new_db_instance_identifier database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def delete_db_instance(self) -> TYPE_RESPONSE: @@ -383,13 +368,13 @@ def delete_db_instance(self) -> TYPE_RESPONSE: database = self.backend.delete_db_instance( db_instance_identifier, db_snapshot_name ) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def reboot_db_instance(self) -> TYPE_RESPONSE: db_instance_identifier = self._get_param("DBInstanceIdentifier") database = self.backend.reboot_db_instance(db_instance_identifier) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def create_db_snapshot(self) -> TYPE_RESPONSE: @@ -404,7 +389,7 @@ def create_db_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier, tags=tags, ) - result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + result = {"DBSnapshot": snapshot} return self.serialize(result) def copy_db_snapshot(self) -> TYPE_RESPONSE: @@ -419,7 +404,7 @@ def copy_db_snapshot(self) -> TYPE_RESPONSE: snapshot = self.backend.copy_db_snapshot( source_snapshot_identifier, target_snapshot_identifier, tags, copy_tags ) - result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + result = {"DBSnapshot": snapshot} return self.serialize(result) def describe_db_snapshots(self) -> TYPE_RESPONSE: @@ -430,7 +415,7 @@ def describe_db_snapshots(self) -> TYPE_RESPONSE: snapshots = self.backend.describe_db_snapshots( db_instance_identifier, db_snapshot_identifier, filter_dict ) - result = {"DBSnapshots": [DBSnapshotDTO(snapshot) for snapshot in snapshots]} + result = {"DBSnapshots": snapshots} return self.serialize(result) def promote_read_replica(self) -> TYPE_RESPONSE: @@ -438,13 +423,13 @@ def promote_read_replica(self) -> TYPE_RESPONSE: db_kwargs = self._get_db_kwargs() database = self.backend.promote_read_replica(db_kwargs) database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) - result = {"DBInstance": DBInstanceDTO(database)} + result = {"DBInstance": database} return self.serialize(result) def delete_db_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") snapshot = self.backend.delete_db_snapshot(db_snapshot_identifier) - result = {"DBSnapshot": DBSnapshotDTO(snapshot)} + result = {"DBSnapshot": snapshot} return self.serialize(result) def restore_db_instance_from_db_snapshot(self) -> TYPE_RESPONSE: @@ -453,7 +438,7 @@ def restore_db_instance_from_db_snapshot(self) -> TYPE_RESPONSE: new_instance = self.backend.restore_db_instance_from_db_snapshot( db_snapshot_identifier, db_kwargs ) - result = {"DBInstance": DBInstanceDTO(new_instance)} + result = {"DBInstance": new_instance} return self.serialize(result) def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: @@ -464,7 +449,7 @@ def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: new_instance = self.backend.restore_db_instance_to_point_in_time( source_db_identifier, target_db_identifier, db_kwargs ) - result = {"DBInstance": DBInstanceDTO(new_instance)} + result = {"DBInstance": new_instance} return self.serialize(result) def list_tags_for_resource(self) -> TYPE_RESPONSE: @@ -512,21 +497,19 @@ def create_db_security_group(self) -> TYPE_RESPONSE: security_group = self.backend.create_db_security_group( group_name, description, tags ) - result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + result = {"DBSecurityGroup": security_group} return self.serialize(result) def describe_db_security_groups(self) -> TYPE_RESPONSE: security_group_name = self._get_param("DBSecurityGroupName") security_groups = self.backend.describe_security_groups(security_group_name) - result = { - "DBSecurityGroups": [DBSecurityGroupDTO(sg) for sg in security_groups] - } + result = {"DBSecurityGroups": security_groups} return self.serialize(result) def delete_db_security_group(self) -> TYPE_RESPONSE: security_group_name = self._get_param("DBSecurityGroupName") security_group = self.backend.delete_security_group(security_group_name) - result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + result = {"DBSecurityGroup": security_group} return self.serialize(result) def authorize_db_security_group_ingress(self) -> TYPE_RESPONSE: @@ -535,7 +518,7 @@ def authorize_db_security_group_ingress(self) -> TYPE_RESPONSE: security_group = self.backend.authorize_security_group( security_group_name, cidr_ip ) - result = {"DBSecurityGroup": DBSecurityGroupDTO(security_group)} + result = {"DBSecurityGroup": security_group} return self.serialize(result) def create_db_subnet_group(self) -> TYPE_RESPONSE: @@ -550,15 +533,13 @@ def create_db_subnet_group(self) -> TYPE_RESPONSE: subnet_group = self.backend.create_subnet_group( subnet_name, description, subnets, tags ) - result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + result = {"DBSubnetGroup": subnet_group} return self.serialize(result) def describe_db_subnet_groups(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") subnet_groups = self.backend.describe_db_subnet_groups(subnet_name) - result = { - "DBSubnetGroups": [DBSubnetGroupDTO(group) for group in subnet_groups] - } + result = {"DBSubnetGroups": subnet_groups} return self.serialize(result) def modify_db_subnet_group(self) -> TYPE_RESPONSE: @@ -572,25 +553,25 @@ def modify_db_subnet_group(self) -> TYPE_RESPONSE: subnet_group = self.backend.modify_db_subnet_group( subnet_name, description, subnets ) - result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + result = {"DBSubnetGroup": subnet_group} return self.serialize(result) def delete_db_subnet_group(self) -> TYPE_RESPONSE: subnet_name = self._get_param("DBSubnetGroupName") subnet_group = self.backend.delete_subnet_group(subnet_name) - result = {"DBSubnetGroup": DBSubnetGroupDTO(subnet_group)} + result = {"DBSubnetGroup": subnet_group} return self.serialize(result) def create_option_group(self) -> TYPE_RESPONSE: kwargs = self._get_option_group_kwargs() option_group = self.backend.create_option_group(kwargs) - result = {"OptionGroup": OptionGroupDTO(option_group)} + result = {"OptionGroup": option_group} return self.serialize(result) def delete_option_group(self) -> TYPE_RESPONSE: kwargs = self._get_option_group_kwargs() option_group = self.backend.delete_option_group(kwargs["name"]) - result = {"OptionGroup": OptionGroupDTO(option_group)} + result = {"OptionGroup": option_group} return self.serialize(result) def describe_option_groups(self) -> TYPE_RESPONSE: @@ -598,7 +579,7 @@ def describe_option_groups(self) -> TYPE_RESPONSE: option_groups = self.backend.describe_option_groups(kwargs) option_groups, marker = self._paginate(option_groups) result = { - "OptionGroupsList": [OptionGroupDTO(group) for group in option_groups], + "OptionGroupsList": option_groups, "Marker": marker, } return self.serialize(result) @@ -620,7 +601,7 @@ def modify_option_group(self) -> TYPE_RESPONSE: option_group = self.backend.modify_option_group( option_group_name, options_to_include, options_to_remove ) - result = {"OptionGroup": OptionGroupDTO(option_group)} + result = {"OptionGroup": option_group} return self.serialize(result) def create_db_parameter_group(self) -> TYPE_RESPONSE: @@ -687,13 +668,13 @@ def describe_db_cluster_parameters(self) -> TYPE_RESPONSE: def create_db_cluster(self) -> TYPE_RESPONSE: kwargs = self._get_db_cluster_kwargs() cluster = self.backend.create_db_cluster(kwargs) - result = {"DBCluster": DBClusterDTO(cluster, creating=True)} + result = {"DBCluster": cluster} return self.serialize(result) def modify_db_cluster(self) -> TYPE_RESPONSE: kwargs = self._get_modify_db_cluster_kwargs() cluster = self.backend.modify_db_cluster(kwargs) - result = {"DBCluster": DBClusterDTO(cluster)} + result = {"DBCluster": cluster} return self.serialize(result) def describe_db_clusters(self) -> TYPE_RESPONSE: @@ -703,7 +684,7 @@ def describe_db_clusters(self) -> TYPE_RESPONSE: clusters = self.backend.describe_db_clusters( cluster_identifier=_id, filters=filter_dict ) - result = {"DBClusters": [DBClusterDTO(cluster) for cluster in clusters]} + result = {"DBClusters": clusters} return self.serialize(result) def delete_db_cluster(self) -> TYPE_RESPONSE: @@ -712,19 +693,19 @@ def delete_db_cluster(self) -> TYPE_RESPONSE: cluster = self.backend.delete_db_cluster( cluster_identifier=_id, snapshot_name=snapshot_name ) - result = {"DBCluster": DBClusterDTO(cluster)} + result = {"DBCluster": cluster} return self.serialize(result) def start_db_cluster(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") cluster = self.backend.start_db_cluster(cluster_identifier=_id) - result = {"DBCluster": DBClusterDTO(cluster)} + result = {"DBCluster": cluster} return self.serialize(result) def stop_db_cluster(self) -> TYPE_RESPONSE: _id = self._get_param("DBClusterIdentifier") cluster = self.backend.stop_db_cluster(cluster_identifier=_id) - result = {"DBCluster": DBClusterDTO(cluster)} + result = {"DBCluster": cluster} return self.serialize(result) def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: @@ -734,7 +715,7 @@ def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: snapshot = self.backend.create_db_cluster_snapshot( db_cluster_identifier, db_snapshot_identifier, tags=tags ) - result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + result = {"DBClusterSnapshot": snapshot} return self.serialize(result) def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: @@ -748,7 +729,7 @@ def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: snapshot = self.backend.copy_db_cluster_snapshot( source_snapshot_identifier, target_snapshot_identifier, tags ) - result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + result = {"DBClusterSnapshot": snapshot} return self.serialize(result) def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: @@ -759,17 +740,13 @@ def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: snapshots = self.backend.describe_db_cluster_snapshots( db_cluster_identifier, db_snapshot_identifier, filter_dict ) - results = { - "DBClusterSnapshots": [ - DBClusterSnapshotDTO(snapshot) for snapshot in snapshots - ] - } + results = {"DBClusterSnapshots": snapshots} return self.serialize(results) def delete_db_cluster_snapshot(self) -> TYPE_RESPONSE: db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") snapshot = self.backend.delete_db_cluster_snapshot(db_snapshot_identifier) - result = {"DBClusterSnapshot": DBClusterSnapshotDTO(snapshot)} + result = {"DBClusterSnapshot": snapshot} return self.serialize(result) def restore_db_cluster_from_snapshot(self) -> TYPE_RESPONSE: @@ -778,7 +755,7 @@ def restore_db_cluster_from_snapshot(self) -> TYPE_RESPONSE: new_cluster = self.backend.restore_db_cluster_from_snapshot( db_snapshot_identifier, db_kwargs ) - result = {"DBCluster": DBClusterDTO(new_cluster)} + result = {"DBCluster": new_cluster} return self.serialize(result) def start_export_task(self) -> TYPE_RESPONSE: @@ -826,7 +803,7 @@ def describe_orderable_db_instance_options(self) -> TYPE_RESPONSE: def describe_global_clusters(self) -> TYPE_RESPONSE: clusters = self.global_backend.describe_global_clusters() - result = {"GlobalClusters": [GlobalClusterDTO(cluster) for cluster in clusters]} + result = {"GlobalClusters": clusters} return self.serialize(result) def create_global_cluster(self) -> TYPE_RESPONSE: @@ -839,7 +816,7 @@ def create_global_cluster(self) -> TYPE_RESPONSE: storage_encrypted=params.get("StorageEncrypted"), deletion_protection=params.get("DeletionProtection"), ) - result = {"GlobalCluster": GlobalClusterDTO(cluster)} + result = {"GlobalCluster": cluster} return self.serialize(result) def delete_global_cluster(self) -> TYPE_RESPONSE: @@ -847,7 +824,7 @@ def delete_global_cluster(self) -> TYPE_RESPONSE: cluster = self.global_backend.delete_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], ) - result = {"GlobalCluster": GlobalClusterDTO(cluster)} + result = {"GlobalCluster": cluster} return self.serialize(result) def remove_from_global_cluster(self) -> TYPE_RESPONSE: @@ -856,11 +833,7 @@ def remove_from_global_cluster(self) -> TYPE_RESPONSE: global_cluster_identifier=params["GlobalClusterIdentifier"], db_cluster_identifier=params["DbClusterIdentifier"], ) - result = { - "GlobalCluster": GlobalClusterDTO(global_cluster) - if global_cluster - else global_cluster - } + result = {"GlobalCluster": global_cluster} return self.serialize(result) def create_db_cluster_parameter_group(self) -> TYPE_RESPONSE: @@ -893,7 +866,7 @@ def delete_db_cluster_parameter_group(self) -> TYPE_RESPONSE: def promote_read_replica_db_cluster(self) -> TYPE_RESPONSE: db_cluster_identifier = self._get_param("DBClusterIdentifier") cluster = self.backend.promote_read_replica_db_cluster(db_cluster_identifier) - result = {"DBCluster": DBClusterDTO(cluster)} + result = {"DBCluster": cluster} return self.serialize(result) def describe_db_snapshot_attributes(self) -> TYPE_RESPONSE: @@ -1015,11 +988,7 @@ def register_db_proxy_targets(self) -> TYPE_RESPONSE: db_cluster_identifiers=db_cluster_identifiers, db_instance_identifiers=db_instance_identifiers, ) - result = { - "DBProxyTargets": [ - DBProxyTargetDTO(target, registering=True) for target in targets - ] - } + result = {"DBProxyTargets": targets} return self.serialize(result) def deregister_db_proxy_targets(self) -> TYPE_RESPONSE: @@ -1038,7 +1007,7 @@ def deregister_db_proxy_targets(self) -> TYPE_RESPONSE: def describe_db_proxy_targets(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") targets = self.backend.describe_db_proxy_targets(proxy_name=proxy_name) - result = {"Targets": [DBProxyTargetDTO(target) for target in targets]} + result = {"Targets": targets} return self.serialize(result) def delete_db_proxy(self) -> TYPE_RESPONSE: @@ -1050,7 +1019,7 @@ def delete_db_proxy(self) -> TYPE_RESPONSE: def describe_db_proxy_target_groups(self) -> TYPE_RESPONSE: proxy_name = self._get_param("DBProxyName") groups = self.backend.describe_db_proxy_target_groups(proxy_name=proxy_name) - result = {"TargetGroups": [DBProxyTargetGroupDTO(group) for group in groups]} + result = {"TargetGroups": groups} return self.serialize(result) def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: @@ -1059,7 +1028,7 @@ def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: group = self.backend.modify_db_proxy_target_group( proxy_name=proxy_name, config=config ) - result = {"DBProxyTargetGroup": DBProxyTargetGroupDTO(group)} + result = {"DBProxyTargetGroup": group} return self.serialize(result) def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: diff --git a/moto/rds/serialize.py b/moto/rds/serialize.py index b96051486db6..d6e2e0f341ce 100644 --- a/moto/rds/serialize.py +++ b/moto/rds/serialize.py @@ -90,6 +90,8 @@ def __init__( self.operation_model = operation_model self.context = context or {"request_id": "request-id"} self.pretty_print = pretty_print + if value_picker is None: + value_picker = self._default_value_picker self._value_picker = value_picker self._timestamp_serializer = TimestampSerializer(self.DEFAULT_TIMESTAMP_FORMAT) @@ -116,6 +118,16 @@ def _create_default_response(self) -> Serialized: def _is_error_result(result: object) -> bool: return isinstance(result, Exception) + @staticmethod + def _default_value_picker(obj: Any, key: str, _: Shape, default: Any = None) -> Any: + if not hasattr(obj, "__getitem__"): + return getattr(obj, key, default) + + try: + return obj[key] + except (KeyError, IndexError, TypeError, AttributeError): + return getattr(obj, key, default) + def _get_value(self, value: Any, key: str, shape: Shape) -> Any: return self._value_picker(value, key, shape) diff --git a/moto/rds/utils.py b/moto/rds/utils.py index 924f4c5afad0..f83fa78396e4 100644 --- a/moto/rds/utils.py +++ b/moto/rds/utils.py @@ -3,14 +3,14 @@ import copy import datetime import re -from collections import OrderedDict, namedtuple +from collections import OrderedDict, defaultdict, namedtuple from enum import Enum from functools import lru_cache from typing import Any, Dict, List, Optional, Tuple from botocore import xform_name from botocore.loaders import create_loader -from botocore.model import ServiceModel, Shape +from botocore.model import ServiceModel from botocore.utils import merge_dicts SECONDS_IN_ONE_DAY = 24 * 60 * 60 @@ -401,72 +401,62 @@ def get_service_model(service_name: str) -> ServiceModel: return service_model -class _Missing: - def __repr__(self) -> str: - return "" +class XFormedAttributeAccessMixin: + """Mixin allowing access to "xformed" attributes: + obj.DBInstanceIdentifier will retrieve the value of obj.db_instance_identifier -missing = _Missing() - + """ -def get_value(obj: Any, key: int | str, default: Any = missing) -> Any: - if not hasattr(obj, "__getitem__"): - return getattr(obj, str(key), default) + _model_attribute_aliases: Dict[str, List[str]] = {} + _xform_cache: Dict[str, str] = {} - try: - return obj[key] - except (KeyError, IndexError, TypeError, AttributeError): - return getattr(obj, str(key), default) + def __getattr__(self, name: str) -> Any: + if name in self.model_attributes: + return self.get_modeled_attribute(name) + raise AttributeError(f"Attribute '{name}' not found!") + def get_modeled_attribute(self, attr_name: str) -> Any: + for attr_alias in self.model_attribute_aliases[attr_name]: + try: + return super().__getattribute__(attr_alias) + except AttributeError: + pass + else: + raise AttributeError -class ValuePicker: - def __init__(self, alias_dict: Dict[str, List[str]]) -> None: - self.alias_dict = alias_dict + @property + def model_attributes(self) -> List[str]: + return list(self.model_attribute_aliases.keys()) - def __call__(self, value: Any, key: str, shape: Shape) -> Any: - return self._get_value(value, key, shape) + @property + def model_attribute_aliases(self) -> Dict[str, List[str]]: + if not self._model_attribute_aliases: + self._model_attribute_aliases = self.get_model_attributes_info() + return self._model_attribute_aliases - def _get_value(self, value: Any, key: str, shape: Shape) -> Any: - new_value = None - possible_keys = self._get_possible_keys(key, value, shape) - for key in possible_keys: - new_value = get_value(value, key) - if new_value is not missing: - break - if new_value is missing: - return None - if callable(new_value): - new_value = new_value() - # Testing if DBInstance.engine was an Engine() instance with a __str__ method - if new_value and shape.type_name == "string" and not isinstance(new_value, str): - new_value = str(new_value) - return new_value - - def _get_possible_keys(self, key: str, obj: Any, shape: Shape) -> List[str]: - possible_keys = [] - # Sometimes the list or structure name differs from the attribute name - if shape.type_name in ["list", "structure"]: - possible_keys += [shape.name, xform_name(shape.name)] - # db_instance_identifier or DBInstanceIdentifier - possible_keys += [xform_name(key), key] - # Check our alias dict... - if key in self.alias_dict: - key_aliases = self.alias_dict[key] - possible_keys += key_aliases - # Translate e.g. DBInstanceIdentifier to identifier if class is DBInstance - from moto.rds.models import RDSBaseModel - - obj_is_rds_model = isinstance(obj, RDSBaseModel) - obj_is_dto = isinstance(obj, object) and obj.__class__.__name__.endswith("DTO") - if obj_is_dto or obj_is_rds_model: # isinstance(obj, object): - # Use alias_dict so DBInstanceDTO resolves to DBInstance - default_class_name = obj.__class__.__name__ - class_name_aliases = self.alias_dict.get( - default_class_name, [default_class_name] - ) - class_name = class_name_aliases[0] - if class_name in key: - short_key = key.replace(class_name, "") - possible_keys += [xform_name(short_key), short_key] + @classmethod + @lru_cache() + def get_model_attributes_info(cls) -> Dict[str, List[str]]: + service_name = cls.__module__.split(".")[1] + model_name = cls.__name__ + service_model = get_service_model(service_name) + model_shape = service_model.shape_for(model_name) + valid_attributes: Dict[str, List[str]] = defaultdict(list) + for member_name, member_shape in model_shape.members.items(): # type: ignore[attr-defined] + aliases = valid_attributes[member_name] + if member_shape.type_name == "list": + if member_name != member_shape.name: + xformed_name = cls._xform_name(member_shape.name) + aliases.append(xformed_name) + xformed_member_name = cls._xform_name(member_name) + aliases.append(xformed_member_name) + if member_name.startswith(model_name): + short_name = member_name[len(model_name) :] + xformed_short_name = cls._xform_name(short_name) + aliases.append(xformed_short_name) + return valid_attributes - return possible_keys + @classmethod + def _xform_name(cls, name: str) -> str: + return xform_name(name, _xform_cache=cls._xform_cache) diff --git a/moto/rds/viewmodels.py b/moto/rds/viewmodels.py deleted file mode 100644 index 975173111fde..000000000000 --- a/moto/rds/viewmodels.py +++ /dev/null @@ -1,441 +0,0 @@ -# mypy: disable-error-code="misc" -from __future__ import annotations - -from typing import Any, Dict, List, Optional - -from .models import ( - DBCluster, - DBClusterSnapshot, - DBInstance, - DBSecurityGroup, - DBSnapshot, - DBSubnetGroup, - GlobalCluster, - OptionGroup, - ProxyTarget, - ProxyTargetGroup, -) - -# We use this dict to alias AWS model attributes to Moto RDS model attributes -# This is just temporary. Eventually we will update the RDS model attributes -# to match AWS. -SERIALIZATION_ALIASES = { - "CustSubscriptionId": ["subscription_name"], - "DatabaseName": ["db_name"], - "DbClusterResourceId": ["resource_id"], - "DBClusterSnapshotArn": ["snapshot_arn"], - "DBClusterSnapshotIdentifier": ["snapshot_id"], - "DBInstanceDTO": ["DBInstance"], - "DbInstancePort": ["port"], - "DBParameterGroupDTO": ["DBParameterGroup"], - "DBParameterGroupFamily": ["family"], - "DBProxyName": ["proxy_name"], - "DBSecurityGroupDTO": ["DBSecurityGroup"], - "DBSnapshotArn": ["snapshot_arn"], - "DBSnapshotDTO": ["DBSnapshot"], - "DBSnapshotIdentifier": ["snapshot_id"], - "DBSubnetGroup": ["subnet_group"], - "DBSubnetGroupName": ["subnet_name"], - "DBSubnetGroupDTO": ["DBSubnetGroup"], - "EC2SecurityGroupId": ["id"], - "EC2SecurityGroupName": ["name"], - "EC2SubnetGroupOwnerId": ["owner_id"], - "EventCategoriesList": ["event_categories"], - "HttpEndpointEnabled": ["enable_http_endpoint"], - "IAMDatabaseAuthenticationEnabled": [ - "enable_iam_database_authentication", - "iam_auth", - ], - "MultiAZ": ["is_multi_az"], - "OptionGroupDTO": ["OptionGroup"], - "ReadReplicaSourceDBInstanceIdentifier": ["source_db_identifier"], - "S3Bucket": ["s3_bucket_name"], - "SourceIdsList": ["source_ids"], - "TagList": ["tags"], - "TargetGroupArn": ["arn"], - "TargetGroupName": ["group_name"], -} - - -class Engine: - def __init__(self, name: str, version: str) -> None: - self.name = name - self.version = version - - def __str__(self) -> str: - return self.name - - -class DBInstanceDTO: - def __init__(self, instance: DBInstance) -> None: - self.db_instance = instance - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.db_instance.__getattribute__(name) - - @property - def engine(self) -> Engine: - return Engine(self.db_instance.engine, self.db_instance.engine_version) - - @property - def master_user_secret(self) -> Optional[Dict[str, Any]]: - secret_dict = self.db_instance.master_user_secret() - manage_master_user_password = self.db_instance.manage_master_user_password - return secret_dict if manage_master_user_password else None - - @property - def vpc_security_group_membership_list(self) -> List[Dict[str, Any]]: - groups = [ - { - "Status": "active", - "VpcSecurityGroupId": id_, - } - for id_ in self.db_instance.vpc_security_group_ids - ] - return groups - - @property - def db_parameter_group_status_list(self) -> Any: - groups = self.db_instance.db_parameter_groups() - for group in groups: - # this is hideous - setattr(group, "ParameterApplyStatus", "in-sync") - return groups - - @property - def db_security_group_membership_list(self) -> List[Dict[str, Any]]: - groups = [ - { - "Status": "active", - "DBSecurityGroupName": group, - } - for group in self.db_instance.security_groups - ] - return groups - - @property - def endpoint(self) -> Dict[str, Any]: - return { - "Address": self.db_instance.address, - "Port": self.db_instance.port, - } - - @property - def option_group_memberships(self) -> List[Dict[str, Any]]: - groups = [ - { - "OptionGroupName": self.db_instance.option_group_name, - "Status": "in-sync", - } - ] - return groups - - @property - def read_replica_db_instance_identifiers(self) -> List[str]: - return [replica for replica in self.db_instance.replicas] - - -class DBProxyTargetGroupDTO: - def __init__(self, group: ProxyTargetGroup) -> None: - self.group = group - - @property - def is_default(self) -> bool: - return True - - @property - def status(self) -> str: - return "available" - - @property - def connection_pool_config(self) -> Dict[str, Any]: - return { - "MaxConnectionsPercent": self.group.max_connections, - "MaxIdleConnectionsPercent": self.group.max_idle_connections, - "ConnectionBorrowTimeout": self.group.borrow_timeout, - "SessionPinningFilters": [ - filter_ for filter_ in self.group.session_pinning_filters - ], - } - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.group.__getattribute__(name) - - -class DBProxyTargetDTO: - def __init__(self, target: ProxyTarget, registering: bool = False) -> None: - self.target = target - self.registering = registering - - # terrible hack because get_value tries to pull arn and calls .name which isn't there - @property - def target_arn(self) -> str | None: - return None - - @property - def role(self) -> None: - # We do this because the model right now sets it to "", - # which does get serialized... - return None - - @property - def port(self) -> int: - return 5432 - - @property - def target_health(self) -> Dict[str, Any]: - return { - "State": "REGISTERING" if self.registering else "AVAILABLE", - } - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.target.__getattribute__(name) - - -class OptionGroupDTO: - def __init__(self, group: OptionGroup) -> None: - self.group = group - - @property - def options(self) -> List[Dict[str, Any]]: - return [ - { - "OptionName": name, - "OptionSettings": [ - { - "Name": setting.get("Name"), - "Value": setting.get("Value"), - } - for setting in option_settings - ], - } - for name, option_settings in self.group.options.items() - ] - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.group.__getattribute__(name) - - -class DBSubnetGroupDTO: - def __init__(self, subnet_group: DBSubnetGroup) -> None: - self.subnet_group = subnet_group - - @property - def subnets(self) -> List[Dict[str, Any]]: - subnets = [ - { - "SubnetStatus": "Active", - "SubnetIdentifier": subnet.id, - "SubnetAvailabilityZone": { - "Name": subnet.availability_zone, - "ProvisionedIopsCapable": False, - }, - } - for subnet in self.subnet_group.subnets - ] - return subnets - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.subnet_group.__getattribute__(name) - - -class DBSecurityGroupDTO: - def __init__(self, security_group: DBSecurityGroup) -> None: - self.security_group = security_group - - @property - def ip_ranges(self) -> List[Dict[str, Any]]: - ranges = [ - { - "CIDRIP": ip_range, - "Status": "authorized", - } - for ip_range in self.security_group.ip_ranges - ] - return ranges - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - return self.security_group.__getattribute__(name) - - -class DBSnapshotDTO: - def __init__(self, snapshot: DBSnapshot) -> None: - self.db_snapshot = snapshot - self.db_instance = snapshot.database - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - try: - return self.db_snapshot.__getattribute__(name) - except AttributeError: - pass - return self.db_instance.__getattribute__(name) - - @property - def dbi_resource_id(self) -> str: - return self.db_instance.dbi_resource_id - - @property - def engine(self) -> str: - return self.db_instance.engine - - -class GlobalClusterDTO: - def __init__(self, cluster: GlobalCluster) -> None: - self.cluster = cluster - - @property - def status(self) -> str: - return "available" # this is hardcoded in GlobalCluster.to_xml - - @property - def global_cluster_members(self) -> List[Dict[str, Any]]: - readers = [ - reader.db_cluster_arn - for reader in self.cluster.members - if not reader.is_writer - ] - members = [ - { - "DBClusterArn": member.db_cluster_arn, - "IsWriter": True if member.is_writer else False, - "DBClusterParameterGroupStatus": "in-sync", - "PromotionTier": 1, - # I don't think this is correct, but current test assert on it being empty for non writers - "Readers": [], - } - for member in self.members - ] - for member in members: - if member["IsWriter"]: - member["Readers"] = readers - else: - member["GlobalWriteForwardingStatus"] = "disabled" - return members - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - return self.cluster.__getattribute__(name) - - -class DBClusterDTO: - def __init__(self, cluster: DBCluster, creating: bool = False) -> None: - self.cluster = cluster - self.creating = creating - - def master_user_secret(self) -> Optional[Dict[str, Any]]: - secret_dict = self.cluster.master_user_secret() - manage_master_user_password = self.cluster.manage_master_user_password - return secret_dict if manage_master_user_password else None - - @property - def db_cluster_parameter_group(self) -> str: - return self.cluster.parameter_group - - @property - def status(self) -> str: - return "creating" if self.creating else self.cluster.status - - @property - def associated_roles(self) -> List[Dict[str, Any]]: - return [] - - @property - def scaling_configuration_info(self) -> Dict[str, Any]: - configuration = self.cluster.scaling_configuration or {} - info = { - "MinCapacity": configuration.get("min_capacity"), - "MaxCapacity": configuration.get("max_capacity"), - "AutoPause": configuration.get("auto_pause"), - "SecondsUntilAutoPause": configuration.get("seconds_until_auto_pause"), - "TimeoutAction": configuration.get("timeout_action"), - "SecondsBeforeTimeout": configuration.get("seconds_before_timeout"), - } - return info - - @property - def vpc_security_groups(self) -> List[Dict[str, Any]]: - groups = [ - {"VpcSecurityGroupId": sg_id, "Status": "active"} - for sg_id in self.cluster.vpc_security_group_ids - ] - return groups - - @property - def domain_memberships(self) -> List[str]: - return [] - - @property - def cross_account_clone(self) -> bool: - return False - - @property - def global_write_forwarding_requested(self) -> bool: - # This does not appear to be in the standard response for any clusters - # Docs say it's only for a secondary cluster in aurora global database... - return True if self.cluster.global_write_forwarding_requested else False - - @property - def db_cluster_members(self) -> List[Dict[str, Any]]: - members = [ - { - "DBInstanceIdentifier": member, - "IsClusterWriter": True, - "DBClusterParameterGroupStatus": "in-sync", - "PromotionTier": 1, - } - for member in self.cluster_members - ] - return members - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - return self.cluster.__getattribute__(name) - - -class DBClusterSnapshotDTO: - def __init__(self, snapshot: DBClusterSnapshot) -> None: - self.snapshot = snapshot - self.cluster = DBClusterDTO(snapshot.cluster) - - def __getattribute__(self, name: str) -> Any: - try: - return super().__getattribute__(name) - except AttributeError: - pass - try: - return self.snapshot.__getattribute__(name) - except AttributeError: - pass - return self.cluster.__getattribute__(name) From 9780730d501d672b09407b8dc404150e2fd62b1c Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 5 Feb 2025 15:27:52 -0800 Subject: [PATCH 009/103] [RDS] Add AWS Query protocol request parser Request parameters are now deserialized using the model information from `botocore`, removing the need for the `responses.py` methods to manually pluck parameter values from the request using various helpers (e.g. `_get_param()`, `_get_bool_param()`). --- moto/rds/models.py | 296 ++++++++++++----------- moto/rds/parser.py | 167 +++++++++++++ moto/rds/responses.py | 550 ++++++++++++------------------------------ moto/rds/serialize.py | 68 +++++- moto/rds/utils.py | 64 +---- 5 files changed, 544 insertions(+), 601 deletions(-) create mode 100644 moto/rds/parser.py diff --git a/moto/rds/models.py b/moto/rds/models.py index db0f78e4ccc8..55b3f66628b8 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -52,11 +52,11 @@ SubscriptionAlreadyExistError, SubscriptionNotFoundError, ) +from .serialize import XFormedAttributeAccessMixin from .utils import ( ClusterEngine, DbInstanceEngine, FilterDef, - XFormedAttributeAccessMixin, apply_filter, merge_filters, valid_preferred_maintenance_window, @@ -81,20 +81,27 @@ def tags(self) -> List[Dict[str, str]]: return self._tags @tags.setter - def tags(self, value: List[Dict[str, str]]) -> None: - self._tags = value + def tags(self, value: Optional[List[Dict[str, str]]]) -> None: + if value is None: + value = [] + # Tags may come in as XFormedDict and we want a regular dict. + coerced = [{"Key": tag["Key"], "Value": tag["Value"]} for tag in value] + self._tags = coerced @property def tag_list(self) -> List[Dict[str, str]]: - return self._tags + return self.tags def get_tags(self) -> List[Dict[str, str]]: return self.tags def add_tags(self, tags: List[Dict[str, str]]) -> List[Dict[str, str]]: new_keys = [tag_set["Key"] for tag_set in tags] - self.tags = [tag_set for tag_set in self.tags if tag_set["Key"] not in new_keys] - self.tags.extend(tags) + updated_tags = [ + tag_set for tag_set in self.tags if tag_set["Key"] not in new_keys + ] + updated_tags.extend(tags) + self.tags = updated_tags return self.tags def remove_tags(self, tag_keys: List[str]) -> None: @@ -218,8 +225,8 @@ def __init__( global_cluster_identifier: str, engine: str, engine_version: Optional[str], - storage_encrypted: Optional[str], - deletion_protection: Optional[str], + storage_encrypted: Optional[bool], + deletion_protection: Optional[bool], ): super().__init__(backend) self.global_cluster_identifier = global_cluster_identifier @@ -228,14 +235,10 @@ def __init__( self.engine_version = engine_version or DBCluster.default_engine_version( self.engine ) - self.storage_encrypted = ( - storage_encrypted and storage_encrypted.lower() == "true" - ) + self.storage_encrypted = storage_encrypted if self.storage_encrypted is None: self.storage_encrypted = False - self.deletion_protection = ( - deletion_protection and deletion_protection.lower() == "true" - ) + self.deletion_protection = deletion_protection if self.deletion_protection is None: self.deletion_protection = False self.members: List[DBCluster] = [] @@ -294,7 +297,7 @@ class DBCluster(RDSBaseModel): def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: Any): super().__init__(backend) - self.db_name = kwargs.get("db_name") + self.database_name = kwargs.get("database_name") self.db_cluster_identifier = db_cluster_identifier self.db_cluster_instance_class = kwargs.get("db_cluster_instance_class") self.deletion_protection = kwargs.get("deletion_protection") @@ -365,7 +368,9 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An default_pg = ( "default.neptune1.3" if self.engine == "neptune" else "default.aurora8.0" ) - self.parameter_group = kwargs.get("parameter_group") or default_pg + self.parameter_group = ( + kwargs.get("db_cluster_parameter_group_name") or default_pg + ) self.subnet_group = kwargs.get("db_subnet_group_name") or "default" self.url_identifier = "".join( random.choice(string.ascii_lowercase + string.digits) for _ in range(12) @@ -380,7 +385,9 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An ) self.preferred_maintenance_window = "wed:02:40-wed:03:10" # This should default to the default security group - self._vpc_security_group_ids: List[str] = kwargs["vpc_security_group_ids"] + self._vpc_security_group_ids: List[str] = kwargs.get( + "vpc_security_group_ids", [] + ) self.hosted_zone_id = "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(14) ) @@ -485,10 +492,6 @@ def master_user_password(self, val: str) -> None: ) self._master_user_password = val - @property - def database_name(self) -> Optional[str]: - return self.db_name - @property def db_subnet_group(self) -> str: return self.subnet_group @@ -746,12 +749,46 @@ class DBInstance(CloudFormationModel, RDSBaseModel): resource_type = "db" - def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: Any): + def __init__( + self, + backend: RDSBackend, + db_instance_identifier: str, + db_instance_class: str, + engine: str, + port: Optional[int] = None, + allocated_storage: Optional[int] = None, + backup_retention_period: int = 1, + character_set_name: Optional[str] = None, + auto_minor_version_upgrade: bool = True, + db_name: Optional[str] = None, + db_security_groups: Optional[List[str]] = None, + db_subnet_group_name: Optional[str] = None, + db_cluster_identifier: Optional[str] = None, + db_parameter_group_name: Optional[str] = None, + copy_tags_to_snapshot: bool = False, + iops: Optional[str] = None, + master_username: Optional[str] = None, + master_user_password: Optional[str] = None, + multi_az: bool = False, + license_model: str = "general-public-license", + preferred_backup_window: str = "13:14-13:44", + preferred_maintenance_window: str = "wed:06:38-wed:07:08", + publicly_accessible: Optional[bool] = None, + source_db_instance_identifier: Optional[str] = None, + storage_type: Optional[str] = None, + storage_encrypted: bool = False, + tags: Optional[List[Dict[str, str]]] = None, + vpc_security_group_ids: Optional[List[str]] = None, + deletion_protection: bool = False, + option_group_name: Optional[str] = None, + enable_cloudwatch_logs_exports: Optional[List[str]] = None, + **kwargs: Any, + ) -> None: super().__init__(backend) self.status = "available" self.is_replica = False self.replicas: List[str] = [] - self.engine: str = kwargs["engine"] + self.engine = engine if self.engine not in DbInstanceEngine.valid_db_instance_engine(): raise InvalidParameterValue( f"Value {self.engine} for parameter Engine is invalid. Reason: engine {self.engine} not supported" @@ -759,17 +796,17 @@ def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: A self.engine_version = kwargs.get("engine_version", None) if not self.engine_version and self.engine in self.default_engine_versions: self.engine_version = self.default_engine_versions[self.engine] - self.iops = kwargs.get("iops") - self.storage_encrypted = kwargs.get("storage_encrypted", False) + self.iops = iops + self.storage_encrypted = storage_encrypted if self.storage_encrypted: self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") else: self.kms_key_id = kwargs.get("kms_key_id") - self.storage_type = kwargs.get("storage_type") + self.storage_type = storage_type if self.storage_type is None: self.storage_type = DBInstance.default_storage_type(iops=self.iops) - self.master_username = kwargs.get("master_username") - self.master_user_password = kwargs.get("master_user_password") + self.master_username = master_username + self.master_user_password = master_user_password self.master_user_secret_kms_key_id = kwargs.get("master_user_secret_kms_key_id") self.master_user_secret_status = kwargs.get( "master_user_secret_status", "active" @@ -777,53 +814,43 @@ def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: A self.manage_master_user_password = kwargs.get( "manage_master_user_password", False ) - self.auto_minor_version_upgrade = kwargs.get("auto_minor_version_upgrade") - if self.auto_minor_version_upgrade is None: - self.auto_minor_version_upgrade = True - self.allocated_storage = kwargs.get("allocated_storage") + self.auto_minor_version_upgrade = auto_minor_version_upgrade + self.allocated_storage = allocated_storage if self.allocated_storage is None: self.allocated_storage = DBInstance.default_allocated_storage( engine=self.engine, storage_type=self.storage_type ) - self.db_cluster_identifier: Optional[str] = kwargs.get("db_cluster_identifier") + self.db_cluster_identifier: Optional[str] = db_cluster_identifier self.db_instance_identifier = db_instance_identifier - self.source_db_identifier: Optional[str] = kwargs.get("source_db_identifier") - self.db_instance_class = kwargs.get("db_instance_class") - self.port = kwargs.get("port") + self.source_db_identifier = source_db_instance_identifier + self.db_instance_class = db_instance_class + self.port = port if self.port is None: self.port = DBInstance.default_port(self.engine) - self.db_name = kwargs.get("db_name") + self.db_name = db_name self.instance_create_time = iso_8601_datetime_with_milliseconds() - self.publicly_accessible = kwargs.get("publicly_accessible") - if self.publicly_accessible is None: - self.publicly_accessible = False - self.copy_tags_to_snapshot = kwargs.get("copy_tags_to_snapshot") - if self.copy_tags_to_snapshot is None: - self.copy_tags_to_snapshot = False - self.backup_retention_period = kwargs.get("backup_retention_period") - if self.backup_retention_period is None: - self.backup_retention_period = 1 + self.publicly_accessible = publicly_accessible + self.copy_tags_to_snapshot = copy_tags_to_snapshot + self.backup_retention_period = backup_retention_period self.availability_zone = kwargs.get("availability_zone") if not self.availability_zone: self.availability_zone = f"{self.region}a" - self.multi_az = kwargs.get("multi_az") - if self.multi_az is None: - self.multi_az = False - self.db_subnet_group_name = kwargs.get("db_subnet_group_name") + self.multi_az = multi_az + self.db_subnet_group_name = db_subnet_group_name self.db_subnet_group = None if self.db_subnet_group_name: self.db_subnet_group = rds_backends[self.account_id][ self.region ].describe_db_subnet_groups(self.db_subnet_group_name)[0] - self.security_groups = kwargs.get("security_groups", []) - self.vpc_security_group_ids = kwargs.get("vpc_security_group_ids", []) + self.db_security_groups = db_security_groups or [] + self.vpc_security_group_ids = vpc_security_group_ids or [] if not self.vpc_security_group_ids: ec2_backend = ec2_backends[self.account_id][self.region] default_vpc = ec2_backend.default_vpc default_sg = ec2_backend.get_default_security_group(default_vpc.id) self.vpc_security_group_ids.append(default_sg.id) # type: ignore - self.preferred_maintenance_window = kwargs.get("preferred_maintenance_window") - self.preferred_backup_window = kwargs.get("preferred_backup_window") + self.preferred_maintenance_window = preferred_maintenance_window.lower() + self.preferred_backup_window = preferred_backup_window msg = valid_preferred_maintenance_window( self.preferred_maintenance_window, self.preferred_backup_window, @@ -831,7 +858,7 @@ def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: A if msg: raise RDSClientError("InvalidParameterValue", msg) - self.db_parameter_group_name = kwargs.get("db_parameter_group_name", "") + self.db_parameter_group_name = db_parameter_group_name if ( self.db_parameter_group_name and not self.is_default_parameter_group(self.db_parameter_group_name) @@ -840,8 +867,8 @@ def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: A ): raise DBParameterGroupNotFoundError(self.db_parameter_group_name) - self.license_model = kwargs.get("license_model", "general-public-license") - self.option_group_name = kwargs.get("option_group_name", "") + self.license_model = license_model + self.option_group_name = option_group_name self.option_group_supplied = self.option_group_name is not None if ( self.option_group_name @@ -856,20 +883,17 @@ def __init__(self, backend: RDSBackend, db_instance_identifier: str, **kwargs: A } if not self.option_group_name and self.engine in self.default_option_groups: self.option_group_name = self.default_option_groups[self.engine] - self.character_set_name = kwargs.get("character_set_name", None) + self.character_set_name = character_set_name self.enable_iam_database_authentication = kwargs.get( "enable_iam_database_authentication", False ) if self.enable_iam_database_authentication is None: self.enable_iam_database_authentication = False self.dbi_resource_id = "db-M5ENSHXFPU6XHZ4G4ZEI5QIO2U" - self.tags = kwargs.get("tags", []) - self.deletion_protection = kwargs.get("deletion_protection", False) - if self.deletion_protection is None: - self.deletion_protection = False - self.enabled_cloudwatch_logs_exports = ( - kwargs.get("enable_cloudwatch_logs_exports") or [] - ) + self.tags = tags or [] + self.deletion_protection = deletion_protection + + self.enabled_cloudwatch_logs_exports = enable_cloudwatch_logs_exports or [] @property def name(self) -> str: @@ -895,8 +919,8 @@ def db_parameter_groups(self) -> List[DBParameterGroup]: return [ DBParameterGroup( backend=self.backend, - name=db_parameter_group_name, - family=db_family, + db_parameter_group_name=db_parameter_group_name, + db_parameter_group_family=db_family, description=description, tags=[], ) @@ -962,7 +986,7 @@ def db_security_group_membership_list(self) -> List[Dict[str, Any]]: # type: ig "Status": "active", "DBSecurityGroupName": group, } - for group in self.security_groups + for group in self.db_security_groups ] return groups @@ -993,7 +1017,7 @@ def db_instance_port(self) -> Optional[int]: @property def read_replica_source_db_instance_identifier(self) -> Optional[str]: - return self.source_db_identifier + return self.source_db_instance_identifier @property def iam_database_authentication_enabled(self) -> bool: @@ -1018,7 +1042,7 @@ def update(self, db_kwargs: Dict[str, Any]) -> None: if value is not None: setattr(self, key, value) - cwl_exports = db_kwargs.get("cloudwatch_logs_exports_config") or {} + cwl_exports = db_kwargs.get("cloudwatch_logs_export_configuration") or {} for exp in cwl_exports.get("DisableLogTypes", []): self.enabled_cloudwatch_logs_exports.remove(exp) self.enabled_cloudwatch_logs_exports.extend( @@ -1136,7 +1160,7 @@ def create_from_cloudformation_json( # type: ignore[misc] "port": properties.get("Port", 3306), "publicly_accessible": properties.get("PubliclyAccessible"), "copy_tags_to_snapshot": properties.get("CopyTagsToSnapshot"), - "security_groups": security_groups, + "db_security_groups": security_groups, "storage_encrypted": properties.get("StorageEncrypted"), "storage_type": properties.get("StorageType"), "tags": properties.get("Tags"), @@ -1147,7 +1171,7 @@ def create_from_cloudformation_json( # type: ignore[misc] source_db_identifier = properties.get("SourceDBInstanceIdentifier") if source_db_identifier: # Replica - db_kwargs["source_db_identifier"] = source_db_identifier + db_kwargs["source_db_instance_identifier"] = source_db_identifier database = rds_backend.create_db_instance_read_replica(db_kwargs) else: database = rds_backend.create_db_instance(db_kwargs) @@ -1709,7 +1733,7 @@ def promote_read_replica(self, db_kwargs: Dict[str, Any]) -> DBInstance: def create_db_instance_read_replica(self, db_kwargs: Dict[str, Any]) -> DBInstance: database_id = db_kwargs["db_instance_identifier"] - source_database_id = db_kwargs["source_db_identifier"] + source_database_id = db_kwargs["source_db_instance_identifier"] primary = self.find_db_from_id(source_database_id) if self.arn_regex.match(source_database_id): db_kwargs["backend"] = self @@ -1769,11 +1793,12 @@ def modify_db_instance( self.databases[db_instance_identifier] = database preferred_backup_window = db_kwargs.get("preferred_backup_window") preferred_maintenance_window = db_kwargs.get("preferred_maintenance_window") - msg = valid_preferred_maintenance_window( - preferred_maintenance_window, preferred_backup_window - ) - if msg: - raise RDSClientError("InvalidParameterValue", msg) + if preferred_maintenance_window or preferred_backup_window: + msg = valid_preferred_maintenance_window( + preferred_maintenance_window, preferred_backup_window + ) + if msg: + raise RDSClientError("InvalidParameterValue", msg) if db_kwargs.get("rotate_master_user_password") and db_kwargs.get( "apply_immediately" ): @@ -1925,7 +1950,7 @@ def delete_db_instance( self.create_auto_snapshot(db_instance_identifier, db_snapshot_name) database = self.databases.pop(db_instance_identifier) if database.is_replica: - primary = self.find_db_from_id(database.source_db_identifier) # type: ignore + primary = self.find_db_from_id(database.source_db_instance_identifier) # type: ignore primary.remove_replica(database) if database.db_cluster_identifier in self.clusters: self.clusters[database.db_cluster_identifier].cluster_members.remove( @@ -2012,7 +2037,7 @@ def delete_subnet_group(self, subnet_name: str) -> DBSubnetGroup: raise DBSubnetGroupNotFoundError(subnet_name) def create_option_group(self, option_group_kwargs: Dict[str, Any]) -> OptionGroup: - option_group_id = option_group_kwargs["name"] + option_group_id = option_group_kwargs["option_group_name"] # This list was verified against the AWS Console on 14 Dec 2022 # Having an automated way (using the CLI) would be nice, but AFAICS that's not possible # @@ -2043,8 +2068,8 @@ def create_option_group(self, option_group_kwargs: Dict[str, Any]) -> OptionGrou f"An option group named {option_group_id} already exists.", ) if ( - "description" not in option_group_kwargs - or not option_group_kwargs["description"] + "option_group_description" not in option_group_kwargs + or not option_group_kwargs["option_group_description"] ): raise RDSClientError( "InvalidParameterValue", @@ -2091,25 +2116,26 @@ def describe_option_groups( option_group_list = [] for option_group in self.option_groups.values(): if ( - option_group_kwargs["name"] - and option_group.name != option_group_kwargs["name"] + option_group_kwargs["option_group_name"] + and option_group.name != option_group_kwargs["option_group_name"] ): continue - elif ( - option_group_kwargs["engine_name"] - and option_group.engine_name != option_group_kwargs["engine_name"] - ): + elif option_group_kwargs.get( + "engine_name" + ) and option_group.engine_name != option_group_kwargs.get("engine_name"): continue - elif ( - option_group_kwargs["major_engine_version"] - and option_group.major_engine_version - != option_group_kwargs["major_engine_version"] + elif option_group_kwargs.get( + "major_engine_version" + ) and option_group.major_engine_version != option_group_kwargs.get( + "major_engine_version" ): continue else: option_group_list.append(option_group) if not len(option_group_list): - raise OptionGroupNotFoundFaultError(option_group_kwargs["name"]) + raise OptionGroupNotFoundFaultError( + option_group_kwargs["option_group_name"] + ) return option_group_list @staticmethod @@ -2160,7 +2186,7 @@ def modify_option_group( self, option_group_name: str, options_to_include: Optional[List[Dict[str, Any]]] = None, - options_to_remove: Optional[List[Dict[str, Any]]] = None, + options_to_remove: Optional[List[str]] = None, ) -> OptionGroup: if option_group_name not in self.option_groups: raise OptionGroupNotFoundFaultError(option_group_name) @@ -2178,7 +2204,7 @@ def modify_option_group( def create_db_parameter_group( self, db_parameter_group_kwargs: Dict[str, Any] ) -> DBParameterGroup: - db_parameter_group_id = db_parameter_group_kwargs["name"] + db_parameter_group_id = db_parameter_group_kwargs["db_parameter_group_name"] if db_parameter_group_id in self.db_parameter_groups: raise RDSClientError( "DBParameterGroupAlreadyExistsFault", @@ -2189,10 +2215,10 @@ def create_db_parameter_group( "InvalidParameterValue", "The parameter Description must be provided and must not be blank.", ) - if not db_parameter_group_kwargs.get("family"): + if not db_parameter_group_kwargs.get("db_parameter_group_family"): raise RDSClientError( "InvalidParameterValue", - "The parameter DBParameterGroupName must be provided and must not be blank.", + "The parameter DBParameterGroupFamily must be provided and must not be blank.", ) db_parameter_group = DBParameterGroup(self, **db_parameter_group_kwargs) self.db_parameter_groups[db_parameter_group_id] = db_parameter_group @@ -2204,8 +2230,10 @@ def describe_db_parameter_groups( db_parameter_group_list = [] for db_parameter_group in self.db_parameter_groups.values(): if not db_parameter_group_kwargs.get( - "name" - ) or db_parameter_group.name == db_parameter_group_kwargs.get("name"): + "db_parameter_group_name" + ) or db_parameter_group.name == db_parameter_group_kwargs.get( + "db_parameter_group_name" + ): db_parameter_group_list.append(db_parameter_group) else: continue @@ -2276,7 +2304,7 @@ def modify_db_cluster(self, kwargs: Dict[str, Any]) -> DBCluster: "You must specify apply immediately when rotating the master user password.", ) - kwargs["db_cluster_identifier"] = kwargs.pop("new_db_cluster_identifier") + kwargs["db_cluster_identifier"] = kwargs.pop("new_db_cluster_identifier", None) for k, v in kwargs.items(): if k == "db_cluster_parameter_group_name": k = "parameter_group" @@ -2701,8 +2729,8 @@ def create_global_cluster( source_db_cluster_identifier: Optional[str], engine: Optional[str], engine_version: Optional[str], - storage_encrypted: Optional[str], - deletion_protection: Optional[str], + storage_encrypted: Optional[bool], + deletion_protection: Optional[bool], ) -> GlobalCluster: source_cluster = None if source_db_cluster_identifier is not None: @@ -2772,8 +2800,8 @@ def modify_db_snapshot_attribute( self, db_snapshot_identifier: str, attribute_name: str, - values_to_add: Optional[Dict[str, Dict[str, str]]] = None, - values_to_remove: Optional[Dict[str, Dict[str, str]]] = None, + values_to_add: Optional[List[str]] = None, + values_to_remove: Optional[List[str]] = None, ) -> List[Dict[str, Any]]: snapshot = self.describe_db_snapshots( db_instance_identifier=None, db_snapshot_identifier=db_snapshot_identifier @@ -2783,20 +2811,20 @@ def modify_db_snapshot_attribute( if attribute["AttributeName"] == attribute_name: attribute_present = True if values_to_add: - attribute["AttributeValues"] = list( - attribute["AttributeValues"] - ) + list(values_to_add["AttributeValue"].values()) + attribute["AttributeValues"] = ( + list(attribute["AttributeValues"]) + values_to_add + ) if values_to_remove: attribute["AttributeValues"] = [ i for i in attribute["AttributeValues"] - if i not in values_to_remove["AttributeValue"].values() + if i not in values_to_remove ] if not attribute_present and values_to_add: snapshot.attributes.append( { "AttributeName": attribute_name, - "AttributeValues": values_to_add["AttributeValue"].values(), + "AttributeValues": values_to_add, } ) return snapshot.attributes @@ -2814,8 +2842,8 @@ def modify_db_cluster_snapshot_attribute( self, db_cluster_snapshot_identifier: str, attribute_name: str, - values_to_add: Optional[Dict[str, Dict[str, str]]] = None, - values_to_remove: Optional[Dict[str, Dict[str, str]]] = None, + values_to_add: Optional[List[str]] = None, + values_to_remove: Optional[List[str]] = None, ) -> List[Dict[str, Any]]: snapshot = self.describe_db_cluster_snapshots( db_cluster_identifier=None, @@ -2826,20 +2854,20 @@ def modify_db_cluster_snapshot_attribute( if attribute["AttributeName"] == attribute_name: attribute_present = True if values_to_add: - attribute["AttributeValues"] = list( - attribute["AttributeValues"] - ) + list(values_to_add["AttributeValue"].values()) + attribute["AttributeValues"] = ( + list(attribute["AttributeValues"]) + values_to_add + ) if values_to_remove: attribute["AttributeValues"] = [ i for i in attribute["AttributeValues"] - if i not in values_to_remove["AttributeValue"].values() + if i not in values_to_remove ] if not attribute_present and values_to_add: snapshot.attributes.append( { "AttributeName": attribute_name, - "AttributeValues": values_to_add["AttributeValue"].values(), + "AttributeValues": values_to_add, } ) return snapshot.attributes @@ -2980,16 +3008,16 @@ class OptionGroup(RDSBaseModel): def __init__( self, backend: RDSBackend, - name: str, + option_group_name: str, engine_name: str, major_engine_version: str, - description: Optional[str] = None, + option_group_description: Optional[str] = None, ): super().__init__(backend) self.engine_name = engine_name self.major_engine_version = major_engine_version - self.description = description - self._name = name + self.description = option_group_description + self._name = option_group_name self.vpc_and_non_vpc_instance_memberships = False self._options: Dict[str, Any] = {} self.vpcId = "null" @@ -3015,17 +3043,13 @@ def options(self) -> List[Dict[str, Any]]: # type: ignore[misc] for name, option_settings in self._options.items() ] - def remove_options(self, options_to_remove: Any) -> None: + def remove_options(self, options_to_remove: List[str]) -> None: for option in options_to_remove: - if isinstance(option, str): - self._options.pop(option, None) + self._options.pop(option, None) - def add_options(self, options_to_add: Any) -> None: + def add_options(self, options_to_add: List[Dict[str, Any]]) -> None: for option in options_to_add: - if isinstance(option, str): - self._options[option] = {} - elif isinstance(option, dict): - self._options[option["OptionName"]] = option["OptionSettings"] + self._options[option["OptionName"]] = option.get("OptionSettings", {}) class DBParameterGroup(CloudFormationModel, RDSBaseModel): @@ -3034,16 +3058,16 @@ class DBParameterGroup(CloudFormationModel, RDSBaseModel): def __init__( self, backend: RDSBackend, - name: str, + db_parameter_group_name: str, description: str, - family: Optional[str], - tags: List[Dict[str, str]], + db_parameter_group_family: Optional[str], + tags: Optional[List[Dict[str, str]]] = None, ): super().__init__(backend) - self._name = name + self._name = db_parameter_group_name self.description = description - self.family = family - self.tags = tags + self.family = db_parameter_group_family + self.tags = tags or [] self.parameters: Dict[str, Any] = defaultdict(dict) @property @@ -3081,8 +3105,8 @@ def create_from_cloudformation_json( # type: ignore[misc] db_parameter_group_kwargs = { "description": properties["Description"], - "family": properties["Family"], - "name": resource_name.lower(), + "db_parameter_group_family": properties["Family"], + "db_parameter_group_name": resource_name.lower(), "tags": properties.get("Tags"), } db_parameter_group_parameters = [] diff --git a/moto/rds/parser.py b/moto/rds/parser.py new file mode 100644 index 000000000000..906719231511 --- /dev/null +++ b/moto/rds/parser.py @@ -0,0 +1,167 @@ +# mypy: ignore-errors +from collections import OrderedDict +from collections.abc import Mapping, MutableMapping + +from botocore import xform_name +from botocore.utils import parse_timestamp + +UNDEFINED = object() # Sentinel to signal the absence of a field in the input + + +class QueryParser: + TIMESTAMP_FORMAT = "iso8601" + + MAP_TYPE = dict + + def __init__(self, timestamp_parser=None, map_type=None): + if timestamp_parser is None: + timestamp_parser = parse_timestamp + self._timestamp_parser = timestamp_parser + if map_type is not None: + self.MAP_TYPE = map_type + + def parse(self, request_dict, operation_model): + shape = operation_model.input_shape + parsed = self._do_parse(request_dict, shape) + return parsed if parsed is not UNDEFINED else {} + + def _do_parse(self, request_dict, shape): + parsed = self._parse_shape(shape, request_dict["query_params"]) + return parsed if parsed is not UNDEFINED else {} + + def _parse_shape(self, shape, node, prefix=""): + handler = getattr(self, "_handle_%s" % shape.type_name, self._default_handle) + return handler(shape, node, prefix) + + def _gonna_recurse(self, query_params, prefix): + if prefix == "": + return False + return not any([param_key.startswith(prefix) for param_key in query_params]) + + def _handle_structure(self, shape, query_params, prefix=""): + if self._gonna_recurse(query_params, prefix): + return UNDEFINED + parsed = self.MAP_TYPE() + members = shape.members + for member_name in members: + member_shape = members[member_name] + member_prefix = self._get_serialized_name(member_shape, member_name) + if prefix: + member_prefix = "%s.%s" % (prefix, member_prefix) + value = self._parse_shape(member_shape, query_params, member_prefix) + parsed_key = self._parsed_key_name(member_name) + if value is not UNDEFINED: + parsed[parsed_key] = value + return parsed if parsed != {} else UNDEFINED + + def _handle_list(self, shape, node, prefix=""): + # The query protocol serializes empty lists as an empty string. + value = self._parse_shape(shape.member, node, prefix) + if value == "": + return [] + + list_name = shape.member.serialization.get("name", "member") + list_prefix = f"{prefix}.{list_name}" + parsed_list = [] + i = 1 + while True: + element_name = f"{list_prefix}.{i}" + element_shape = shape.member + value = self._parse_shape(element_shape, node, element_name) + if value is UNDEFINED: + break + parsed_list.append(value) + i += 1 + return parsed_list if parsed_list != [] else UNDEFINED + + def _handle_timestamp(self, shape, query_params, prefix=""): + value = self._default_handle(shape, query_params, prefix) + return value if value is UNDEFINED else self._timestamp_parser(value) + + def _handle_boolean(self, shape, query_params, prefix=""): + value = self._default_handle(shape, query_params, prefix) + try: + return value.lower() == "true" + except AttributeError: + pass + return UNDEFINED + + def _handle_integer(self, shape, query_params, prefix=""): + value = self._default_handle(shape, query_params, prefix) + return value if value is UNDEFINED else int(value) + + def _handle_float(self, shape, query_params, prefix=""): + value = self._default_handle(shape, query_params, prefix) + return value if value is UNDEFINED else float(value) + + _handle_double = _handle_float + _handle_long = _handle_integer + + def _default_handle(self, shape, value, prefix=""): + default_value = shape.metadata.get("default", UNDEFINED) + return value.get(prefix, default_value) + + def _get_serialized_name(self, shape, default_name): + return shape.serialization.get("name", default_name) + + def _parsed_key_name(self, member_name): + key_name = member_name + return key_name + + +class XFormedDict(MutableMapping): + """ + A Pascal/Snake case-insensitive ``dict``-like object. + + xfd = XFormedDict() + xfd['DBInstanceIdentifier'] = 'identifier' + xfd['DBInstanceIdentifier'] == 'identifier' # True + xfd['db_instance_identifier'] == 'identifier' # True + list(xfd) == ['db_instance_identifier'] # True + + """ + + def __init__(self, data=None, **kwargs): + self._xform_cache = {} + self._store = OrderedDict() + if data is None: + data = {} + self.update(data, **kwargs) + + def _xformed(self, key: str): + return xform_name(key, _xform_cache=self._xform_cache) + + def __setitem__(self, key, value): + # Use the xformed key for lookups, but store the actual + # key alongside the value. + self._store[self._xformed(key)] = (key, value) + + def __getitem__(self, key: str): + return self._store[self._xformed(key)][1] + + def __delitem__(self, key): + del self._store[self._xformed(key)] + + def __iter__(self): + return (key for key in self._store.keys()) + + def __len__(self): + return len(self._store) + + def original_items(self): + """Like iteritems(), but with all PascalCase keys.""" + return ((keyval[0], keyval[1]) for (_, keyval) in self._store.items()) + + def __eq__(self, other): + if isinstance(other, Mapping): + other = XFormedDict(other) + else: + return NotImplemented + # Compare xformed + return dict(self.items()) == dict(other.items()) + + def copy(self): + return XFormedDict(self._store.values()) + + def __repr__(self): + return "%s(%r)" % (self.__class__.__name__, dict(self.items())) diff --git a/moto/rds/responses.py b/moto/rds/responses.py index dfae0aebdcf4..1a346260b19e 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -1,5 +1,4 @@ -from collections import defaultdict -from typing import Any, Dict, Iterable, List, Optional, Tuple +from typing import Any, List, Optional, Tuple from botocore.awsrequest import AWSPreparedRequest from werkzeug.wrappers import Request @@ -11,6 +10,9 @@ from .exceptions import DBParameterGroupNotFoundError, RDSClientError from .models import RDSBackend, rds_backends +from .parser import QueryParser, XFormedDict +from .serialize import QuerySerializer +from .utils import get_service_model def normalize_request(request: AWSPreparedRequest) -> Request: @@ -42,29 +44,25 @@ def global_backend(self) -> RDSBackend: return rds_backends[self.current_account]["us-east-1"] def _dispatch(self, request: Any, full_url: str, headers: Any) -> TYPE_RESPONSE: - # return super()._dispatch(request, full_url, headers) self.setup_class(request, full_url, headers) if isinstance(request, AWSPreparedRequest): request = normalize_request(request) - from .serialize import QuerySerializer - from .utils import get_service_model - self.action = request.values["Action"] service_model = get_service_model(self.service_name) self.operation_model = service_model.operation_model(self.action) - # parser = QueryParser() - # parsed = parser.get_parameters( - # {"query_params": request.values}, self.operation_model - # ) - # self.parameters = xform_dict(parsed) + parser = QueryParser(map_type=XFormedDict) # type: ignore[no-untyped-call] + self.parameters = parser.parse( + {"query_params": request.values}, + self.operation_model, # type: ignore[no-untyped-call] + ) self.serializer = QuerySerializer( self.operation_model, - {"request-id": "request-id"}, + {"request_id": "request-id"}, pretty_print=settings.PRETTIFY_RESPONSES, ) try: @@ -77,261 +75,21 @@ def serialize(self, result: Any) -> TYPE_RESPONSE: serialized = self.serializer.serialize_to_response(result) return serialized["status_code"], serialized["headers"], serialized["body"] - def _get_db_kwargs(self) -> Dict[str, Any]: - args = { - "auto_minor_version_upgrade": self._get_param("AutoMinorVersionUpgrade"), - "allocated_storage": self._get_int_param("AllocatedStorage"), - "availability_zone": self._get_param("AvailabilityZone"), - "backup_retention_period": self._get_param("BackupRetentionPeriod"), - "copy_tags_to_snapshot": self._get_bool_param("CopyTagsToSnapshot"), - "db_instance_class": self._get_param("DBInstanceClass"), - "db_cluster_identifier": self._get_param("DBClusterIdentifier"), - "db_instance_identifier": self._get_param("DBInstanceIdentifier"), - "db_name": self._get_param("DBName"), - "db_parameter_group_name": self._get_param("DBParameterGroupName"), - "db_snapshot_identifier": self._get_param("DBSnapshotIdentifier"), - "db_subnet_group_name": self._get_param("DBSubnetGroupName"), - "engine": self._get_param("Engine"), - "engine_version": self._get_param("EngineVersion"), - "enable_cloudwatch_logs_exports": self._get_params().get( - "EnableCloudwatchLogsExports" - ), - "cloudwatch_logs_exports_config": self._get_params().get( - "CloudwatchLogsExportConfiguration" - ), - "enable_iam_database_authentication": self._get_bool_param( - "EnableIAMDatabaseAuthentication" - ), - "license_model": self._get_param("LicenseModel"), - "iops": self._get_int_param("Iops"), - "kms_key_id": self._get_param("KmsKeyId"), - "master_user_password": self._get_param("MasterUserPassword"), - "master_username": self._get_param("MasterUsername"), - "manage_master_user_password": self._get_bool_param( - "ManageMasterUserPassword" - ), - "master_user_secret_kms_key_id": self._get_param( - "MasterUserSecretKmsKeyId" - ), - "rotate_master_user_password": self._get_param("RotateMasterUserPassword"), - "multi_az": self._get_bool_param("MultiAZ"), - "option_group_name": self._get_param("OptionGroupName"), - "port": self._get_param("Port"), - "preferred_backup_window": self._get_param( - "PreferredBackupWindow", "13:14-13:44" - ), - "preferred_maintenance_window": self._get_param( - "PreferredMaintenanceWindow", "wed:06:38-wed:07:08" - ).lower(), - "publicly_accessible": self._get_bool_param("PubliclyAccessible"), - "security_groups": self._get_multi_param( - "DBSecurityGroups.DBSecurityGroupName" - ), - "storage_encrypted": self._get_bool_param("StorageEncrypted"), - "storage_type": self._get_param("StorageType", None), - "vpc_security_group_ids": self._get_multi_param( - "VpcSecurityGroupIds.VpcSecurityGroupId" - ), - "tags": list(), - "deletion_protection": self._get_bool_param("DeletionProtection"), - "apply_immediately": self._get_bool_param("ApplyImmediately"), - } - args["tags"] = self.unpack_list_params("Tags", "Tag") - return args - - def _get_modify_db_cluster_kwargs(self) -> Dict[str, Any]: - args = { - "auto_minor_version_upgrade": self._get_param("AutoMinorVersionUpgrade"), - "allocated_storage": self._get_int_param("AllocatedStorage"), - "availability_zone": self._get_param("AvailabilityZone"), - "backup_retention_period": self._get_param("BackupRetentionPeriod"), - "backtrack_window": self._get_param("BacktrackWindow"), - "copy_tags_to_snapshot": self._get_bool_param("CopyTagsToSnapshot"), - "db_instance_class": self._get_param("DBInstanceClass"), - "db_cluster_identifier": self._get_param("DBClusterIdentifier"), - "new_db_cluster_identifier": self._get_param("NewDBClusterIdentifier"), - "db_instance_identifier": self._get_param("DBInstanceIdentifier"), - "db_name": self._get_param("DBName"), - "db_parameter_group_name": self._get_param("DBParameterGroupName"), - "db_cluster_parameter_group_name": self._get_param( - "DBClusterParameterGroupName" - ), - "db_snapshot_identifier": self._get_param("DBSnapshotIdentifier"), - "db_subnet_group_name": self._get_param("DBSubnetGroupName"), - "engine": self._get_param("Engine"), - "engine_version": self._get_param("EngineVersion"), - "enable_cloudwatch_logs_exports": self._get_params().get( - "CloudwatchLogsExportConfiguration" - ), - "enable_iam_database_authentication": self._get_bool_param( - "EnableIAMDatabaseAuthentication" - ), - "enable_http_endpoint": self._get_bool_param("EnableHttpEndpoint"), - "license_model": self._get_param("LicenseModel"), - "iops": self._get_int_param("Iops"), - "kms_key_id": self._get_param("KmsKeyId"), - "master_user_password": self._get_param("MasterUserPassword"), - "master_username": self._get_param("MasterUsername"), - "manage_master_user_password": self._get_bool_param( - "ManageMasterUserPassword" - ), - "master_user_secret_kms_key_id": self._get_param( - "MasterUserSecretKmsKeyId" - ), - "rotate_master_user_password": self._get_param("RotateMasterUserPassword"), - "multi_az": self._get_bool_param("MultiAZ"), - "option_group_name": self._get_param("OptionGroupName"), - "port": self._get_param("Port"), - "preferred_backup_window": self._get_param("PreferredBackupWindow"), - "preferred_maintenance_window": self._get_param( - "PreferredMaintenanceWindow" - ), - "publicly_accessible": self._get_bool_param("PubliclyAccessible"), - "security_groups": self._get_multi_param( - "DBSecurityGroups.DBSecurityGroupName" - ), - "storage_encrypted": self._get_bool_param("StorageEncrypted"), - "storage_type": self._get_param("StorageType", None), - "vpc_security_group_ids": self._get_multi_param( - "VpcSecurityGroupIds.VpcSecurityGroupId" - ), - "tags": list(), - "deletion_protection": self._get_bool_param("DeletionProtection"), - "apply_immediately": self._get_bool_param("ApplyImmediately"), - } - args["tags"] = self.unpack_list_params("Tags", "Tag") - return args - - def _get_db_replica_kwargs(self) -> Dict[str, Any]: - return { - "auto_minor_version_upgrade": self._get_param("AutoMinorVersionUpgrade"), - "availability_zone": self._get_param("AvailabilityZone"), - "db_instance_class": self._get_param("DBInstanceClass"), - "db_instance_identifier": self._get_param("DBInstanceIdentifier"), - "db_subnet_group_name": self._get_param("DBSubnetGroupName"), - "iops": self._get_int_param("Iops"), - # OptionGroupName - "port": self._get_param("Port"), - "publicly_accessible": self._get_bool_param("PubliclyAccessible"), - "source_db_identifier": self._get_param("SourceDBInstanceIdentifier"), - "storage_type": self._get_param("StorageType"), - } - - def _get_option_group_kwargs(self) -> Dict[str, Any]: - return { - "major_engine_version": self._get_param("MajorEngineVersion"), - "description": self._get_param("OptionGroupDescription"), - "engine_name": self._get_param("EngineName"), - "name": self._get_param("OptionGroupName"), - } - - def _get_db_parameter_group_kwargs(self) -> Dict[str, Any]: - return { - "description": self._get_param("Description"), - "family": self._get_param("DBParameterGroupFamily"), - "name": self._get_param("DBParameterGroupName"), - "tags": self.unpack_list_params("Tags", "Tag"), - } - - def _get_db_cluster_kwargs(self) -> Dict[str, Any]: - params = self._get_params() - return { - "availability_zones": self._get_multi_param( - "AvailabilityZones.AvailabilityZone" - ), - "backtrack_window": self._get_int_param("BacktrackWindow"), - "enable_cloudwatch_logs_exports": params.get("EnableCloudwatchLogsExports"), - "enable_iam_database_authentication": self._get_bool_param( - "EnableIAMDatabaseAuthentication" - ), - "db_name": self._get_param("DatabaseName"), - "db_cluster_identifier": self._get_param("DBClusterIdentifier"), - "db_subnet_group_name": self._get_param("DBSubnetGroupName"), - "deletion_protection": self._get_bool_param("DeletionProtection"), - "engine": self._get_param("Engine"), - "engine_version": self._get_param("EngineVersion"), - "engine_mode": self._get_param("EngineMode"), - "allocated_storage": self._get_param("AllocatedStorage"), - "global_cluster_identifier": self._get_param("GlobalClusterIdentifier"), - "iops": self._get_param("Iops"), - "storage_encrypted": self._get_bool_param("StorageEncrypted"), - "enable_global_write_forwarding": self._get_param( - "EnableGlobalWriteForwarding" - ), - "storage_type": self._get_param("StorageType"), - "kms_key_id": self._get_param("KmsKeyId"), - "master_username": self._get_param("MasterUsername"), - "manage_master_user_password": self._get_bool_param( - "ManageMasterUserPassword" - ), - "master_user_secret_kms_key_id": self._get_param( - "MasterUserSecretKmsKeyId" - ), - "master_user_password": self._get_param("MasterUserPassword"), - "network_type": self._get_param("NetworkType"), - "port": self._get_param("Port"), - "parameter_group": self._get_param("DBClusterParameterGroupName"), - "db_cluster_instance_class": self._get_param("DBClusterInstanceClass"), - "enable_http_endpoint": self._get_bool_param("EnableHttpEndpoint"), - "copy_tags_to_snapshot": self._get_bool_param("CopyTagsToSnapshot"), - "tags": self.unpack_list_params("Tags", "Tag"), - "scaling_configuration": self._get_dict_param("ScalingConfiguration."), - "serverless_v2_scaling_configuration": params.get( - "ServerlessV2ScalingConfiguration" - ), - "replication_source_identifier": self._get_param( - "ReplicationSourceIdentifier" - ), - "vpc_security_group_ids": self.unpack_list_params( - "VpcSecurityGroupIds", "VpcSecurityGroupId" - ), - "preferred_backup_window": self._get_param("PreferredBackupWindow"), - "backup_retention_period": self._get_param("BackupRetentionPeriod"), - } - - def _get_export_task_kwargs(self) -> Dict[str, Any]: - return { - "export_task_identifier": self._get_param("ExportTaskIdentifier"), - "source_arn": self._get_param("SourceArn"), - "s3_bucket_name": self._get_param("S3BucketName"), - "iam_role_arn": self._get_param("IamRoleArn"), - "kms_key_id": self._get_param("KmsKeyId"), - "s3_prefix": self._get_param("S3Prefix"), - "export_only": self.unpack_list_params("ExportOnly", "member"), - } - - def _get_event_subscription_kwargs(self) -> Dict[str, Any]: - return { - "subscription_name": self._get_param("SubscriptionName"), - "sns_topic_arn": self._get_param("SnsTopicArn"), - "source_type": self._get_param("SourceType"), - "event_categories": self.unpack_list_params( - "EventCategories", "EventCategory" - ), - "source_ids": self.unpack_list_params("SourceIds", "SourceId"), - "enabled": self._get_bool_param("Enabled"), - "tags": self.unpack_list_params("Tags", "Tag"), - } - - def unpack_list_params(self, label: str, child_label: str) -> List[Dict[str, Any]]: - root = self._get_multi_param_dict(label) or {} - return root.get(child_label, []) - def create_db_instance(self) -> TYPE_RESPONSE: - db_kwargs = self._get_db_kwargs() + db_kwargs = self.parameters database = self.backend.create_db_instance(db_kwargs) result = {"DBInstance": database} return self.serialize(result) def create_db_instance_read_replica(self) -> TYPE_RESPONSE: - db_kwargs = self._get_db_replica_kwargs() + db_kwargs = self.parameters database = self.backend.create_db_instance_read_replica(db_kwargs) result = {"DBInstance": database} return self.serialize(result) def describe_db_instances(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - filters = self._get_multi_param("Filters.Filter.") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} all_instances = list( self.backend.describe_db_instances( @@ -346,11 +104,16 @@ def describe_db_instances(self) -> TYPE_RESPONSE: return self.serialize(result) def modify_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_kwargs = self._get_db_kwargs() - # NOTE modify_db_instance does not support tags - del db_kwargs["tags"] - new_db_instance_identifier = self._get_param("NewDBInstanceIdentifier") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + db_kwargs = self.parameters + # This is a hack because the backend code expects the parameter to be + # lowercased before validation is performed. We need to move the + # lowercasing to a backend setter (in one place) and then do the validation. + if "PreferredMaintenanceWindow" in db_kwargs: + db_kwargs["PreferredMaintenanceWindow"] = db_kwargs[ + "PreferredMaintenanceWindow" + ].lower() + new_db_instance_identifier = self.parameters.get("NewDBInstanceIdentifier") if new_db_instance_identifier: db_kwargs["new_db_instance_identifier"] = new_db_instance_identifier database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) @@ -358,8 +121,8 @@ def modify_db_instance(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_snapshot_name = self._get_param("FinalDBSnapshotIdentifier") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + db_snapshot_name = self.parameters.get("FinalDBSnapshotIdentifier") if db_snapshot_name is not None: self.backend.validate_db_snapshot_identifier( db_snapshot_name, parameter_name="FinalDBSnapshotIdentifier" @@ -372,15 +135,15 @@ def delete_db_instance(self) -> TYPE_RESPONSE: return self.serialize(result) def reboot_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") database = self.backend.reboot_db_instance(db_instance_identifier) result = {"DBInstance": database} return self.serialize(result) def create_db_snapshot(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") - tags = self.unpack_list_params("Tags", "Tag") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") + tags = self.parameters.get("Tags", []) self.backend.validate_db_snapshot_identifier( db_snapshot_identifier, parameter_name="DBSnapshotIdentifier" ) @@ -393,10 +156,10 @@ def create_db_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def copy_db_snapshot(self) -> TYPE_RESPONSE: - source_snapshot_identifier = self._get_param("SourceDBSnapshotIdentifier") - target_snapshot_identifier = self._get_param("TargetDBSnapshotIdentifier") - tags = self.unpack_list_params("Tags", "Tag") - copy_tags = self._get_param("CopyTags") + source_snapshot_identifier = self.parameters.get("SourceDBSnapshotIdentifier") + target_snapshot_identifier = self.parameters.get("TargetDBSnapshotIdentifier") + tags = self.parameters.get("Tags", []) + copy_tags = self.parameters.get("CopyTags") self.backend.validate_db_snapshot_identifier( target_snapshot_identifier, parameter_name="TargetDBSnapshotIdentifier" ) @@ -408,9 +171,9 @@ def copy_db_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_snapshots(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") - filters = self._get_multi_param("Filters.Filter.") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") + filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} snapshots = self.backend.describe_db_snapshots( db_instance_identifier, db_snapshot_identifier, filter_dict @@ -419,22 +182,20 @@ def describe_db_snapshots(self) -> TYPE_RESPONSE: return self.serialize(result) def promote_read_replica(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_kwargs = self._get_db_kwargs() + db_kwargs = self.parameters database = self.backend.promote_read_replica(db_kwargs) - database = self.backend.modify_db_instance(db_instance_identifier, db_kwargs) result = {"DBInstance": database} return self.serialize(result) def delete_db_snapshot(self) -> TYPE_RESPONSE: - db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") + db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") snapshot = self.backend.delete_db_snapshot(db_snapshot_identifier) result = {"DBSnapshot": snapshot} return self.serialize(result) def restore_db_instance_from_db_snapshot(self) -> TYPE_RESPONSE: - db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") - db_kwargs = self._get_db_kwargs() + db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") + db_kwargs = self.parameters new_instance = self.backend.restore_db_instance_from_db_snapshot( db_snapshot_identifier, db_kwargs ) @@ -442,10 +203,10 @@ def restore_db_instance_from_db_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: - source_db_identifier = self._get_param("SourceDBInstanceIdentifier") - target_db_identifier = self._get_param("TargetDBInstanceIdentifier") + source_db_identifier = self.parameters.get("SourceDBInstanceIdentifier") + target_db_identifier = self.parameters.get("TargetDBInstanceIdentifier") - db_kwargs = self._get_db_kwargs() + db_kwargs = self.parameters new_instance = self.backend.restore_db_instance_to_point_in_time( source_db_identifier, target_db_identifier, db_kwargs ) @@ -453,26 +214,26 @@ def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: return self.serialize(result) def list_tags_for_resource(self) -> TYPE_RESPONSE: - arn = self._get_param("ResourceName") + arn = self.parameters.get("ResourceName") tags = self.backend.list_tags_for_resource(arn) result = {"TagList": tags} return self.serialize(result) def add_tags_to_resource(self) -> TYPE_RESPONSE: - arn = self._get_param("ResourceName") - tags = self.unpack_list_params("Tags", "Tag") + arn = self.parameters.get("ResourceName") + tags = self.parameters.get("Tags", []) self.backend.add_tags_to_resource(arn, tags) return self.serialize({}) def remove_tags_from_resource(self) -> TYPE_RESPONSE: - arn = self._get_param("ResourceName") - tag_keys = self.unpack_list_params("TagKeys", "member") - self.backend.remove_tags_from_resource(arn, tag_keys) # type: ignore + arn = self.parameters.get("ResourceName") + tag_keys = self.parameters.get("TagKeys") + self.backend.remove_tags_from_resource(arn, tag_keys) return self.serialize({}) def stop_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") - db_snapshot_identifier = self._get_param("DBSnapshotIdentifier") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") + db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") if db_snapshot_identifier is not None: self.backend.validate_db_snapshot_identifier( db_snapshot_identifier, parameter_name="DBSnapshotIdentifier" @@ -485,15 +246,15 @@ def stop_db_instance(self) -> TYPE_RESPONSE: return self.serialize(result) def start_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self._get_param("DBInstanceIdentifier") + db_instance_identifier = self.parameters.get("DBInstanceIdentifier") database = self.backend.start_db_instance(db_instance_identifier) result = {"DBInstance": database} return self.serialize(result) def create_db_security_group(self) -> TYPE_RESPONSE: - group_name = self._get_param("DBSecurityGroupName") - description = self._get_param("DBSecurityGroupDescription") - tags = self.unpack_list_params("Tags", "Tag") + group_name = self.parameters.get("DBSecurityGroupName") + description = self.parameters.get("DBSecurityGroupDescription") + tags = self.parameters.get("Tags", []) security_group = self.backend.create_db_security_group( group_name, description, tags ) @@ -501,20 +262,20 @@ def create_db_security_group(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_security_groups(self) -> TYPE_RESPONSE: - security_group_name = self._get_param("DBSecurityGroupName") + security_group_name = self.parameters.get("DBSecurityGroupName") security_groups = self.backend.describe_security_groups(security_group_name) result = {"DBSecurityGroups": security_groups} return self.serialize(result) def delete_db_security_group(self) -> TYPE_RESPONSE: - security_group_name = self._get_param("DBSecurityGroupName") + security_group_name = self.parameters.get("DBSecurityGroupName") security_group = self.backend.delete_security_group(security_group_name) result = {"DBSecurityGroup": security_group} return self.serialize(result) def authorize_db_security_group_ingress(self) -> TYPE_RESPONSE: - security_group_name = self._get_param("DBSecurityGroupName") - cidr_ip = self._get_param("CIDRIP") + security_group_name = self.parameters.get("DBSecurityGroupName") + cidr_ip = self.parameters.get("CIDRIP") security_group = self.backend.authorize_security_group( security_group_name, cidr_ip ) @@ -522,10 +283,10 @@ def authorize_db_security_group_ingress(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_subnet_group(self) -> TYPE_RESPONSE: - subnet_name = self._get_param("DBSubnetGroupName") - description = self._get_param("DBSubnetGroupDescription") - subnet_ids = self._get_multi_param("SubnetIds.SubnetIdentifier") - tags = self.unpack_list_params("Tags", "Tag") + subnet_name = self.parameters.get("DBSubnetGroupName") + description = self.parameters.get("DBSubnetGroupDescription") + subnet_ids = self.parameters.get("SubnetIds", []) + tags = self.parameters.get("Tags", []) subnets = [ ec2_backends[self.current_account][self.region].get_subnet(subnet_id) for subnet_id in subnet_ids @@ -537,15 +298,15 @@ def create_db_subnet_group(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_subnet_groups(self) -> TYPE_RESPONSE: - subnet_name = self._get_param("DBSubnetGroupName") + subnet_name = self.parameters.get("DBSubnetGroupName") subnet_groups = self.backend.describe_db_subnet_groups(subnet_name) result = {"DBSubnetGroups": subnet_groups} return self.serialize(result) def modify_db_subnet_group(self) -> TYPE_RESPONSE: - subnet_name = self._get_param("DBSubnetGroupName") - description = self._get_param("DBSubnetGroupDescription") - subnet_ids = self._get_multi_param("SubnetIds.SubnetIdentifier") + subnet_name = self.parameters.get("DBSubnetGroupName") + description = self.parameters.get("DBSubnetGroupDescription") + subnet_ids = self.parameters.get("SubnetIds", []) subnets = [ ec2_backends[self.current_account][self.region].get_subnet(subnet_id) for subnet_id in subnet_ids @@ -557,25 +318,25 @@ def modify_db_subnet_group(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_subnet_group(self) -> TYPE_RESPONSE: - subnet_name = self._get_param("DBSubnetGroupName") + subnet_name = self.parameters.get("DBSubnetGroupName") subnet_group = self.backend.delete_subnet_group(subnet_name) result = {"DBSubnetGroup": subnet_group} return self.serialize(result) def create_option_group(self) -> TYPE_RESPONSE: - kwargs = self._get_option_group_kwargs() + kwargs = self.parameters option_group = self.backend.create_option_group(kwargs) result = {"OptionGroup": option_group} return self.serialize(result) def delete_option_group(self) -> TYPE_RESPONSE: - kwargs = self._get_option_group_kwargs() - option_group = self.backend.delete_option_group(kwargs["name"]) + name = self.parameters["OptionGroupName"] + option_group = self.backend.delete_option_group(name) result = {"OptionGroup": option_group} return self.serialize(result) def describe_option_groups(self) -> TYPE_RESPONSE: - kwargs = self._get_option_group_kwargs() + kwargs = self.parameters option_groups = self.backend.describe_option_groups(kwargs) option_groups, marker = self._paginate(option_groups) result = { @@ -585,19 +346,16 @@ def describe_option_groups(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_option_group_options(self) -> str: - engine_name = self._get_param("EngineName") - major_engine_version = self._get_param("MajorEngineVersion") + engine_name = self.parameters.get("EngineName") + major_engine_version = self.parameters.get("MajorEngineVersion") return self.backend.describe_option_group_options( engine_name, major_engine_version ) def modify_option_group(self) -> TYPE_RESPONSE: - option_group_name = self._get_param("OptionGroupName") - options_to_include = (self._get_multi_param_dict("OptionsToInclude") or {}).get( - "OptionConfiguration", [] - ) - options_to_remove = self._get_params().get("OptionsToRemove", []) - + option_group_name = self.parameters.get("OptionGroupName") + options_to_include = self.parameters.get("OptionsToInclude", []) + options_to_remove = self.parameters.get("OptionsToRemove", []) option_group = self.backend.modify_option_group( option_group_name, options_to_include, options_to_remove ) @@ -605,43 +363,33 @@ def modify_option_group(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_parameter_group(self) -> TYPE_RESPONSE: - kwargs = self._get_db_parameter_group_kwargs() + kwargs = self.parameters db_parameter_group = self.backend.create_db_parameter_group(kwargs) result = {"DBParameterGroup": db_parameter_group} return self.serialize(result) def describe_db_parameter_groups(self) -> TYPE_RESPONSE: - kwargs = self._get_db_parameter_group_kwargs() + kwargs = self.parameters db_parameter_groups = self.backend.describe_db_parameter_groups(kwargs) db_parameter_groups, _ = self._paginate(db_parameter_groups) result = {"DBParameterGroups": db_parameter_groups} return self.serialize(result) def modify_db_parameter_group(self) -> TYPE_RESPONSE: - db_parameter_group_name = self._get_param("DBParameterGroupName") - db_parameter_group_parameters = self._get_db_parameter_group_parameters() + db_parameter_group_name = self.parameters.get("DBParameterGroupName") + param_list = self.parameters.get("Parameters", []) + # Raw dict is stored on the backend, so we need the original PascalCase items. + db_parameter_group_parameters = [ + dict(param.original_items()) for param in param_list + ] db_parameter_group = self.backend.modify_db_parameter_group( db_parameter_group_name, db_parameter_group_parameters ) result = {"DBParameterGroupName": db_parameter_group.name} return self.serialize(result) - def _get_db_parameter_group_parameters(self) -> Iterable[Dict[str, Any]]: - parameter_group_parameters: Dict[str, Any] = defaultdict(dict) - for param_name, value in self.querystring.items(): - if not param_name.startswith("Parameters.Parameter"): - continue - - split_param_name = param_name.split(".") - param_id = split_param_name[2] - param_setting = split_param_name[3] - - parameter_group_parameters[param_id][param_setting] = value[0] - - return parameter_group_parameters.values() - def describe_db_parameters(self) -> TYPE_RESPONSE: - db_parameter_group_name = self._get_param("DBParameterGroupName") + db_parameter_group_name = self.parameters.get("DBParameterGroupName") db_parameter_groups = self.backend.describe_db_parameter_groups( {"name": db_parameter_group_name} ) @@ -652,13 +400,13 @@ def describe_db_parameters(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_parameter_group(self) -> TYPE_RESPONSE: - kwargs = self._get_db_parameter_group_kwargs() - db_parameter_group = self.backend.delete_db_parameter_group(kwargs["name"]) + name = self.parameters["DBParameterGroupName"] + db_parameter_group = self.backend.delete_db_parameter_group(name) return self.serialize(db_parameter_group) def describe_db_cluster_parameters(self) -> TYPE_RESPONSE: # TODO: This never worked at all... - db_parameter_group_name = self._get_param("DBParameterGroupName") + db_parameter_group_name = self.parameters.get("DBParameterGroupName") db_parameter_groups = self.backend.describe_db_cluster_parameters() if db_parameter_groups is None: raise DBParameterGroupNotFoundError(db_parameter_group_name) @@ -666,20 +414,20 @@ def describe_db_cluster_parameters(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_cluster(self) -> TYPE_RESPONSE: - kwargs = self._get_db_cluster_kwargs() + kwargs = self.parameters cluster = self.backend.create_db_cluster(kwargs) result = {"DBCluster": cluster} return self.serialize(result) def modify_db_cluster(self) -> TYPE_RESPONSE: - kwargs = self._get_modify_db_cluster_kwargs() + kwargs = self.parameters cluster = self.backend.modify_db_cluster(kwargs) result = {"DBCluster": cluster} return self.serialize(result) def describe_db_clusters(self) -> TYPE_RESPONSE: - _id = self._get_param("DBClusterIdentifier") - filters = self._get_multi_param("Filters.Filter.") + _id = self.parameters.get("DBClusterIdentifier") + filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} clusters = self.backend.describe_db_clusters( cluster_identifier=_id, filters=filter_dict @@ -688,8 +436,8 @@ def describe_db_clusters(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_cluster(self) -> TYPE_RESPONSE: - _id = self._get_param("DBClusterIdentifier") - snapshot_name = self._get_param("FinalDBSnapshotIdentifier") + _id = self.parameters.get("DBClusterIdentifier") + snapshot_name = self.parameters.get("FinalDBSnapshotIdentifier") cluster = self.backend.delete_db_cluster( cluster_identifier=_id, snapshot_name=snapshot_name ) @@ -697,21 +445,21 @@ def delete_db_cluster(self) -> TYPE_RESPONSE: return self.serialize(result) def start_db_cluster(self) -> TYPE_RESPONSE: - _id = self._get_param("DBClusterIdentifier") + _id = self.parameters.get("DBClusterIdentifier") cluster = self.backend.start_db_cluster(cluster_identifier=_id) result = {"DBCluster": cluster} return self.serialize(result) def stop_db_cluster(self) -> TYPE_RESPONSE: - _id = self._get_param("DBClusterIdentifier") + _id = self.parameters.get("DBClusterIdentifier") cluster = self.backend.stop_db_cluster(cluster_identifier=_id) result = {"DBCluster": cluster} return self.serialize(result) def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: - db_cluster_identifier = self._get_param("DBClusterIdentifier") - db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") - tags = self.unpack_list_params("Tags", "Tag") + db_cluster_identifier = self.parameters.get("DBClusterIdentifier") + db_snapshot_identifier = self.parameters.get("DBClusterSnapshotIdentifier") + tags = self.parameters.get("Tags", []) snapshot = self.backend.create_db_cluster_snapshot( db_cluster_identifier, db_snapshot_identifier, tags=tags ) @@ -719,13 +467,13 @@ def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: - source_snapshot_identifier = self._get_param( + source_snapshot_identifier = self.parameters.get( "SourceDBClusterSnapshotIdentifier" ) - target_snapshot_identifier = self._get_param( + target_snapshot_identifier = self.parameters.get( "TargetDBClusterSnapshotIdentifier" ) - tags = self.unpack_list_params("Tags", "Tag") + tags = self.parameters.get("Tags", []) snapshot = self.backend.copy_db_cluster_snapshot( source_snapshot_identifier, target_snapshot_identifier, tags ) @@ -733,9 +481,9 @@ def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: - db_cluster_identifier = self._get_param("DBClusterIdentifier") - db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") - filters = self._get_multi_param("Filters.Filter.") + db_cluster_identifier = self.parameters.get("DBClusterIdentifier") + db_snapshot_identifier = self.parameters.get("DBClusterSnapshotIdentifier") + filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} snapshots = self.backend.describe_db_cluster_snapshots( db_cluster_identifier, db_snapshot_identifier, filter_dict @@ -744,14 +492,14 @@ def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: return self.serialize(results) def delete_db_cluster_snapshot(self) -> TYPE_RESPONSE: - db_snapshot_identifier = self._get_param("DBClusterSnapshotIdentifier") + db_snapshot_identifier = self.parameters["DBClusterSnapshotIdentifier"] snapshot = self.backend.delete_db_cluster_snapshot(db_snapshot_identifier) result = {"DBClusterSnapshot": snapshot} return self.serialize(result) def restore_db_cluster_from_snapshot(self) -> TYPE_RESPONSE: - db_snapshot_identifier = self._get_param("SnapshotIdentifier") - db_kwargs = self._get_db_cluster_kwargs() + db_snapshot_identifier = self.parameters.get("SnapshotIdentifier") + db_kwargs = self.parameters new_cluster = self.backend.restore_db_cluster_from_snapshot( db_snapshot_identifier, db_kwargs ) @@ -759,42 +507,42 @@ def restore_db_cluster_from_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def start_export_task(self) -> TYPE_RESPONSE: - kwargs = self._get_export_task_kwargs() + kwargs = self.parameters export_task = self.backend.start_export_task(kwargs) return self.serialize(export_task) def cancel_export_task(self) -> TYPE_RESPONSE: - export_task_identifier = self._get_param("ExportTaskIdentifier") + export_task_identifier = self.parameters.get("ExportTaskIdentifier") export_task = self.backend.cancel_export_task(export_task_identifier) return self.serialize(export_task) def describe_export_tasks(self) -> TYPE_RESPONSE: - export_task_identifier = self._get_param("ExportTaskIdentifier") + export_task_identifier = self.parameters.get("ExportTaskIdentifier") tasks = self.backend.describe_export_tasks(export_task_identifier) result = {"ExportTasks": tasks} return self.serialize(result) def create_event_subscription(self) -> TYPE_RESPONSE: - kwargs = self._get_event_subscription_kwargs() + kwargs = self.parameters subscription = self.backend.create_event_subscription(kwargs) result = {"EventSubscription": subscription} return self.serialize(result) def delete_event_subscription(self) -> TYPE_RESPONSE: - subscription_name = self._get_param("SubscriptionName") + subscription_name = self.parameters.get("SubscriptionName") subscription = self.backend.delete_event_subscription(subscription_name) result = {"EventSubscription": subscription} return self.serialize(result) def describe_event_subscriptions(self) -> TYPE_RESPONSE: - subscription_name = self._get_param("SubscriptionName") + subscription_name = self.parameters.get("SubscriptionName") subscriptions = self.backend.describe_event_subscriptions(subscription_name) result = {"EventSubscriptionsList": subscriptions} return self.serialize(result) def describe_orderable_db_instance_options(self) -> TYPE_RESPONSE: - engine = self._get_param("Engine") - engine_version = self._get_param("EngineVersion") + engine = self.parameters.get("Engine") + engine_version = self.parameters.get("EngineVersion") options = self.backend.describe_orderable_db_instance_options( engine, engine_version ) @@ -807,7 +555,7 @@ def describe_global_clusters(self) -> TYPE_RESPONSE: return self.serialize(result) def create_global_cluster(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters cluster = self.global_backend.create_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], source_db_cluster_identifier=params.get("SourceDBClusterIdentifier"), @@ -820,7 +568,7 @@ def create_global_cluster(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_global_cluster(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters cluster = self.global_backend.delete_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], ) @@ -828,7 +576,7 @@ def delete_global_cluster(self) -> TYPE_RESPONSE: return self.serialize(result) def remove_from_global_cluster(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters global_cluster = self.backend.remove_from_global_cluster( global_cluster_identifier=params["GlobalClusterIdentifier"], db_cluster_identifier=params["DbClusterIdentifier"], @@ -837,9 +585,9 @@ def remove_from_global_cluster(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_cluster_parameter_group(self) -> TYPE_RESPONSE: - group_name = self._get_param("DBClusterParameterGroupName") - family = self._get_param("DBParameterGroupFamily") - desc = self._get_param("Description") + group_name = self.parameters.get("DBClusterParameterGroupName") + family = self.parameters.get("DBParameterGroupFamily") + desc = self.parameters.get("Description") db_cluster_parameter_group = self.backend.create_db_cluster_parameter_group( group_name=group_name, family=family, @@ -849,7 +597,7 @@ def create_db_cluster_parameter_group(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_cluster_parameter_groups(self) -> TYPE_RESPONSE: - group_name = self._get_param("DBClusterParameterGroupName") + group_name = self.parameters.get("DBClusterParameterGroupName") db_parameter_groups = self.backend.describe_db_cluster_parameter_groups( group_name=group_name, ) @@ -857,20 +605,20 @@ def describe_db_cluster_parameter_groups(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_cluster_parameter_group(self) -> TYPE_RESPONSE: - group_name = self._get_param("DBClusterParameterGroupName") + group_name = self.parameters.get("DBClusterParameterGroupName") self.backend.delete_db_cluster_parameter_group( group_name=group_name, ) return self.serialize({}) def promote_read_replica_db_cluster(self) -> TYPE_RESPONSE: - db_cluster_identifier = self._get_param("DBClusterIdentifier") + db_cluster_identifier = self.parameters.get("DBClusterIdentifier") cluster = self.backend.promote_read_replica_db_cluster(db_cluster_identifier) result = {"DBCluster": cluster} return self.serialize(result) def describe_db_snapshot_attributes(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_snapshot_identifier = params["DBSnapshotIdentifier"] db_snapshot_attributes_result = self.backend.describe_db_snapshot_attributes( db_snapshot_identifier=db_snapshot_identifier, @@ -884,7 +632,7 @@ def describe_db_snapshot_attributes(self) -> TYPE_RESPONSE: return self.serialize(result) def modify_db_snapshot_attribute(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_snapshot_identifier = params["DBSnapshotIdentifier"] db_snapshot_attributes_result = self.backend.modify_db_snapshot_attribute( db_snapshot_identifier=db_snapshot_identifier, @@ -901,7 +649,7 @@ def modify_db_snapshot_attribute(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_cluster_snapshot_attributes(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_cluster_snapshot_identifier = params["DBClusterSnapshotIdentifier"] db_cluster_snapshot_attributes_result = ( self.backend.describe_db_cluster_snapshot_attributes( @@ -917,7 +665,7 @@ def describe_db_cluster_snapshot_attributes(self) -> TYPE_RESPONSE: return self.serialize(result) def modify_db_cluster_snapshot_attribute(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_cluster_snapshot_identifier = params["DBClusterSnapshotIdentifier"] db_cluster_snapshot_attributes_result = ( self.backend.modify_db_cluster_snapshot_attribute( @@ -936,7 +684,7 @@ def modify_db_cluster_snapshot_attribute(self) -> TYPE_RESPONSE: return self.serialize(result) def describe_db_proxies(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_proxy_name = params.get("DBProxyName") # filters = params.get("Filters") marker = params.get("Marker") @@ -951,7 +699,7 @@ def describe_db_proxies(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_proxy(self) -> TYPE_RESPONSE: - params = self._get_params() + params = self.parameters db_proxy_name = params["DBProxyName"] engine_family = params["EngineFamily"] auth = params["Auth"] @@ -961,7 +709,7 @@ def create_db_proxy(self) -> TYPE_RESPONSE: require_tls = params.get("RequireTLS") idle_client_timeout = params.get("IdleClientTimeout") debug_logging = params.get("DebugLogging") - tags = self.unpack_list_params("Tags", "Tag") + tags = self.parameters.get("Tags", []) db_proxy = self.backend.create_db_proxy( db_proxy_name=db_proxy_name, engine_family=engine_family, @@ -978,10 +726,10 @@ def create_db_proxy(self) -> TYPE_RESPONSE: return self.serialize(result) def register_db_proxy_targets(self) -> TYPE_RESPONSE: - db_proxy_name = self._get_param("DBProxyName") - target_group_name = self._get_param("TargetGroupName") - db_cluster_identifiers = self._get_params().get("DBClusterIdentifiers", []) - db_instance_identifiers = self._get_params().get("DBInstanceIdentifiers", []) + db_proxy_name = self.parameters.get("DBProxyName") + target_group_name = self.parameters.get("TargetGroupName") + db_cluster_identifiers = self.parameters.get("DBClusterIdentifiers", []) + db_instance_identifiers = self.parameters.get("DBInstanceIdentifiers", []) targets = self.backend.register_db_proxy_targets( db_proxy_name=db_proxy_name, target_group_name=target_group_name, @@ -992,10 +740,10 @@ def register_db_proxy_targets(self) -> TYPE_RESPONSE: return self.serialize(result) def deregister_db_proxy_targets(self) -> TYPE_RESPONSE: - db_proxy_name = self._get_param("DBProxyName") - target_group_name = self._get_param("TargetGroupName") - db_cluster_identifiers = self._get_params().get("DBClusterIdentifiers", []) - db_instance_identifiers = self._get_params().get("DBInstanceIdentifiers", []) + db_proxy_name = self.parameters.get("DBProxyName") + target_group_name = self.parameters.get("TargetGroupName") + db_cluster_identifiers = self.parameters.get("DBClusterIdentifiers", []) + db_instance_identifiers = self.parameters.get("DBInstanceIdentifiers", []) self.backend.deregister_db_proxy_targets( db_proxy_name=db_proxy_name, target_group_name=target_group_name, @@ -1005,26 +753,26 @@ def deregister_db_proxy_targets(self) -> TYPE_RESPONSE: return self.serialize({}) def describe_db_proxy_targets(self) -> TYPE_RESPONSE: - proxy_name = self._get_param("DBProxyName") + proxy_name = self.parameters.get("DBProxyName") targets = self.backend.describe_db_proxy_targets(proxy_name=proxy_name) result = {"Targets": targets} return self.serialize(result) def delete_db_proxy(self) -> TYPE_RESPONSE: - proxy_name = self._get_param("DBProxyName") + proxy_name = self.parameters.get("DBProxyName") proxy = self.backend.delete_db_proxy(proxy_name=proxy_name) result = {"DBProxy": proxy} return self.serialize(result) def describe_db_proxy_target_groups(self) -> TYPE_RESPONSE: - proxy_name = self._get_param("DBProxyName") + proxy_name = self.parameters.get("DBProxyName") groups = self.backend.describe_db_proxy_target_groups(proxy_name=proxy_name) result = {"TargetGroups": groups} return self.serialize(result) def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: - proxy_name = self._get_param("DBProxyName") - config = self._get_params().get("ConnectionPoolConfig", {}) + proxy_name = self.parameters.get("DBProxyName") + config = self.parameters.get("ConnectionPoolConfig", {}) group = self.backend.modify_db_proxy_target_group( proxy_name=proxy_name, config=config ) @@ -1034,9 +782,9 @@ def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: from moto.rds.exceptions import InvalidParameterValue - marker = self._get_param("Marker") + marker = self.parameters.get("Marker") # Default was originally set to 50 instead of 100 for ease of testing. Should fix. - page_size = self._get_int_param("MaxRecords", 50) + page_size = self.parameters.get("MaxRecords", 50) if page_size < 20 or page_size > 100: msg = ( f"Invalid value {page_size} for MaxRecords. Must be between 20 and 100" diff --git a/moto/rds/serialize.py b/moto/rds/serialize.py index d6e2e0f341ce..ee4742e9fb9b 100644 --- a/moto/rds/serialize.py +++ b/moto/rds/serialize.py @@ -2,10 +2,13 @@ from __future__ import annotations +from collections import defaultdict from datetime import datetime -from typing import Any, Mapping, MutableMapping, Optional, Tuple, Union +from functools import lru_cache +from typing import Any, Dict, List, Mapping, MutableMapping, Optional, Tuple, Union import xmltodict +from botocore import xform_name from botocore.model import ( ListShape, NoShapeFoundError, @@ -16,6 +19,8 @@ from botocore.utils import parse_to_aware_datetime from typing_extensions import TypeAlias +from .utils import get_service_model + Serialized: TypeAlias = MutableMapping[str, Any] @@ -396,3 +401,64 @@ def _inject_response_metadata( SERIALIZERS = { "query": QuerySerializer, } + + +class XFormedAttributeAccessMixin: + """Mixin allowing access to "xformed" attributes: + + obj.DBInstanceIdentifier will retrieve the value of obj.db_instance_identifier + + """ + + _model_attribute_aliases: Dict[str, List[str]] = {} + _xform_cache: Dict[str, str] = {} + + def __getattr__(self, name: str) -> Any: + if name in self.model_attributes: + return self.get_modeled_attribute(name) + raise AttributeError(f"Attribute '{name}' not found!") + + def get_modeled_attribute(self, attr_name: str) -> Any: + for attr_alias in self.model_attribute_aliases[attr_name]: + try: + return super().__getattribute__(attr_alias) + except AttributeError: + pass + else: + raise AttributeError + + @property + def model_attributes(self) -> List[str]: + return list(self.model_attribute_aliases.keys()) + + @property + def model_attribute_aliases(self) -> Dict[str, List[str]]: + if not self._model_attribute_aliases: + self._model_attribute_aliases = self.get_model_attributes_info() + return self._model_attribute_aliases + + @classmethod + @lru_cache() + def get_model_attributes_info(cls) -> Dict[str, List[str]]: + service_name = cls.__module__.split(".")[1] + model_name = cls.__name__ + service_model = get_service_model(service_name) + model_shape = service_model.shape_for(model_name) + valid_attributes: Dict[str, List[str]] = defaultdict(list) + for member_name, member_shape in model_shape.members.items(): # type: ignore[attr-defined] + aliases = valid_attributes[member_name] + if member_shape.type_name == "list": + if member_name != member_shape.name: + xformed_name = cls._xform_name(member_shape.name) + aliases.append(xformed_name) + xformed_member_name = cls._xform_name(member_name) + aliases.append(xformed_member_name) + if member_name.startswith(model_name): + short_name = member_name[len(model_name) :] + xformed_short_name = cls._xform_name(short_name) + aliases.append(xformed_short_name) + return valid_attributes + + @classmethod + def _xform_name(cls, name: str) -> str: + return xform_name(name, _xform_cache=cls._xform_cache) diff --git a/moto/rds/utils.py b/moto/rds/utils.py index f83fa78396e4..c0f65263efc3 100644 --- a/moto/rds/utils.py +++ b/moto/rds/utils.py @@ -3,12 +3,11 @@ import copy import datetime import re -from collections import OrderedDict, defaultdict, namedtuple +from collections import OrderedDict, namedtuple from enum import Enum from functools import lru_cache from typing import Any, Dict, List, Optional, Tuple -from botocore import xform_name from botocore.loaders import create_loader from botocore.model import ServiceModel from botocore.utils import merge_dicts @@ -399,64 +398,3 @@ def get_service_model(service_name: str) -> ServiceModel: model = loader.load_service_model(service_name, "service-2") service_model = ServiceModel(model, service_name) return service_model - - -class XFormedAttributeAccessMixin: - """Mixin allowing access to "xformed" attributes: - - obj.DBInstanceIdentifier will retrieve the value of obj.db_instance_identifier - - """ - - _model_attribute_aliases: Dict[str, List[str]] = {} - _xform_cache: Dict[str, str] = {} - - def __getattr__(self, name: str) -> Any: - if name in self.model_attributes: - return self.get_modeled_attribute(name) - raise AttributeError(f"Attribute '{name}' not found!") - - def get_modeled_attribute(self, attr_name: str) -> Any: - for attr_alias in self.model_attribute_aliases[attr_name]: - try: - return super().__getattribute__(attr_alias) - except AttributeError: - pass - else: - raise AttributeError - - @property - def model_attributes(self) -> List[str]: - return list(self.model_attribute_aliases.keys()) - - @property - def model_attribute_aliases(self) -> Dict[str, List[str]]: - if not self._model_attribute_aliases: - self._model_attribute_aliases = self.get_model_attributes_info() - return self._model_attribute_aliases - - @classmethod - @lru_cache() - def get_model_attributes_info(cls) -> Dict[str, List[str]]: - service_name = cls.__module__.split(".")[1] - model_name = cls.__name__ - service_model = get_service_model(service_name) - model_shape = service_model.shape_for(model_name) - valid_attributes: Dict[str, List[str]] = defaultdict(list) - for member_name, member_shape in model_shape.members.items(): # type: ignore[attr-defined] - aliases = valid_attributes[member_name] - if member_shape.type_name == "list": - if member_name != member_shape.name: - xformed_name = cls._xform_name(member_shape.name) - aliases.append(xformed_name) - xformed_member_name = cls._xform_name(member_name) - aliases.append(xformed_member_name) - if member_name.startswith(model_name): - short_name = member_name[len(model_name) :] - xformed_short_name = cls._xform_name(short_name) - aliases.append(xformed_short_name) - return valid_attributes - - @classmethod - def _xform_name(cls, name: str) -> str: - return xform_name(name, _xform_cache=cls._xform_cache) From 98e273086f475635fa77669fb4e40edcb0120431 Mon Sep 17 00:00:00 2001 From: Nikos Date: Thu, 6 Feb 2025 12:35:36 +0200 Subject: [PATCH 010/103] ELB: Port and protocol validations for create listener (#8563) --- moto/elbv2/exceptions.py | 17 +- moto/elbv2/models.py | 39 +++++ other_langs/terraform/elb/load_balancer.tf | 2 +- tests/test_elbv2/test_elbv2.py | 173 +++++++++++++++++++-- 4 files changed, 215 insertions(+), 16 deletions(-) diff --git a/moto/elbv2/exceptions.py b/moto/elbv2/exceptions.py index 8ab6d7a778e5..b8783e03ba6e 100644 --- a/moto/elbv2/exceptions.py +++ b/moto/elbv2/exceptions.py @@ -1,4 +1,4 @@ -from typing import Any, Optional +from typing import Any, List, Optional from moto.core.exceptions import RESTError @@ -209,3 +209,18 @@ def __init__(self, msg: str): class InvalidConfigurationRequest(ELBClientError): def __init__(self, msg: str): super().__init__("InvalidConfigurationRequest", msg) + + +class InvalidProtocol(ELBClientError): + def __init__(self, protocol: str, valid_protocols: List[str]): + msg = f"Listener protocol '{protocol}' must be one of '{', '.join(valid_protocols)}'" + super().__init__("ValidationError", msg) + + +class InvalidProtocolValue(ELBClientError): + def __init__(self, protocol: str, valid_protocols: List[str]): + msg = ( + f"1 validation error detected: Value '{protocol}' at 'protocol' failed to satisfy constraint: " + f"Member must satisfy enum value set: [{', '.join(valid_protocols)}]" + ) + super().__init__("ValidationError", msg) diff --git a/moto/elbv2/models.py b/moto/elbv2/models.py index 10ae12cd9ed8..c548e9cb26e3 100644 --- a/moto/elbv2/models.py +++ b/moto/elbv2/models.py @@ -29,6 +29,8 @@ InvalidDescribeRulesRequest, InvalidLoadBalancerActionException, InvalidModifyRuleArgumentsError, + InvalidProtocol, + InvalidProtocolValue, InvalidStatusCodeActionTypeError, InvalidTargetError, InvalidTargetGroupNameError, @@ -1077,6 +1079,42 @@ def _validate_actions(self, actions: List[FakeAction]) -> None: else: raise InvalidActionTypeError(action_type, index) + def _validate_port_and_protocol( + self, loadbalancer_type: str, port: Optional[str], protocol: Optional[str] + ) -> None: + if loadbalancer_type in {"application", "network"}: + if port is None: + raise ValidationError("A listener port must be specified") + if protocol is None: + raise ValidationError("A listener protocol must be specified") + + valid_application_protocols = ["HTTP", "HTTPS"] + valid_network_protocols = ["UDP", "TCP", "TLS", "TCP_UDP"] + all_valid_protocols = ( + valid_application_protocols + valid_network_protocols + ["GENEVE"] + ) + + if protocol not in all_valid_protocols: + raise InvalidProtocolValue( + protocol, valid_application_protocols + valid_network_protocols + ) + + if loadbalancer_type == "application": + if protocol not in valid_application_protocols: + raise InvalidProtocol(protocol, valid_application_protocols) + else: + if protocol not in valid_network_protocols: + raise InvalidProtocol(protocol, valid_network_protocols) + else: + if port is not None: + raise ValidationError( + "A port cannot be specified for gateway listeners" + ) + if protocol is not None: + raise ValidationError( + "A protocol cannot be specified for gateway listeners" + ) + def _validate_fixed_response_action( self, action: FakeAction, i: int, index: int ) -> None: @@ -1425,6 +1463,7 @@ def create_listener( if port in balancer.listeners: raise DuplicateListenerError() + self._validate_port_and_protocol(balancer.loadbalancer_type, port, protocol) self._validate_actions(default_actions) arn = ( diff --git a/other_langs/terraform/elb/load_balancer.tf b/other_langs/terraform/elb/load_balancer.tf index 81199efa2822..f348f1988da3 100644 --- a/other_langs/terraform/elb/load_balancer.tf +++ b/other_langs/terraform/elb/load_balancer.tf @@ -12,7 +12,7 @@ data "aws_subnets" "all" { resource "aws_lb" "this" { name = "nlb-test" internal = true - load_balancer_type = "network" + load_balancer_type = "application" subnets = data.aws_subnets.all.ids enable_deletion_protection = false } \ No newline at end of file diff --git a/tests/test_elbv2/test_elbv2.py b/tests/test_elbv2/test_elbv2.py index 512f31b39416..b47d6d79a6ff 100644 --- a/tests/test_elbv2/test_elbv2.py +++ b/tests/test_elbv2/test_elbv2.py @@ -37,7 +37,7 @@ def test_create_load_balancer(): assert tags == {"key_name": "a_value"} -def create_load_balancer(): +def create_load_balancer(load_balancer_type: str = "application"): conn = boto3.client("elbv2", region_name="us-east-1") ec2 = boto3.resource("ec2", region_name="us-east-1") @@ -58,6 +58,7 @@ def create_load_balancer(): SecurityGroups=[security_group.id], Scheme="internal", Tags=[{"Key": "key_name", "Value": "a_value"}], + Type=load_balancer_type, ) return response, vpc, security_group, subnet1, subnet2, conn @@ -255,8 +256,9 @@ def test_create_elb_in_multiple_region(): @mock_aws -def test_create_listeners_without_port(): - response, vpc, _, _, _, conn = create_load_balancer() +@pytest.mark.parametrize("load_balancer_type", ["application", "network"]) +def test_create_listeners_without_port(load_balancer_type): + response, vpc, _, _, _, conn = create_load_balancer(load_balancer_type) load_balancer_arn = response["LoadBalancers"][0]["LoadBalancerArn"] response = conn.create_target_group( Name="a-target", @@ -274,18 +276,161 @@ def test_create_listeners_without_port(): ) target_group = response["TargetGroups"][0] target_group_arn = target_group["TargetGroupArn"] - response = conn.create_listener( - LoadBalancerArn=load_balancer_arn, - Protocol="HTTP", - DefaultActions=[{"Type": "forward", "TargetGroupArn": target_group_arn}], - ) + with pytest.raises(ClientError) as exc: + conn.create_listener( + LoadBalancerArn=load_balancer_arn, + Protocol="HTTP", + DefaultActions=[{"Type": "forward", "TargetGroupArn": target_group_arn}], + ) + err = exc.value.response["Error"] + assert err["Code"] == "ValidationError" + assert err["Message"] == "A listener port must be specified" - listener = response["Listeners"][0] - assert listener.get("Port") is None - assert listener["Protocol"] == "HTTP" - assert listener["DefaultActions"] == [ - {"TargetGroupArn": target_group_arn, "Type": "forward"} - ] + +@mock_aws +@pytest.mark.parametrize("load_balancer_type", ["application", "network"]) +def test_create_listeners_without_protocol(load_balancer_type): + response, _, _, _, _, conn = create_load_balancer(load_balancer_type) + load_balancer_arn = response["LoadBalancers"][0]["LoadBalancerArn"] + with pytest.raises(ClientError) as exc: + conn.create_listener( + LoadBalancerArn=load_balancer_arn, + Port=8080, + DefaultActions=[ + { + "Type": "fixed-response", + "FixedResponseConfig": { + "MessageBody": "Hello, World!", + "StatusCode": "200", + "ContentType": "text/plain", + }, + } + ], + ) + err = exc.value.response["Error"] + assert err["Code"] == "ValidationError" + assert err["Message"] == "A listener protocol must be specified" + + +@mock_aws +@pytest.mark.parametrize( + ["load_balancer_type", "protocol", "exception_message"], + [ + ( + "application", + "GENEVE", + "Listener protocol 'GENEVE' must be one of 'HTTP, HTTPS'", + ), + ( + "network", + "GENEVE", + "Listener protocol 'GENEVE' must be one of 'UDP, TCP, TLS, TCP_UDP'", + ), + ( + "application", + "TCP", + "Listener protocol 'TCP' must be one of 'HTTP, HTTPS'", + ), + ( + "application", + "UDP", + "Listener protocol 'UDP' must be one of 'HTTP, HTTPS'", + ), + ( + "application", + "TCP_UDP", + "Listener protocol 'TCP_UDP' must be one of 'HTTP, HTTPS'", + ), + ( + "application", + "TLS", + "Listener protocol 'TLS' must be one of 'HTTP, HTTPS'", + ), + ( + "network", + "HTTP", + "Listener protocol 'HTTP' must be one of 'UDP, TCP, TLS, TCP_UDP'", + ), + ( + "network", + "HTTPS", + "Listener protocol 'HTTPS' must be one of 'UDP, TCP, TLS, TCP_UDP'", + ), + ( + "application", + "INVALID", + "1 validation error detected: Value 'INVALID' at 'protocol' failed to satisfy constraint: " + "Member must satisfy enum value set: [HTTP, HTTPS, UDP, TCP, TLS, TCP_UDP]", + ), + ( + "network", + "INVALID", + "1 validation error detected: Value 'INVALID' at 'protocol' failed to satisfy constraint: " + "Member must satisfy enum value set: [HTTP, HTTPS, UDP, TCP, TLS, TCP_UDP]", + ), + ], +) +def test_create_listeners_with_invalid_protocol( + load_balancer_type, protocol, exception_message +): + response, _, _, _, _, conn = create_load_balancer(load_balancer_type) + load_balancer_arn = response["LoadBalancers"][0]["LoadBalancerArn"] + with pytest.raises(ClientError) as exc: + conn.create_listener( + LoadBalancerArn=load_balancer_arn, + Port=1234, + Protocol=protocol, + DefaultActions=[ + { + "Type": "fixed-response", + "FixedResponseConfig": { + "MessageBody": "Hello, World!", + "StatusCode": "200", + "ContentType": "text/plain", + }, + } + ], + ) + err = exc.value.response["Error"] + assert err["Code"] == "ValidationError" + assert err["Message"] == exception_message + + +@mock_aws +@pytest.mark.parametrize( + ["param", "value", "exception_message"], + [ + ("Port", 80, "A port cannot be specified for gateway listeners"), + ("Protocol", "TCP", "A protocol cannot be specified for gateway listeners"), + ], +) +def test_create_gateway_listener_with_invalid_params(param, value, exception_message): + response, vpc, _, _, _, conn = create_load_balancer("gateway") + load_balancer_arn = response["LoadBalancers"][0]["LoadBalancerArn"] + response = conn.create_target_group( + Name="a-target", + Protocol="TCP", + Port=80, + VpcId=vpc.id, + HealthCheckProtocol="TCP", + HealthCheckPort="traffic-port", + HealthCheckPath="/", + HealthCheckIntervalSeconds=5, + HealthCheckTimeoutSeconds=3, + HealthyThresholdCount=5, + UnhealthyThresholdCount=2, + ) + target_group = response["TargetGroups"][0] + target_group_arn = target_group["TargetGroupArn"] + with pytest.raises(ClientError) as exc: + conn.create_listener( + LoadBalancerArn=load_balancer_arn, + DefaultActions=[{"Type": "forward", "TargetGroupArn": target_group_arn}], + **{param: value}, + ) + err = exc.value.response["Error"] + assert err["Code"] == "ValidationError" + assert err["Message"] == exception_message @mock_aws From 235296e3fd336ed2797e6a374a0c9e2b19f444cb Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 6 Feb 2025 18:10:03 -0800 Subject: [PATCH 011/103] RDS: Add support for MaxAllocatedStorage --- moto/rds/models.py | 25 ++++++++++++++++++++--- tests/test_rds/test_rds.py | 41 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 3 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 55b3f66628b8..e2f75ab373ae 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -757,6 +757,7 @@ def __init__( engine: str, port: Optional[int] = None, allocated_storage: Optional[int] = None, + max_allocated_storage: Optional[int] = None, backup_retention_period: int = 1, character_set_name: Optional[str] = None, auto_minor_version_upgrade: bool = True, @@ -815,11 +816,13 @@ def __init__( "manage_master_user_password", False ) self.auto_minor_version_upgrade = auto_minor_version_upgrade - self.allocated_storage = allocated_storage - if self.allocated_storage is None: - self.allocated_storage = DBInstance.default_allocated_storage( + self.allocated_storage = ( + allocated_storage + or DBInstance.default_allocated_storage( engine=self.engine, storage_type=self.storage_type ) + ) + self.max_allocated_storage = max_allocated_storage or self.allocated_storage self.db_cluster_identifier: Optional[str] = db_cluster_identifier self.db_instance_identifier = db_instance_identifier self.source_db_identifier = source_db_instance_identifier @@ -955,6 +958,22 @@ def master_user_secret(self) -> Dict[str, Any] | None: # type: ignore[misc] } return secret_info if self.manage_master_user_password else None + @property + def max_allocated_storage(self) -> Optional[int]: + return ( + self._max_allocated_storage + if self._max_allocated_storage != self.allocated_storage + else None + ) + + @max_allocated_storage.setter + def max_allocated_storage(self, value: int) -> None: + if value < self.allocated_storage: + raise InvalidParameterCombination( + "Max storage size must be greater than storage size" + ) + self._max_allocated_storage = value + @property def address(self) -> str: return ( diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 29b151cecac0..29107967b4b8 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -750,6 +750,47 @@ def test_delete_database(client): assert snapshot["SnapshotType"] == "automated" +@mock_aws +def test_max_allocated_storage(client): + # MaxAllocatedStorage is not set or included in details by default. + details = create_db_instance() + assert "MaxAllocatedStorage" not in details + # Can't set to less than AllocatedStorage. + with pytest.raises(ClientError) as excinfo: + create_db_instance( + DBInstanceIdentifier="less-than-allocated-storage", + AllocatedStorage=50, + MaxAllocatedStorage=25, + ) + error_info = excinfo.value.response["Error"] + assert error_info["Code"] == "InvalidParameterCombination" + assert error_info["Message"] == "Max storage size must be greater than storage size" + # Set at creation time. + details = create_db_instance( + DBInstanceIdentifier="test-max-allocated-storage", MaxAllocatedStorage=500 + ) + assert details["MaxAllocatedStorage"] == 500 + # Set to higher limit. + details = client.modify_db_instance( + DBInstanceIdentifier=details["DBInstanceIdentifier"], MaxAllocatedStorage=1000 + )["DBInstance"] + assert details["MaxAllocatedStorage"] == 1000 + # Disable by setting equal to AllocatedStorage. + details = client.modify_db_instance( + DBInstanceIdentifier=details["DBInstanceIdentifier"], + MaxAllocatedStorage=details["AllocatedStorage"], + )["DBInstance"] + assert "MaxAllocatedStorage" not in details + # Can't set to less than AllocatedStorage. + with pytest.raises(ClientError) as excinfo: + client.modify_db_instance( + DBInstanceIdentifier=details["DBInstanceIdentifier"], MaxAllocatedStorage=5 + ) + error_info = excinfo.value.response["Error"] + assert error_info["Code"] == "InvalidParameterCombination" + assert error_info["Message"] == "Max storage size must be greater than storage size" + + @mock_aws def test_create_db_snapshots(client): with pytest.raises(ClientError): From 64fb203cbf43657e60f8cb975d08ab5c385adfb0 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 6 Feb 2025 18:13:26 -0800 Subject: [PATCH 012/103] RDS: Add support for OptionGroup tagging --- moto/rds/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index e2f75ab373ae..f5bc13f14ecf 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -3031,6 +3031,7 @@ def __init__( engine_name: str, major_engine_version: str, option_group_description: Optional[str] = None, + tags: Optional[List[Dict[str, str]]] = None, ): super().__init__(backend) self.engine_name = engine_name @@ -3040,7 +3041,7 @@ def __init__( self.vpc_and_non_vpc_instance_memberships = False self._options: Dict[str, Any] = {} self.vpcId = "null" - self.tags: List[Dict[str, str]] = [] + self.tags = tags or [] @property def name(self) -> str: From af8e95dfc0baedc0f0ce9826eef913c6776d10fa Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 6 Feb 2025 18:15:09 -0800 Subject: [PATCH 013/103] RDS: Fix DBCluster:DBClusterParameterGroup property alias --- moto/rds/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index f5bc13f14ecf..6025691f21e0 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -548,7 +548,7 @@ def master_user_secret(self) -> Optional[Dict[str, Any]]: # type: ignore[misc] @property def db_cluster_parameter_group(self) -> str: - return self.cluster.parameter_group + return self.parameter_group @property def status(self) -> str: From 92bfc916db4429942399da389e08d7e88c0376be Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 6 Feb 2025 18:17:54 -0800 Subject: [PATCH 014/103] RDS: Remove obsolete code Managing the cluster status ("creating", "available", etc.) is already handled in the `status` property. --- moto/rds/models.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 6025691f21e0..a6918f3ce843 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -2301,9 +2301,7 @@ def create_db_cluster(self, kwargs: Dict[str, Any]) -> DBCluster: original_cluster = find_cluster(cluster_identifier) original_cluster.read_replica_identifiers.append(cluster.db_cluster_arn) - initial_state = copy.deepcopy(cluster) # Return status=creating - cluster.status = "available" # Already set the final status in the background - return initial_state + return cluster def modify_db_cluster(self, kwargs: Dict[str, Any]) -> DBCluster: cluster_id = kwargs["db_cluster_identifier"] From 26aa1e5822e8b517aca71c9c544394f38e2bb6f7 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 6 Feb 2025 18:43:57 -0800 Subject: [PATCH 015/103] RDS: Add typing to DBCluster.__init__ --- moto/rds/models.py | 72 +++++++++++++++++++++++++--------------------- 1 file changed, 40 insertions(+), 32 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index a6918f3ce843..5e52fae75b45 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -295,15 +295,34 @@ class DBCluster(RDSBaseModel): resource_type = "cluster" - def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: Any): + def __init__( + self, + backend: RDSBackend, + db_cluster_identifier: str, + engine: str, + engine_version: Optional[str] = None, + master_username: Optional[str] = None, + master_user_password: Optional[str] = None, + backup_retention_period: Optional[int] = 1, + character_set_name: Optional[str] = None, + copy_tags_to_snapshot: Optional[bool] = False, + database_name: Optional[str] = None, + db_cluster_parameter_group_name: Optional[str] = None, + port: Optional[int] = None, + preferred_backup_window: Optional[str] = "01:37-02:07", + preferred_maintenance_window: Optional[str] = "wed:02:40-wed:03:10", + storage_encrypted: Optional[bool] = False, + tags: Optional[List[Dict[str, str]]] = None, + vpc_security_group_ids: Optional[List[str]] = None, + deletion_protection: Optional[bool] = False, + **kwargs: Any, + ): super().__init__(backend) - self.database_name = kwargs.get("database_name") + self.database_name = database_name self.db_cluster_identifier = db_cluster_identifier self.db_cluster_instance_class = kwargs.get("db_cluster_instance_class") - self.deletion_protection = kwargs.get("deletion_protection") - if self.deletion_protection is None: - self.deletion_protection = False - self.engine = kwargs.get("engine") + self.deletion_protection = deletion_protection + self.engine = engine if self.engine not in ClusterEngine.list_cluster_engines(): raise InvalidParameterValue( ( @@ -315,18 +334,16 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An valid_engines=ClusterEngine.list_cluster_engines(), ) ) - self.engine_version = kwargs.get( - "engine_version" - ) or DBCluster.default_engine_version(self.engine) + self.engine_version = engine_version or DBCluster.default_engine_version( + self.engine + ) self.engine_mode = kwargs.get("engine_mode") or "provisioned" self.iops = kwargs.get("iops") self.kms_key_id = kwargs.get("kms_key_id") self.network_type = kwargs.get("network_type") or "IPV4" self._status = "creating" self.cluster_create_time = iso_8601_datetime_with_milliseconds() - self.copy_tags_to_snapshot = kwargs.get("copy_tags_to_snapshot") - if self.copy_tags_to_snapshot is None: - self.copy_tags_to_snapshot = False + self.copy_tags_to_snapshot = copy_tags_to_snapshot self.storage_type = kwargs.get("storage_type") if self.storage_type is None: self.storage_type = DBCluster.default_storage_type(iops=self.iops) @@ -335,7 +352,8 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An self.allocated_storage = DBCluster.default_allocated_storage( engine=self.engine, storage_type=self.storage_type ) - self.master_username = kwargs.get("master_username") + self.master_username = master_username + self.character_set_name = character_set_name self.global_cluster_identifier = kwargs.get("global_cluster_identifier") if ( not self.master_username @@ -348,7 +366,7 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An "The parameter MasterUsername must be provided and must not be blank." ) else: - self.master_user_password = kwargs.get("master_user_password") # type: ignore + self.master_user_password = master_user_password or "" self.master_user_secret_kms_key_id = kwargs.get("master_user_secret_kms_key_id") self.manage_master_user_password = kwargs.get( @@ -368,33 +386,25 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An default_pg = ( "default.neptune1.3" if self.engine == "neptune" else "default.aurora8.0" ) - self.parameter_group = ( - kwargs.get("db_cluster_parameter_group_name") or default_pg - ) + self.parameter_group = db_cluster_parameter_group_name or default_pg self.subnet_group = kwargs.get("db_subnet_group_name") or "default" self.url_identifier = "".join( random.choice(string.ascii_lowercase + string.digits) for _ in range(12) ) self.endpoint = f"{self.db_cluster_identifier}.cluster-{self.url_identifier}.{self.region}.rds.amazonaws.com" self.reader_endpoint = f"{self.db_cluster_identifier}.cluster-ro-{self.url_identifier}.{self.region}.rds.amazonaws.com" - self.port: int = kwargs.get("port") # type: ignore - if self.port is None: - self.port = DBCluster.default_port(self.engine) - self.preferred_backup_window = ( - kwargs.get("preferred_backup_window") or "01:37-02:07" - ) - self.preferred_maintenance_window = "wed:02:40-wed:03:10" + self.port = port or DBCluster.default_port(self.engine) + self.preferred_backup_window = preferred_backup_window or "01:37-02:07" + self.preferred_maintenance_window = preferred_maintenance_window # This should default to the default security group - self._vpc_security_group_ids: List[str] = kwargs.get( - "vpc_security_group_ids", [] - ) + self._vpc_security_group_ids = vpc_security_group_ids or [] self.hosted_zone_id = "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(14) ) self.resource_id = "cluster-" + "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(26) ) - self.tags = kwargs.get("tags", []) + self.tags = tags or [] self.enabled_cloudwatch_logs_exports = ( kwargs.get("enable_cloudwatch_logs_exports") or [] ) @@ -418,9 +428,7 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An self.replication_source_identifier = kwargs.get("replication_source_identifier") self.read_replica_identifiers: List[str] = list() self.is_writer: bool = False - self.storage_encrypted = kwargs.get("storage_encrypted", False) - if self.storage_encrypted is None: - self.storage_encrypted = False + self.storage_encrypted = storage_encrypted if self.storage_encrypted: self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") else: @@ -429,7 +437,7 @@ def __init__(self, backend: RDSBackend, db_cluster_identifier: str, **kwargs: An self._global_write_forwarding_requested = kwargs.get( "enable_global_write_forwarding" ) - self.backup_retention_period = kwargs.get("backup_retention_period") or 1 + self.backup_retention_period = backup_retention_period if backtrack := kwargs.get("backtrack_window"): if self.engine == "aurora-mysql": From b69dc9f194adbd105ba7908e5ee6df776351e02d Mon Sep 17 00:00:00 2001 From: Nikos Date: Fri, 7 Feb 2025 21:53:17 +0200 Subject: [PATCH 016/103] EC2: Handle filtering without Values (#8570) --- moto/ec2/responses/_base_response.py | 11 +++++--- moto/utilities/utils.py | 4 +++ tests/test_ec2/test_amis.py | 26 +++++++++++++++++++ .../test_availability_zones_and_regions.py | 11 ++++++++ tests/test_ec2/test_subnets.py | 10 +++++++ 5 files changed, 59 insertions(+), 3 deletions(-) diff --git a/moto/ec2/responses/_base_response.py b/moto/ec2/responses/_base_response.py index da11941faa1a..c4a45e5085d7 100644 --- a/moto/ec2/responses/_base_response.py +++ b/moto/ec2/responses/_base_response.py @@ -2,7 +2,7 @@ from moto.core.responses import BaseResponse -from ..exceptions import EmptyTagSpecError, InvalidParameter +from ..exceptions import EC2ClientError, EmptyTagSpecError, InvalidParameter from ..utils import convert_tag_spec @@ -15,9 +15,14 @@ def ec2_backend(self) -> Any: # type: ignore[misc] def _filters_from_querystring(self) -> Dict[str, str]: # [{"Name": x1, "Value": y1}, ..] - _filters = self._get_multi_param("Filter.") + _filters = self._get_multi_param("Filter.", skip_result_conversion=True) # return {x1: y1, ...} - return {f["Name"]: f["Value"] for f in _filters} + try: + return {f["Name"]: f.get("Value", []) for f in _filters} + except KeyError: + raise EC2ClientError( + "InvalidParameterValue", "The filter 'null' is invalid." + ) def _parse_tag_specification( self, expected_type: Optional[str] = None diff --git a/moto/utilities/utils.py b/moto/utilities/utils.py index 1b4ccb53fb3d..44908f86e346 100644 --- a/moto/utilities/utils.py +++ b/moto/utilities/utils.py @@ -98,6 +98,10 @@ def filter_resources( ): result.remove(resource) break + elif attrs[0] in filters: + # In case the filter exists but the value of the filter is empty, the filter shouldn't match + result.remove(resource) + break return result diff --git a/tests/test_ec2/test_amis.py b/tests/test_ec2/test_amis.py index 23a01c0dea60..b7d60b25d541 100644 --- a/tests/test_ec2/test_amis.py +++ b/tests/test_ec2/test_amis.py @@ -1337,6 +1337,32 @@ def test_ami_filter_by_unknown_ownerid(): assert len(images) == 0 +@mock_aws() +def test_ami_filter_without_value(): + client = boto3.client("ec2", region_name="us-east-1") + ec2_resource = boto3.resource("ec2", region_name="us-west-1") + + image_name = str(uuid4())[0:12] + + instance = ec2_resource.create_instances( + ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1 + )[0] + instance.create_image(Name=image_name) + + images = client.describe_images(Filters=[{"Name": "owner-alias", "Values": []}])[ + "Images" + ] + assert len(images) == 0 + + images = client.describe_images(Filters=[{"Name": "owner-alias"}])["Images"] + assert len(images) == 0 + + with pytest.raises(ClientError) as err: + client.describe_images(Filters=[{"Values": ["123"]}]) + + assert err.value.response["Error"]["Code"] == "InvalidParameterValue" + + @mock_aws def test_describe_images_dryrun(): client = boto3.client("ec2", region_name="us-east-1") diff --git a/tests/test_ec2/test_availability_zones_and_regions.py b/tests/test_ec2/test_availability_zones_and_regions.py index d092bcde4447..6724c4c06661 100644 --- a/tests/test_ec2/test_availability_zones_and_regions.py +++ b/tests/test_ec2/test_availability_zones_and_regions.py @@ -77,6 +77,17 @@ def test_availability_zones__parameters(): assert len(zones) == 1 assert zones[0]["ZoneId"] == "use1-az1" + # This shouldn't raise an unhandled exception + zones = us_east.describe_availability_zones(Filters=[{"Name": "state"}])[ + "AvailabilityZones" + ] + assert len(zones) == 0 + + zones = us_east.describe_availability_zones( + Filters=[{"Name": "state", "Values": []}] + )["AvailabilityZones"] + assert len(zones) == 0 + @mock_aws def test_describe_availability_zones_dryrun(): diff --git a/tests/test_ec2/test_subnets.py b/tests/test_ec2/test_subnets.py index 850277ed36b2..e83c2666811b 100644 --- a/tests/test_ec2/test_subnets.py +++ b/tests/test_ec2/test_subnets.py @@ -330,6 +330,16 @@ def test_get_subnets_filtering(): with pytest.raises(NotImplementedError): client.describe_subnets(Filters=filters) + # Filter without a Value. + subnets_with_invalid_filter = client.describe_subnets(Filters=[{"Name": "vpc-id"}])[ + "Subnets" + ] + assert len(subnets_with_invalid_filter) == 0 + subnets_with_invalid_filter = client.describe_subnets( + Filters=[{"Name": "vpc-id", "Values": []}] + )["Subnets"] + assert len(subnets_with_invalid_filter) == 0 + @mock_aws def test_create_subnet_response_fields(): From f35194d66afba7552bc6083195db6065a24e0a95 Mon Sep 17 00:00:00 2001 From: Nikos Date: Fri, 7 Feb 2025 21:54:49 +0200 Subject: [PATCH 017/103] SES: Fix AlreadyExists and DoesNotExist error codes and messages (#8575) --- moto/ses/exceptions.py | 9 ++------- moto/ses/models.py | 13 ++++++------- tests/test_ses/test_ses_boto3.py | 20 ++++++++++++++++++-- 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/moto/ses/exceptions.py b/moto/ses/exceptions.py index ccb5da15f848..fba9bdc92dec 100644 --- a/moto/ses/exceptions.py +++ b/moto/ses/exceptions.py @@ -56,14 +56,9 @@ def __init__(self, message: str): super().__init__("TemplateDoesNotExist", message) -class RuleSetNameAlreadyExists(SesError): +class AlreadyExists(SesError): def __init__(self, message: str): - super().__init__("RuleSetNameAlreadyExists", message) - - -class RuleAlreadyExists(SesError): - def __init__(self, message: str): - super().__init__("RuleAlreadyExists", message) + super().__init__("AlreadyExists", message) class RuleSetDoesNotExist(SesError): diff --git a/moto/ses/models.py b/moto/ses/models.py index 396bfd36521c..9920f6283110 100644 --- a/moto/ses/models.py +++ b/moto/ses/models.py @@ -13,16 +13,15 @@ from moto.sns.models import sns_backends from .exceptions import ( + AlreadyExists, ConfigurationSetAlreadyExists, ConfigurationSetDoesNotExist, EventDestinationAlreadyExists, InvalidParameterValue, InvalidRenderingParameterException, MessageRejectedError, - RuleAlreadyExists, RuleDoesNotExist, RuleSetDoesNotExist, - RuleSetNameAlreadyExists, TemplateDoesNotExist, TemplateNameAlreadyExists, ValidationError, @@ -616,15 +615,15 @@ def delete_template(self, name: str) -> None: def create_receipt_rule_set(self, rule_set_name: str) -> None: if self.receipt_rule_set.get(rule_set_name) is not None: - raise RuleSetNameAlreadyExists("Duplicate Receipt Rule Set Name.") + raise AlreadyExists(f"Rule set already exists: {rule_set_name}") self.receipt_rule_set[rule_set_name] = [] def create_receipt_rule(self, rule_set_name: str, rule: Dict[str, Any]) -> None: rule_set = self.receipt_rule_set.get(rule_set_name) if rule_set is None: - raise RuleSetDoesNotExist("Invalid Rule Set Name.") + raise RuleSetDoesNotExist(f"Rule set does not exist: {rule_set_name}") if rule in rule_set: - raise RuleAlreadyExists("Duplicate Rule Name.") + raise AlreadyExists(f"Rule already exists: {rule['name']}") rule_set.append(rule) self.receipt_rule_set[rule_set_name] = rule_set @@ -642,13 +641,13 @@ def describe_receipt_rule( rule_set = self.receipt_rule_set.get(rule_set_name) if rule_set is None: - raise RuleSetDoesNotExist("Invalid Rule Set Name.") + raise RuleSetDoesNotExist(f"Rule set does not exist: {rule_set_name}") for receipt_rule in rule_set: if receipt_rule["name"] == rule_name: return receipt_rule - raise RuleDoesNotExist("Invalid Rule Name.") + raise RuleDoesNotExist(f"Rule does not exist: {rule_name}") def update_receipt_rule(self, rule_set_name: str, rule: Dict[str, Any]) -> None: rule_set = self.receipt_rule_set.get(rule_set_name) diff --git a/tests/test_ses/test_ses_boto3.py b/tests/test_ses/test_ses_boto3.py index 427c628495d2..c5426958d5b9 100644 --- a/tests/test_ses/test_ses_boto3.py +++ b/tests/test_ses/test_ses_boto3.py @@ -636,7 +636,10 @@ def test_create_receipt_rule_set(): with pytest.raises(ClientError) as ex: conn.create_receipt_rule_set(RuleSetName="testRuleSet") - assert ex.value.response["Error"]["Code"] == "RuleSetNameAlreadyExists" + assert ex.value.response["Error"]["Code"] == "AlreadyExists" + assert ( + ex.value.response["Error"]["Message"] == "Rule set already exists: testRuleSet" + ) @mock_aws @@ -704,7 +707,8 @@ def test_create_receipt_rule(): }, ) - assert ex.value.response["Error"]["Code"] == "RuleAlreadyExists" + assert ex.value.response["Error"]["Code"] == "AlreadyExists" + assert ex.value.response["Error"]["Message"] == "Rule already exists: testRule" with pytest.raises(ClientError) as ex: conn.create_receipt_rule( @@ -736,6 +740,10 @@ def test_create_receipt_rule(): ) assert ex.value.response["Error"]["Code"] == "RuleSetDoesNotExist" + assert ( + ex.value.response["Error"]["Message"] + == "Rule set does not exist: InvalidRuleSetaName" + ) @mock_aws @@ -897,6 +905,10 @@ def test_describe_receipt_rule(): conn.describe_receipt_rule(RuleSetName="invalidRuleSetName", RuleName=rule_name) assert error.value.response["Error"]["Code"] == "RuleSetDoesNotExist" + assert ( + error.value.response["Error"]["Message"] + == "Rule set does not exist: invalidRuleSetName" + ) with pytest.raises(ClientError) as error: conn.describe_receipt_rule( @@ -904,6 +916,10 @@ def test_describe_receipt_rule(): ) assert error.value.response["Error"]["Code"] == "RuleDoesNotExist" + assert ( + error.value.response["Error"]["Message"] + == "Rule does not exist: invalidRuleName" + ) @mock_aws From b6f26b0357b892534a9581c557b4da7d9e839093 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Fri, 7 Feb 2025 15:12:14 -0800 Subject: [PATCH 018/103] RDS: Update error code/message for DBInstance deletion protection --- moto/rds/models.py | 4 ++-- tests/test_rds/test_rds.py | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 5e52fae75b45..01b8e81d8b1e 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1970,8 +1970,8 @@ def delete_db_instance( self._validate_db_identifier(db_instance_identifier) if db_instance_identifier in self.databases: if self.databases[db_instance_identifier].deletion_protection: - raise InvalidParameterValue( - "Can't delete Instance with protection enabled" + raise InvalidParameterCombination( + "Cannot delete protected DB Instance, please disable deletion protection and try again." ) if db_snapshot_name: self.create_auto_snapshot(db_instance_identifier, db_snapshot_name) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 29107967b4b8..4d3e7088d7f7 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -1479,6 +1479,7 @@ def test_modify_non_existent_option_group(client): ) +@pytest.mark.aws_verified @mock_aws def test_delete_database_with_protection(client): create_db_instance(DBInstanceIdentifier="db-primary-1", DeletionProtection=True) @@ -1486,7 +1487,11 @@ def test_delete_database_with_protection(client): with pytest.raises(ClientError) as exc: client.delete_db_instance(DBInstanceIdentifier="db-primary-1") err = exc.value.response["Error"] - assert err["Message"] == "Can't delete Instance with protection enabled" + assert err["Code"] == "InvalidParameterCombination" + assert ( + err["Message"] + == "Cannot delete protected DB Instance, please disable deletion protection and try again." + ) @mock_aws From 742dd461c2ecd7d4e8b0198c4edc0fbce8d2c9d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 10:15:52 -0100 Subject: [PATCH 019/103] chore: update EC2 Instance Offerings (#8577) --- .../availability-zone-id/ap-northeast-2.json | 8 + .../availability-zone-id/ap-southeast-5.json | 120 +++++++++ .../availability-zone-id/eu-central-1.json | 80 ++++++ .../availability-zone-id/eu-central-2.json | 240 ++++++++++++++++++ .../availability-zone-id/eu-west-1.json | 16 ++ .../availability-zone-id/eu-west-2.json | 8 + .../availability-zone-id/us-east-1.json | 16 ++ .../availability-zone-id/us-west-2.json | 24 ++ .../availability-zone/ap-northeast-2.json | 8 + .../availability-zone/ap-southeast-5.json | 120 +++++++++ .../availability-zone/eu-central-1.json | 80 ++++++ .../availability-zone/eu-central-2.json | 240 ++++++++++++++++++ .../availability-zone/eu-west-1.json | 16 ++ .../availability-zone/eu-west-2.json | 8 + .../availability-zone/us-east-1.json | 16 ++ .../availability-zone/us-west-2.json | 24 ++ .../region/ap-northeast-2.json | 4 + .../region/ap-southeast-5.json | 40 +++ .../region/eu-central-2.json | 80 ++++++ .../region/eu-west-2.json | 4 + .../region/us-east-1.json | 4 + .../region/us-west-2.json | 12 + 22 files changed, 1168 insertions(+) diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json index f3af3edf943b..af9a07bd543b 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json @@ -1851,6 +1851,10 @@ "InstanceType": "u7i-6tb.112xlarge", "Location": "apne2-az1" }, + { + "InstanceType": "u7i-8tb.112xlarge", + "Location": "apne2-az1" + }, { "InstanceType": "u7in-16tb.224xlarge", "Location": "apne2-az1" @@ -3279,6 +3283,10 @@ "InstanceType": "t4g.xlarge", "Location": "apne2-az2" }, + { + "InstanceType": "u7i-8tb.112xlarge", + "Location": "apne2-az2" + }, { "InstanceType": "u7in-16tb.224xlarge", "Location": "apne2-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-5.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-5.json index 3388c93eda2b..e44bb05ac61e 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-5.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-5.json @@ -147,6 +147,46 @@ "InstanceType": "c6id.xlarge", "Location": "apse5-az1" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.large", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.metal", + "Location": "apse5-az1" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "apse5-az1" + }, { "InstanceType": "c7g.12xlarge", "Location": "apse5-az1" @@ -1183,6 +1223,46 @@ "InstanceType": "c6id.xlarge", "Location": "apse5-az2" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.large", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.metal", + "Location": "apse5-az2" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "apse5-az2" + }, { "InstanceType": "c7g.12xlarge", "Location": "apse5-az2" @@ -2219,6 +2299,46 @@ "InstanceType": "c6id.xlarge", "Location": "apse5-az3" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.large", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.metal", + "Location": "apse5-az3" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "apse5-az3" + }, { "InstanceType": "c7g.12xlarge", "Location": "apse5-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json index eba6cb65514c..d0a5d194ec4c 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-1.json @@ -5367,6 +5367,86 @@ "InstanceType": "r6id.xlarge", "Location": "euc1-az2" }, + { + "InstanceType": "r6idn.12xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.16xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.24xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.2xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.32xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.4xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.8xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.large", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.metal", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6idn.xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.12xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.16xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.24xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.2xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.32xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.4xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.8xlarge", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.large", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.metal", + "Location": "euc1-az2" + }, + { + "InstanceType": "r6in.xlarge", + "Location": "euc1-az2" + }, { "InstanceType": "r7a.12xlarge", "Location": "euc1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json index 319b4dc97ce6..5609bab20e7a 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json @@ -519,6 +519,86 @@ "InstanceType": "m6id.xlarge", "Location": "euc2-az1" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.large", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.metal", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.large", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.metal", + "Location": "euc2-az1" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "euc2-az1" + }, { "InstanceType": "r5.12xlarge", "Location": "euc2-az1" @@ -1343,6 +1423,86 @@ "InstanceType": "m6id.xlarge", "Location": "euc2-az2" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.large", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.metal", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.large", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.metal", + "Location": "euc2-az2" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "euc2-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "euc2-az2" @@ -2167,6 +2327,86 @@ "InstanceType": "m6id.xlarge", "Location": "euc2-az3" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.large", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.metal", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.large", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.metal", + "Location": "euc2-az3" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "euc2-az3" + }, { "InstanceType": "r5.12xlarge", "Location": "euc2-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json index 636656ca0892..20632ce252ca 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-1.json @@ -7311,6 +7311,22 @@ "InstanceType": "inf1.xlarge", "Location": "euw1-az3" }, + { + "InstanceType": "inf2.24xlarge", + "Location": "euw1-az3" + }, + { + "InstanceType": "inf2.48xlarge", + "Location": "euw1-az3" + }, + { + "InstanceType": "inf2.8xlarge", + "Location": "euw1-az3" + }, + { + "InstanceType": "inf2.xlarge", + "Location": "euw1-az3" + }, { "InstanceType": "is4gen.2xlarge", "Location": "euw1-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json index 1f80108a6b33..35eba9a74ba7 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json @@ -575,6 +575,10 @@ "InstanceType": "f2.48xlarge", "Location": "euw2-az1" }, + { + "InstanceType": "f2.6xlarge", + "Location": "euw2-az1" + }, { "InstanceType": "g4ad.16xlarge", "Location": "euw2-az1" @@ -2495,6 +2499,10 @@ "InstanceType": "f2.48xlarge", "Location": "euw2-az2" }, + { + "InstanceType": "f2.6xlarge", + "Location": "euw2-az2" + }, { "InstanceType": "g4ad.16xlarge", "Location": "euw2-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json index 8bc621826a26..97d57873733e 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-east-1.json @@ -795,6 +795,10 @@ "InstanceType": "f2.48xlarge", "Location": "use1-az1" }, + { + "InstanceType": "f2.6xlarge", + "Location": "use1-az1" + }, { "InstanceType": "g4ad.16xlarge", "Location": "use1-az1" @@ -4079,6 +4083,10 @@ "InstanceType": "f2.48xlarge", "Location": "use1-az2" }, + { + "InstanceType": "f2.6xlarge", + "Location": "use1-az2" + }, { "InstanceType": "g4ad.16xlarge", "Location": "use1-az2" @@ -7671,6 +7679,10 @@ "InstanceType": "f2.48xlarge", "Location": "use1-az4" }, + { + "InstanceType": "f2.6xlarge", + "Location": "use1-az4" + }, { "InstanceType": "g4ad.16xlarge", "Location": "use1-az4" @@ -13803,6 +13815,10 @@ "InstanceType": "f2.48xlarge", "Location": "use1-az6" }, + { + "InstanceType": "f2.6xlarge", + "Location": "use1-az6" + }, { "InstanceType": "g4ad.16xlarge", "Location": "use1-az6" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json index 5e5003364dbb..1fc33e540493 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json @@ -819,6 +819,18 @@ "InstanceType": "f1.4xlarge", "Location": "usw2-az1" }, + { + "InstanceType": "f2.12xlarge", + "Location": "usw2-az1" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "usw2-az1" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "usw2-az1" + }, { "InstanceType": "g4ad.16xlarge", "Location": "usw2-az1" @@ -7527,6 +7539,18 @@ "InstanceType": "f1.4xlarge", "Location": "usw2-az3" }, + { + "InstanceType": "f2.12xlarge", + "Location": "usw2-az3" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "usw2-az3" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "usw2-az3" + }, { "InstanceType": "g4ad.16xlarge", "Location": "usw2-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json index 96fc9e77dc99..4bb0a4b28b4e 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json @@ -1851,6 +1851,10 @@ "InstanceType": "u7i-6tb.112xlarge", "Location": "ap-northeast-2a" }, + { + "InstanceType": "u7i-8tb.112xlarge", + "Location": "ap-northeast-2a" + }, { "InstanceType": "u7in-16tb.224xlarge", "Location": "ap-northeast-2a" @@ -3279,6 +3283,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-northeast-2b" }, + { + "InstanceType": "u7i-8tb.112xlarge", + "Location": "ap-northeast-2b" + }, { "InstanceType": "u7in-16tb.224xlarge", "Location": "ap-northeast-2b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-5.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-5.json index 3323fbb2e62d..610ac8c280d4 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-5.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-5.json @@ -147,6 +147,46 @@ "InstanceType": "c6id.xlarge", "Location": "ap-southeast-5a" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.large", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.metal", + "Location": "ap-southeast-5a" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "ap-southeast-5a" + }, { "InstanceType": "c7g.12xlarge", "Location": "ap-southeast-5a" @@ -1183,6 +1223,46 @@ "InstanceType": "c6id.xlarge", "Location": "ap-southeast-5b" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.large", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.metal", + "Location": "ap-southeast-5b" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "ap-southeast-5b" + }, { "InstanceType": "c7g.12xlarge", "Location": "ap-southeast-5b" @@ -2219,6 +2299,46 @@ "InstanceType": "c6id.xlarge", "Location": "ap-southeast-5c" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.large", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.metal", + "Location": "ap-southeast-5c" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "ap-southeast-5c" + }, { "InstanceType": "c7g.12xlarge", "Location": "ap-southeast-5c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json index 299ab866e1a4..dda9179b2dd3 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-1.json @@ -2447,6 +2447,86 @@ "InstanceType": "r6id.xlarge", "Location": "eu-central-1a" }, + { + "InstanceType": "r6idn.12xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.16xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.24xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.2xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.32xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.4xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.8xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.large", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.metal", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6idn.xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.12xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.16xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.24xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.2xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.32xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.4xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.8xlarge", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.large", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.metal", + "Location": "eu-central-1a" + }, + { + "InstanceType": "r6in.xlarge", + "Location": "eu-central-1a" + }, { "InstanceType": "r7a.12xlarge", "Location": "eu-central-1a" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json index 4113e46ebe65..b735ba82c9b1 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json @@ -519,6 +519,86 @@ "InstanceType": "m6id.xlarge", "Location": "eu-central-2a" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.large", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.metal", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.large", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.metal", + "Location": "eu-central-2a" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "eu-central-2a" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-central-2a" @@ -1343,6 +1423,86 @@ "InstanceType": "m6id.xlarge", "Location": "eu-central-2b" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.large", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.metal", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.large", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.metal", + "Location": "eu-central-2b" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "eu-central-2b" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-central-2b" @@ -2167,6 +2327,86 @@ "InstanceType": "m6id.xlarge", "Location": "eu-central-2c" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.large", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.metal", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.large", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.metal", + "Location": "eu-central-2c" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "eu-central-2c" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-central-2c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json index 78ea906c72be..9fbf6cc7cdbb 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-1.json @@ -1099,6 +1099,22 @@ "InstanceType": "inf1.xlarge", "Location": "eu-west-1a" }, + { + "InstanceType": "inf2.24xlarge", + "Location": "eu-west-1a" + }, + { + "InstanceType": "inf2.48xlarge", + "Location": "eu-west-1a" + }, + { + "InstanceType": "inf2.8xlarge", + "Location": "eu-west-1a" + }, + { + "InstanceType": "inf2.xlarge", + "Location": "eu-west-1a" + }, { "InstanceType": "is4gen.2xlarge", "Location": "eu-west-1a" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json index 6dada539a0b6..b4c685a5f419 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json @@ -575,6 +575,10 @@ "InstanceType": "f2.48xlarge", "Location": "eu-west-2a" }, + { + "InstanceType": "f2.6xlarge", + "Location": "eu-west-2a" + }, { "InstanceType": "g4ad.16xlarge", "Location": "eu-west-2a" @@ -4527,6 +4531,10 @@ "InstanceType": "f2.48xlarge", "Location": "eu-west-2c" }, + { + "InstanceType": "f2.6xlarge", + "Location": "eu-west-2c" + }, { "InstanceType": "g4ad.16xlarge", "Location": "eu-west-2c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json index d18efa5d6d9d..4c894da527b4 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/us-east-1.json @@ -859,6 +859,10 @@ "InstanceType": "f2.48xlarge", "Location": "us-east-1a" }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-east-1a" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-east-1a" @@ -4199,6 +4203,10 @@ "InstanceType": "f2.48xlarge", "Location": "us-east-1b" }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-east-1b" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-east-1b" @@ -7591,6 +7599,10 @@ "InstanceType": "f2.48xlarge", "Location": "us-east-1c" }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-east-1c" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-east-1c" @@ -10951,6 +10963,10 @@ "InstanceType": "f2.48xlarge", "Location": "us-east-1d" }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-east-1d" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-east-1d" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json index bac1fef50a34..605c2c309a78 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json @@ -4135,6 +4135,18 @@ "InstanceType": "f1.4xlarge", "Location": "us-west-2b" }, + { + "InstanceType": "f2.12xlarge", + "Location": "us-west-2b" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "us-west-2b" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-west-2b" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-west-2b" @@ -7527,6 +7539,18 @@ "InstanceType": "f1.4xlarge", "Location": "us-west-2c" }, + { + "InstanceType": "f2.12xlarge", + "Location": "us-west-2c" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "us-west-2c" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-west-2c" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-west-2c" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json index 83213fa53607..3e7678bb8283 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json @@ -1875,6 +1875,10 @@ "InstanceType": "u7i-6tb.112xlarge", "Location": "ap-northeast-2" }, + { + "InstanceType": "u7i-8tb.112xlarge", + "Location": "ap-northeast-2" + }, { "InstanceType": "u7in-16tb.224xlarge", "Location": "ap-northeast-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-5.json b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-5.json index 117b1dac117e..e0e9469c1577 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-5.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-5.json @@ -147,6 +147,46 @@ "InstanceType": "c6id.xlarge", "Location": "ap-southeast-5" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.large", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.metal", + "Location": "ap-southeast-5" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "ap-southeast-5" + }, { "InstanceType": "c7g.12xlarge", "Location": "ap-southeast-5" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json index 5aef88101066..a324c1322b2f 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json @@ -559,6 +559,86 @@ "InstanceType": "m6id.xlarge", "Location": "eu-central-2" }, + { + "InstanceType": "m6idn.12xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.16xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.24xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.2xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.32xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.4xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.8xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.large", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.metal", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6idn.xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.12xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.16xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.24xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.2xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.32xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.4xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.8xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.large", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.metal", + "Location": "eu-central-2" + }, + { + "InstanceType": "m6in.xlarge", + "Location": "eu-central-2" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-central-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json index f10b05a194f8..9ee4e38c0609 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json @@ -575,6 +575,10 @@ "InstanceType": "f2.48xlarge", "Location": "eu-west-2" }, + { + "InstanceType": "f2.6xlarge", + "Location": "eu-west-2" + }, { "InstanceType": "g4ad.16xlarge", "Location": "eu-west-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/us-east-1.json b/moto/ec2/resources/instance_type_offerings/region/us-east-1.json index 7e201e401e32..9de8b2be7838 100644 --- a/moto/ec2/resources/instance_type_offerings/region/us-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/us-east-1.json @@ -859,6 +859,10 @@ "InstanceType": "f2.48xlarge", "Location": "us-east-1" }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-east-1" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-east-1" diff --git a/moto/ec2/resources/instance_type_offerings/region/us-west-2.json b/moto/ec2/resources/instance_type_offerings/region/us-west-2.json index a2bd46fba470..29a4230148d1 100644 --- a/moto/ec2/resources/instance_type_offerings/region/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/us-west-2.json @@ -855,6 +855,18 @@ "InstanceType": "f1.4xlarge", "Location": "us-west-2" }, + { + "InstanceType": "f2.12xlarge", + "Location": "us-west-2" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "us-west-2" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "us-west-2" + }, { "InstanceType": "g4ad.16xlarge", "Location": "us-west-2" From e5e392c9d5adb2867b72cd7dc44775d4f9d23ae8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 10:16:19 -0100 Subject: [PATCH 020/103] chore: update EC2 Instance Types (#8578) --- moto/ec2/resources/instance_types.json | 134 ++++++++++++++++++++++++- 1 file changed, 131 insertions(+), 3 deletions(-) diff --git a/moto/ec2/resources/instance_types.json b/moto/ec2/resources/instance_types.json index ae3115da4fe7..4ac6bab10456 100644 --- a/moto/ec2/resources/instance_types.json +++ b/moto/ec2/resources/instance_types.json @@ -1712,7 +1712,7 @@ "BareMetal": false, "BurstablePerformanceSupported": false, "CurrentGeneration": true, - "DedicatedHostsSupported": false, + "DedicatedHostsSupported": true, "EbsInfo": { "EbsOptimizedInfo": { "BaselineBandwidthInMbps": 9500, @@ -4398,7 +4398,7 @@ "BareMetal": false, "BurstablePerformanceSupported": false, "CurrentGeneration": true, - "DedicatedHostsSupported": false, + "DedicatedHostsSupported": true, "EbsInfo": { "EbsOptimizedInfo": { "BaselineBandwidthInMbps": 9500, @@ -4645,7 +4645,7 @@ "BareMetal": false, "BurstablePerformanceSupported": false, "CurrentGeneration": true, - "DedicatedHostsSupported": false, + "DedicatedHostsSupported": true, "EbsInfo": { "EbsOptimizedInfo": { "BaselineBandwidthInMbps": 19000, @@ -24192,6 +24192,134 @@ ] } }, + "f2.6xlarge": { + "AutoRecoverySupported": false, + "BareMetal": false, + "BurstablePerformanceSupported": false, + "CurrentGeneration": true, + "DedicatedHostsSupported": true, + "EbsInfo": { + "EbsOptimizedInfo": { + "BaselineBandwidthInMbps": 7500, + "BaselineIops": 30000, + "BaselineThroughputInMBps": 937.5, + "MaximumBandwidthInMbps": 7500, + "MaximumIops": 30000, + "MaximumThroughputInMBps": 937.5 + }, + "EbsOptimizedSupport": "default", + "EncryptionSupport": "supported", + "NvmeSupport": "required" + }, + "FpgaInfo": { + "Fpgas": [ + { + "Count": 1, + "Manufacturer": "Xilinx", + "MemoryInfo": { + "SizeInMiB": 81920 + }, + "Name": "Virtex UltraScale+ (VU47P)" + } + ], + "TotalFpgaMemoryInMiB": 81920 + }, + "FreeTierEligible": false, + "HibernationSupported": false, + "Hypervisor": "nitro", + "InstanceStorageInfo": { + "Disks": [ + { + "Count": 1, + "SizeInGB": 940, + "Type": "ssd" + } + ], + "EncryptionSupport": "required", + "NvmeSupport": "required", + "TotalSizeInGB": 940 + }, + "InstanceStorageSupported": true, + "InstanceType": "f2.6xlarge", + "MemoryInfo": { + "SizeInMiB": 262144 + }, + "NetworkInfo": { + "DefaultNetworkCardIndex": 0, + "EfaSupported": false, + "EnaSrdSupported": false, + "EnaSupport": "required", + "EncryptionInTransitSupported": true, + "Ipv4AddressesPerInterface": 30, + "Ipv6AddressesPerInterface": 30, + "Ipv6Supported": true, + "MaximumNetworkCards": 1, + "MaximumNetworkInterfaces": 8, + "NetworkCards": [ + { + "BaselineBandwidthInGbps": 12.5, + "MaximumNetworkInterfaces": 8, + "NetworkCardIndex": 0, + "NetworkPerformance": "12.5 Gigabit", + "PeakBandwidthInGbps": 12.5 + } + ], + "NetworkPerformance": "12.5 Gigabit" + }, + "NitroEnclavesSupport": "supported", + "NitroTpmInfo": { + "SupportedVersions": [ + "2.0" + ] + }, + "NitroTpmSupport": "supported", + "PhcSupport": "unsupported", + "PlacementGroupInfo": { + "SupportedStrategies": [ + "cluster", + "partition", + "spread" + ] + }, + "ProcessorInfo": { + "Manufacturer": "AMD", + "SupportedArchitectures": [ + "x86_64" + ], + "SustainedClockSpeedInGhz": 3.4 + }, + "SupportedBootModes": [ + "legacy-bios", + "uefi" + ], + "SupportedRootDeviceTypes": [ + "ebs" + ], + "SupportedUsageClasses": [ + "on-demand", + "spot" + ], + "SupportedVirtualizationTypes": [ + "hvm" + ], + "VCpuInfo": { + "DefaultCores": 12, + "DefaultThreadsPerCore": 2, + "DefaultVCpus": 24, + "ValidCores": [ + 1, + 2, + 3, + 6, + 9, + 12 + ], + "ValidThreadsPerCore": [ + 1, + 2 + ] + } + }, "g4ad.16xlarge": { "AutoRecoverySupported": false, "BareMetal": false, From 4e9975079a16787c77520cbbd9e62ea967a56117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Nicol=C3=A1s=20Estevez?= <73709191+Polandia94@users.noreply.github.com> Date: Sun, 9 Feb 2025 08:17:00 -0300 Subject: [PATCH 021/103] DynamoDB: deterministic order on query and filter on gsi (#8376) --- moto/dynamodb/models/table.py | 65 +++++++++++++---------- tests/test_dynamodb/test_dynamodb_scan.py | 45 ++++++++++++++++ 2 files changed, 82 insertions(+), 28 deletions(-) diff --git a/moto/dynamodb/models/table.py b/moto/dynamodb/models/table.py index 73d382609373..f4769e1cc77b 100644 --- a/moto/dynamodb/models/table.py +++ b/moto/dynamodb/models/table.py @@ -746,18 +746,9 @@ def query( # SORT if index_name: - if len(range_attrs) == 2: - # Convert to float if necessary to ensure proper ordering - def conv(x: DynamoType) -> Any: - return float(x.value) if x.type == "N" else x.value - - possible_results.sort( - key=lambda item: ( # type: ignore - conv(item.attrs[range_attrs[0]]) # type: ignore - if item.attrs.get(range_attrs[0]) # type: ignore - else None - ) - ) + possible_results = self.sorted_items( + hash_attrs, range_attrs, possible_results + ) else: possible_results.sort(key=lambda item: item.range_key) # type: ignore @@ -883,10 +874,7 @@ def has_idx_items(self, index_name: str) -> List[Item]: else: if idx_col_set.issubset(set(hash_set.attrs)): # type: ignore items.append(hash_set) # type: ignore - return sorted( - items, - key=lambda x: (x.hash_key, x.range_key) if x.range_key else x.hash_key, - ) + return items def scan( self, @@ -934,6 +922,7 @@ def scan( range_attrs = [self.range_key_attr] items = self.has_idx_items(index_name) + items = self.sorted_items(hash_attrs, range_attrs, items) else: hash_attrs = [self.hash_key_attr] range_attrs = [self.range_key_attr] @@ -1030,6 +1019,35 @@ def _item_comes_before_dct( If that is the case, we compare by the RK of the main table instead Related: https://github.com/getmoto/moto/issues/7761 """ + attrs_to_sort_by = self._generate_attr_to_sort_by( + hash_key_attrs, range_key_attrs + ) + for attr in attrs_to_sort_by: + if attr in item.attrs and item.attrs[attr] != DynamoType(dct.get(attr)): # type: ignore + return ( + (item.attrs[attr] < DynamoType(dct.get(attr))) # type: ignore + == scan_index_forward + ) + # Keys were equal, items are identical + return True + + def sorted_items( + self, + hash_key_attrs: List[str], + range_key_attrs: List[Optional[str]], + items: List[Item], + ) -> List[Item]: + attrs_to_sort_by = self._generate_attr_to_sort_by( + hash_key_attrs, range_key_attrs + ) + items.sort( + key=lambda x: tuple([x.attrs[key] for key in attrs_to_sort_by]), + ) + return items + + def _generate_attr_to_sort_by( + self, hash_key_attrs: List[str], range_key_attrs: List[Optional[str]] + ) -> List[str]: gsi_hash_key = hash_key_attrs[0] if len(hash_key_attrs) == 2 else None table_hash_key = str( hash_key_attrs[0] if gsi_hash_key is None else hash_key_attrs[1] @@ -1045,18 +1063,9 @@ def _item_comes_before_dct( table_hash_key, table_range_key, ] - for attr in attrs_to_sort_by: - if ( - attr is not None - and attr in item.attrs - and item.attrs[attr] != DynamoType(dct.get(attr)) # type: ignore - ): - return ( - (item.attrs[attr] < DynamoType(dct.get(attr))) # type: ignore - == scan_index_forward - ) - # Keys were equal, items are identical - return True + return [ + attr for attr in attrs_to_sort_by if attr is not None and attr != "None" + ] def _get_last_evaluated_key( self, last_result: Item, index_name: Optional[str] diff --git a/tests/test_dynamodb/test_dynamodb_scan.py b/tests/test_dynamodb/test_dynamodb_scan.py index 0e9e77663306..9a4b2d676276 100644 --- a/tests/test_dynamodb/test_dynamodb_scan.py +++ b/tests/test_dynamodb/test_dynamodb_scan.py @@ -500,6 +500,51 @@ def test_scan_gsi_pagination_with_string_gsi_range_no_sk(table_name=None): assert subjects == set(range(10)) +@pytest.mark.aws_verified +@dynamodb_aws_verified(add_range=False, add_gsi_range=True) +def test_scan_gsi_order_range_key(table_name=None): + dynamodb = boto3.resource("dynamodb", region_name="us-east-1") + table = dynamodb.Table(table_name) + + table.put_item(Item={"pk": "1", "gsi_pk": "john", "gsi_sk": "4"}) + table.put_item(Item={"pk": "2", "gsi_pk": "john", "gsi_sk": "1"}) + table.put_item(Item={"pk": "3", "gsi_pk": "john", "gsi_sk": "2"}) + table.put_item(Item={"pk": "4", "gsi_pk": "john", "gsi_sk": "3"}) + + for i in range(1, 3): + table.put_item(Item={"pk": f"{i}", "gsi_pk": "john", "gsi_sk": f"{i}"}) + + for i in range(3, 5): + table.put_item(Item={"pk": f"{i}", "gsi_pk": "john", "gsi_sk": f"{7-i}"}) + + page = table.scan(IndexName="test_gsi") + items = page["Items"] + + # whit same PK on GSI, the items are ordered by range key of GSI + assert items[0]["gsi_sk"] == "1" + assert items[1]["gsi_sk"] == "2" + assert items[2]["gsi_sk"] == "3" + assert items[3]["gsi_sk"] == "4" + + +@pytest.mark.aws_verified +@dynamodb_aws_verified(add_range=False, add_gsi_range=True) +def test_scan_gsi_exlusive_start_key(table_name=None): + dynamodb = boto3.resource("dynamodb", region_name="us-east-1") + table = dynamodb.Table(table_name) + + for i in range(1, 5): + table.put_item(Item={"pk": f"{i}", "gsi_pk": "john", "gsi_sk": f"{5-i}"}) + + page = table.scan(IndexName="test_gsi", Limit=3) + assert len(page["Items"]) == 3 + page = table.scan( + IndexName="test_gsi", Limit=3, ExclusiveStartKey=page["LastEvaluatedKey"] + ) + # the total are four, we are using the ExclusiveStartKey of third item, only one left + assert len(page["Items"]) == 1 + + @mock_aws class TestFilterExpression: def test_scan_filter(self): From 626c3605c239e7cc6c0cecf5fee4771b593964f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Feb 2025 19:47:46 -0100 Subject: [PATCH 022/103] chore: update SSM default parameters (#8580) --- moto/ssm/resources/regions.json | 54 +++++++++++++++++++++++++++++ moto/ssm/resources/services.json | 58 ++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) diff --git a/moto/ssm/resources/regions.json b/moto/ssm/resources/regions.json index ed4e036737d6..5982ea9f11ba 100644 --- a/moto/ssm/resources/regions.json +++ b/moto/ssm/resources/regions.json @@ -1057,6 +1057,15 @@ "marketplace": { "Value": "marketplace" }, + "mcs": { + "Value": "mcs", + "endpoint": { + "Value": "cassandra.af-south-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS, TLS" + } + }, "mediaconnect": { "Value": "mediaconnect", "endpoint": { @@ -23460,6 +23469,15 @@ "Value": "HTTPS, HTTP" } }, + "sagemaker": { + "Value": "sagemaker", + "endpoint": { + "Value": "api.sagemaker.ap-southeast-5.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sagemaker-metrics": { "Value": "sagemaker-metrics", "endpoint": { @@ -23713,6 +23731,15 @@ "Value": "HTTPS" } }, + "acm-pca": { + "Value": "acm-pca", + "endpoint": { + "Value": "acm-pca.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "https" + } + }, "apigateway": { "Value": "apigateway", "endpoint": { @@ -27542,6 +27569,15 @@ "Value": "HTTPS" } }, + "pca-connector-ad": { + "Value": "pca-connector-ad", + "endpoint": { + "Value": "pca-connector-ad.ca-west-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "pca-connector-scep": { "Value": "pca-connector-scep", "endpoint": { @@ -48828,6 +48864,15 @@ "Value": "HTTPS" } }, + "pca-connector-ad": { + "Value": "pca-connector-ad", + "endpoint": { + "Value": "pca-connector-ad.il-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "pca-connector-scep": { "Value": "pca-connector-scep", "endpoint": { @@ -52560,6 +52605,15 @@ "Value": "HTTPS" } }, + "acm-pca": { + "Value": "acm-pca", + "endpoint": { + "Value": "acm-pca.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "https" + } + }, "apigateway": { "Value": "apigateway", "endpoint": { diff --git a/moto/ssm/resources/services.json b/moto/ssm/resources/services.json index 282229650689..15b7096c2395 100644 --- a/moto/ssm/resources/services.json +++ b/moto/ssm/resources/services.json @@ -1056,6 +1056,15 @@ "Value": "https" } }, + "ap-southeast-7": { + "Value": "ap-southeast-7", + "endpoint": { + "Value": "acm-pca.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "https" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { @@ -1191,6 +1200,15 @@ "Value": "https" } }, + "mx-central-1": { + "Value": "mx-central-1", + "endpoint": { + "Value": "acm-pca.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "https" + } + }, "sa-east-1": { "Value": "sa-east-1", "endpoint": { @@ -41858,6 +41876,15 @@ "Value": "https://aws.amazon.com/keyspaces/" }, "regions": { + "af-south-1": { + "Value": "af-south-1", + "endpoint": { + "Value": "cassandra.af-south-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS, TLS" + } + }, "ap-east-1": { "Value": "ap-east-1", "endpoint": { @@ -48625,6 +48652,10 @@ } }, "pca-connector-ad": { + "Value": "pca-connector-ad", + "longName": { + "Value": "Private CA Connector for Active Directory" + }, "regions": { "af-south-1": { "Value": "af-south-1", @@ -48734,6 +48765,15 @@ "Value": "HTTPS" } }, + "ca-west-1": { + "Value": "ca-west-1", + "endpoint": { + "Value": "pca-connector-ad.ca-west-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "eu-central-1": { "Value": "eu-central-1", "endpoint": { @@ -48806,6 +48846,15 @@ "Value": "HTTPS" } }, + "il-central-1": { + "Value": "il-central-1", + "endpoint": { + "Value": "pca-connector-ad.il-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "me-central-1": { "Value": "me-central-1", "endpoint": { @@ -57573,6 +57622,15 @@ "Value": "HTTPS" } }, + "ap-southeast-5": { + "Value": "ap-southeast-5", + "endpoint": { + "Value": "api.sagemaker.ap-southeast-5.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { From d49cf26a040d85a9aba5c77045d31b8554f3469e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 03:01:45 +0000 Subject: [PATCH 023/103] Bump ruby/setup-ruby from 1.215.0 to 1.218.0 (#8584) --- .github/workflows/tests_sdk_ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests_sdk_ruby.yml b/.github/workflows/tests_sdk_ruby.yml index 17c303ace1bf..6795c7062af2 100644 --- a/.github/workflows/tests_sdk_ruby.yml +++ b/.github/workflows/tests_sdk_ruby.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Ruby ${{ matrix.ruby-version }} - uses: ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 + uses: ruby/setup-ruby@d781c1b4ed31764801bfae177617bb0446f5ef8d with: ruby-version: ${{ matrix.ruby-version }} - name: Set up Python 3.8 From 7804781ac6743d5ed14fe4a892e0f25ebe1ff778 Mon Sep 17 00:00:00 2001 From: Aman Date: Tue, 11 Feb 2025 16:06:06 -0500 Subject: [PATCH 024/103] Security Hub - get_findings and batch_import_findings (#8518) --- IMPLEMENTATION_COVERAGE.md | 86 +++++++++++- docs/docs/services/securityhub.rst | 112 +++++++++++++++ moto/backend_index.py | 1 + moto/securityhub/__init__.py | 1 + moto/securityhub/exceptions.py | 21 +++ moto/securityhub/models.py | 122 ++++++++++++++++ moto/securityhub/responses.py | 61 ++++++++ moto/securityhub/urls.py | 12 ++ tests/test_securityhub/__init__.py | 0 tests/test_securityhub/test_securityhub.py | 156 +++++++++++++++++++++ 10 files changed, 571 insertions(+), 1 deletion(-) create mode 100644 docs/docs/services/securityhub.rst create mode 100644 moto/securityhub/__init__.py create mode 100644 moto/securityhub/exceptions.py create mode 100644 moto/securityhub/models.py create mode 100644 moto/securityhub/responses.py create mode 100644 moto/securityhub/urls.py create mode 100644 tests/test_securityhub/__init__.py create mode 100644 tests/test_securityhub/test_securityhub.py diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index be482c7dcf99..68d5289fc598 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -8232,6 +8232,91 @@ - [ ] validate_resource_policy +## securityhub +
+2% implemented + +- [ ] accept_administrator_invitation +- [ ] accept_invitation +- [ ] batch_delete_automation_rules +- [ ] batch_disable_standards +- [ ] batch_enable_standards +- [ ] batch_get_automation_rules +- [ ] batch_get_configuration_policy_associations +- [ ] batch_get_security_controls +- [ ] batch_get_standards_control_associations +- [X] batch_import_findings +- [ ] batch_update_automation_rules +- [ ] batch_update_findings +- [ ] batch_update_standards_control_associations +- [ ] create_action_target +- [ ] create_automation_rule +- [ ] create_configuration_policy +- [ ] create_finding_aggregator +- [ ] create_insight +- [ ] create_members +- [ ] decline_invitations +- [ ] delete_action_target +- [ ] delete_configuration_policy +- [ ] delete_finding_aggregator +- [ ] delete_insight +- [ ] delete_invitations +- [ ] delete_members +- [ ] describe_action_targets +- [ ] describe_hub +- [ ] describe_organization_configuration +- [ ] describe_products +- [ ] describe_standards +- [ ] describe_standards_controls +- [ ] disable_import_findings_for_product +- [ ] disable_organization_admin_account +- [ ] disable_security_hub +- [ ] disassociate_from_administrator_account +- [ ] disassociate_from_master_account +- [ ] disassociate_members +- [ ] enable_import_findings_for_product +- [ ] enable_organization_admin_account +- [ ] enable_security_hub +- [ ] get_administrator_account +- [ ] get_configuration_policy +- [ ] get_configuration_policy_association +- [ ] get_enabled_standards +- [ ] get_finding_aggregator +- [ ] get_finding_history +- [X] get_findings +- [ ] get_insight_results +- [ ] get_insights +- [ ] get_invitations_count +- [ ] get_master_account +- [ ] get_members +- [ ] get_security_control_definition +- [ ] invite_members +- [ ] list_automation_rules +- [ ] list_configuration_policies +- [ ] list_configuration_policy_associations +- [ ] list_enabled_products_for_import +- [ ] list_finding_aggregators +- [ ] list_invitations +- [ ] list_members +- [ ] list_organization_admin_accounts +- [ ] list_security_control_definitions +- [ ] list_standards_control_associations +- [ ] list_tags_for_resource +- [ ] start_configuration_policy_association +- [ ] start_configuration_policy_disassociation +- [ ] tag_resource +- [ ] untag_resource +- [ ] update_action_target +- [ ] update_configuration_policy +- [ ] update_finding_aggregator +- [ ] update_findings +- [ ] update_insight +- [ ] update_organization_configuration +- [ ] update_security_control +- [ ] update_security_hub_configuration +- [ ] update_standards_control +
+ ## service-quotas
10% implemented @@ -9624,7 +9709,6 @@ - savingsplans - schemas - security-ir -- securityhub - securitylake - serverlessrepo - servicecatalog diff --git a/docs/docs/services/securityhub.rst b/docs/docs/services/securityhub.rst new file mode 100644 index 000000000000..a395350a148b --- /dev/null +++ b/docs/docs/services/securityhub.rst @@ -0,0 +1,112 @@ +.. _implementedservice_securityhub: + +.. |start-h3| raw:: html + +

+ +.. |end-h3| raw:: html + +

+ +=========== +securityhub +=========== + +.. autoclass:: moto.securityhub.models.SecurityHubBackend + +|start-h3| Implemented features for this service |end-h3| + +- [ ] accept_administrator_invitation +- [ ] accept_invitation +- [ ] batch_delete_automation_rules +- [ ] batch_disable_standards +- [ ] batch_enable_standards +- [ ] batch_get_automation_rules +- [ ] batch_get_configuration_policy_associations +- [ ] batch_get_security_controls +- [ ] batch_get_standards_control_associations +- [X] batch_import_findings + + Import findings in batch to SecurityHub. + + Args: + findings: List of finding dictionaries to import + + Returns: + Tuple of (failed_count, success_count, failed_findings) + + +- [ ] batch_update_automation_rules +- [ ] batch_update_findings +- [ ] batch_update_standards_control_associations +- [ ] create_action_target +- [ ] create_automation_rule +- [ ] create_configuration_policy +- [ ] create_finding_aggregator +- [ ] create_insight +- [ ] create_members +- [ ] decline_invitations +- [ ] delete_action_target +- [ ] delete_configuration_policy +- [ ] delete_finding_aggregator +- [ ] delete_insight +- [ ] delete_invitations +- [ ] delete_members +- [ ] describe_action_targets +- [ ] describe_hub +- [ ] describe_organization_configuration +- [ ] describe_products +- [ ] describe_standards +- [ ] describe_standards_controls +- [ ] disable_import_findings_for_product +- [ ] disable_organization_admin_account +- [ ] disable_security_hub +- [ ] disassociate_from_administrator_account +- [ ] disassociate_from_master_account +- [ ] disassociate_members +- [ ] enable_import_findings_for_product +- [ ] enable_organization_admin_account +- [ ] enable_security_hub +- [ ] get_administrator_account +- [ ] get_configuration_policy +- [ ] get_configuration_policy_association +- [ ] get_enabled_standards +- [ ] get_finding_aggregator +- [ ] get_finding_history +- [X] get_findings + + Returns findings based on optional filters and sort criteria. + + +- [ ] get_insight_results +- [ ] get_insights +- [ ] get_invitations_count +- [ ] get_master_account +- [ ] get_members +- [ ] get_security_control_definition +- [ ] invite_members +- [ ] list_automation_rules +- [ ] list_configuration_policies +- [ ] list_configuration_policy_associations +- [ ] list_enabled_products_for_import +- [ ] list_finding_aggregators +- [ ] list_invitations +- [ ] list_members +- [ ] list_organization_admin_accounts +- [ ] list_security_control_definitions +- [ ] list_standards_control_associations +- [ ] list_tags_for_resource +- [ ] start_configuration_policy_association +- [ ] start_configuration_policy_disassociation +- [ ] tag_resource +- [ ] untag_resource +- [ ] update_action_target +- [ ] update_configuration_policy +- [ ] update_finding_aggregator +- [ ] update_findings +- [ ] update_insight +- [ ] update_organization_configuration +- [ ] update_security_control +- [ ] update_security_hub_configuration +- [ ] update_standards_control + diff --git a/moto/backend_index.py b/moto/backend_index.py index 9d8abc8295d6..2135505927e2 100644 --- a/moto/backend_index.py +++ b/moto/backend_index.py @@ -184,6 +184,7 @@ ("scheduler", re.compile("https?://scheduler\\.(.+)\\.amazonaws\\.com")), ("sdb", re.compile("https?://sdb\\.(.+)\\.amazonaws\\.com")), ("secretsmanager", re.compile("https?://secretsmanager\\.(.+)\\.amazonaws\\.com")), + ("securityhub", re.compile("https?://securityhub\\.(.+)\\.amazonaws\\.com")), ( "servicediscovery", re.compile("https?://(data-)?servicediscovery\\.(.+)\\.amazonaws\\.com"), diff --git a/moto/securityhub/__init__.py b/moto/securityhub/__init__.py new file mode 100644 index 000000000000..68a7cc517c9e --- /dev/null +++ b/moto/securityhub/__init__.py @@ -0,0 +1 @@ +from .models import securityhub_backends # noqa: F401 diff --git a/moto/securityhub/exceptions.py b/moto/securityhub/exceptions.py new file mode 100644 index 000000000000..1ff50c3d8573 --- /dev/null +++ b/moto/securityhub/exceptions.py @@ -0,0 +1,21 @@ +"""Exceptions raised by the securityhub service.""" + +from moto.core.exceptions import JsonRESTError + + +class SecurityHubClientError(JsonRESTError): + code = 400 + + +class _InvalidOperationException(SecurityHubClientError): + def __init__(self, error_type: str, op: str, msg: str): + super().__init__( + error_type, + "An error occurred (%s) when calling the %s operation: %s" + % (error_type, op, msg), + ) + + +class InvalidInputException(_InvalidOperationException): + def __init__(self, op: str, msg: str): + super().__init__("InvalidInputException", op, msg) diff --git a/moto/securityhub/models.py b/moto/securityhub/models.py new file mode 100644 index 000000000000..afcd6fcaed4d --- /dev/null +++ b/moto/securityhub/models.py @@ -0,0 +1,122 @@ +"""SecurityHubBackend class with methods for supported APIs.""" + +from typing import Any, Dict, List, Optional, Tuple + +from moto.core.base_backend import BackendDict, BaseBackend +from moto.core.common_models import BaseModel +from moto.securityhub.exceptions import InvalidInputException +from moto.utilities.paginator import paginate + + +class Finding(BaseModel): + def __init__(self, finding_id: str, finding_data: Dict[str, Any]): + self.id = finding_id + self.data = finding_data + + def as_dict(self) -> Dict[str, Any]: + return self.data + + +class SecurityHubBackend(BaseBackend): + """Implementation of SecurityHub APIs.""" + + PAGINATION_MODEL = { + "get_findings": { + "input_token": "next_token", + "limit_key": "max_results", + "limit_default": 100, + "unique_attribute": "Id", + "fail_on_invalid_token": True, + } + } + + def __init__(self, region_name: str, account_id: str): + super().__init__(region_name, account_id) + self.findings: List[Finding] = [] + + @paginate(pagination_model=PAGINATION_MODEL) + def get_findings( + self, + filters: Optional[Dict[str, Any]] = None, + sort_criteria: Optional[List[Dict[str, str]]] = None, + max_results: Optional[int] = None, + next_token: Optional[str] = None, + ) -> List[Dict[str, str]]: + """ + Returns findings based on optional filters and sort criteria. + """ + if max_results is not None: + try: + max_results = int(max_results) + if max_results < 1 or max_results > 100: + raise InvalidInputException( + op="GetFindings", + msg="MaxResults must be a number between 1 and 100", + ) + except ValueError: + raise InvalidInputException( + op="GetFindings", msg="MaxResults must be a number greater than 0" + ) + + findings = self.findings + + # TODO: Apply filters if provided + # TODO: Apply sort criteria if provided + + return [f.as_dict() for f in findings] + + def batch_import_findings( + self, findings: List[Dict[str, Any]] + ) -> Tuple[int, int, List[Dict[str, Any]]]: + """ + Import findings in batch to SecurityHub. + + Args: + findings: List of finding dictionaries to import + + Returns: + Tuple of (failed_count, success_count, failed_findings) + """ + failed_count = 0 + success_count = 0 + failed_findings = [] + + for finding_data in findings: + try: + if ( + not isinstance(finding_data["Resources"], list) + or len(finding_data["Resources"]) == 0 + ): + raise InvalidInputException( + op="BatchImportFindings", + msg="Finding must contain at least one resource in the Resources array", + ) + + finding_id = finding_data["Id"] + + existing_finding = next( + (f for f in self.findings if f.id == finding_id), None + ) + + if existing_finding: + existing_finding.data.update(finding_data) + else: + new_finding = Finding(finding_id, finding_data) + self.findings.append(new_finding) + + success_count += 1 + + except Exception as e: + failed_count += 1 + failed_findings.append( + { + "Id": finding_data.get("Id", ""), + "ErrorCode": "InvalidInput", + "ErrorMessage": str(e), + } + ) + + return failed_count, success_count, failed_findings + + +securityhub_backends = BackendDict(SecurityHubBackend, "securityhub") diff --git a/moto/securityhub/responses.py b/moto/securityhub/responses.py new file mode 100644 index 000000000000..8ce0ce1e2855 --- /dev/null +++ b/moto/securityhub/responses.py @@ -0,0 +1,61 @@ +"""Handles incoming securityhub requests, invokes methods, returns responses.""" + +import json + +from moto.core.responses import BaseResponse + +from .models import SecurityHubBackend, securityhub_backends + + +class SecurityHubResponse(BaseResponse): + def __init__(self) -> None: + super().__init__(service_name="securityhub") + + @property + def securityhub_backend(self) -> SecurityHubBackend: + return securityhub_backends[self.current_account][self.region] + + def get_findings(self) -> str: + filters = self._get_param("Filters") + sort_criteria = self._get_param("SortCriteria") + max_results = self._get_param("MaxResults") + next_token = self._get_param("NextToken") + + findings, next_token = self.securityhub_backend.get_findings( + filters=filters, + sort_criteria=sort_criteria, + max_results=max_results, + next_token=next_token, + ) + + response = {"Findings": findings, "NextToken": next_token} + return json.dumps(response) + + def batch_import_findings(self) -> str: + raw_body = self.body + if isinstance(raw_body, bytes): + raw_body = raw_body.decode("utf-8") + body = json.loads(raw_body) + + findings = body.get("Findings", []) + + failed_count, success_count, failed_findings = ( + self.securityhub_backend.batch_import_findings( + findings=findings, + ) + ) + + return json.dumps( + { + "FailedCount": failed_count, + "FailedFindings": [ + { + "ErrorCode": finding.get("ErrorCode"), + "ErrorMessage": finding.get("ErrorMessage"), + "Id": finding.get("Id"), + } + for finding in failed_findings + ], + "SuccessCount": success_count, + } + ) diff --git a/moto/securityhub/urls.py b/moto/securityhub/urls.py new file mode 100644 index 000000000000..162e66d8ad4e --- /dev/null +++ b/moto/securityhub/urls.py @@ -0,0 +1,12 @@ +"""securityhub base URL and path.""" + +from .responses import SecurityHubResponse + +url_bases = [ + r"https?://securityhub\.(.+)\.amazonaws\.com", +] + +url_paths = { + "{0}/findings$": SecurityHubResponse.dispatch, + "{0}/findings/import$": SecurityHubResponse.dispatch, +} diff --git a/tests/test_securityhub/__init__.py b/tests/test_securityhub/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/tests/test_securityhub/test_securityhub.py b/tests/test_securityhub/test_securityhub.py new file mode 100644 index 000000000000..3a95c07a4923 --- /dev/null +++ b/tests/test_securityhub/test_securityhub.py @@ -0,0 +1,156 @@ +"""Unit tests for securityhub-supported APIs.""" + +import boto3 +import pytest +from botocore.exceptions import ClientError + +from moto import mock_aws +from moto.core import DEFAULT_ACCOUNT_ID + + +@mock_aws +def test_get_findings(): + client = boto3.client("securityhub", region_name="us-east-1") + + test_finding = { + "AwsAccountId": DEFAULT_ACCOUNT_ID, + "CreatedAt": "2024-01-01T00:00:00.001Z", + "UpdatedAt": "2024-01-01T00:00:00.000Z", + "Description": "Test finding description", + "GeneratorId": "test-generator", + "Id": "test-finding-001", + "ProductArn": f"arn:aws:securityhub:{client.meta.region_name}:{DEFAULT_ACCOUNT_ID}:product/{DEFAULT_ACCOUNT_ID}/default", + "Resources": [{"Id": "test-resource", "Type": "AwsEc2Instance"}], + "SchemaVersion": "2018-10-08", + "Severity": {"Label": "HIGH"}, + "Title": "Test Finding", + "Types": ["Software and Configuration Checks"], + } + + import_response = client.batch_import_findings(Findings=[test_finding]) + assert import_response["SuccessCount"] == 1 + + response = client.get_findings() + + assert "Findings" in response + assert isinstance(response["Findings"], list) + assert len(response["Findings"]) == 1 + finding = response["Findings"][0] + assert finding["Id"] == "test-finding-001" + assert finding["SchemaVersion"] == "2018-10-08" + + +@mock_aws +def test_batch_import_findings(): + client = boto3.client("securityhub", region_name="us-east-2") + + valid_finding = { + "AwsAccountId": DEFAULT_ACCOUNT_ID, + "CreatedAt": "2024-01-01T00:00:00.000Z", + "UpdatedAt": "2024-01-01T00:00:00.000Z", + "Description": "Test finding description", + "GeneratorId": "test-generator", + "Id": "test-finding-001", + "ProductArn": f"arn:aws:securityhub:{client.meta.region_name}:{DEFAULT_ACCOUNT_ID}:product/{DEFAULT_ACCOUNT_ID}/default", + "Resources": [{"Id": "test-resource", "Type": "AwsEc2Instance"}], + "SchemaVersion": "2018-10-08", + "Severity": {"Label": "HIGH"}, + "Title": "Test Finding", + "Types": ["Software and Configuration Checks"], + } + + response = client.batch_import_findings(Findings=[valid_finding]) + assert response["SuccessCount"] == 1 + assert response["FailedCount"] == 0 + assert response["FailedFindings"] == [] + + invalid_finding = valid_finding.copy() + invalid_finding["Id"] = "test-finding-002" + invalid_finding["Severity"]["Label"] = "INVALID_LABEL" + + response = client.batch_import_findings(Findings=[invalid_finding]) + + assert response["SuccessCount"] == 1 + assert response["FailedCount"] == 0 + assert len(response["FailedFindings"]) == 0 + + +@mock_aws +def test_get_findings_invalid_parameters(): + client = boto3.client("securityhub", region_name="us-east-1") + + with pytest.raises(ClientError) as exc: + client.get_findings(MaxResults=101) + + err = exc.value.response["Error"] + assert err["Code"] == "InvalidInputException" + assert "MaxResults must be a number between 1 and 100" in err["Message"] + + +@mock_aws +def test_batch_import_multiple_findings(): + client = boto3.client("securityhub", region_name="us-east-1") + + findings = [ + { + "AwsAccountId": DEFAULT_ACCOUNT_ID, + "CreatedAt": "2024-01-01T00:00:00.000Z", + "UpdatedAt": "2024-01-01T00:00:00.000Z", + "Description": f"Test finding description {i}", + "GeneratorId": "test-generator", + "Id": f"test-finding-{i:03d}", + "ProductArn": f"arn:aws:securityhub:{client.meta.region_name}:{DEFAULT_ACCOUNT_ID}:product/{DEFAULT_ACCOUNT_ID}/default", + "Resources": [{"Id": f"test-resource-{i}", "Type": "AwsEc2Instance"}], + "SchemaVersion": "2018-10-08", + "Severity": {"Label": "HIGH"}, + "Title": f"Test Finding {i}", + "Types": ["Software and Configuration Checks"], + } + for i in range(1, 4) + ] + + import_response = client.batch_import_findings(Findings=findings) + assert import_response["SuccessCount"] == 3 + assert import_response["FailedCount"] == 0 + assert import_response["FailedFindings"] == [] + + get_response = client.get_findings() + assert "Findings" in get_response + assert isinstance(get_response["Findings"], list) + assert len(get_response["Findings"]) == 3 + + imported_ids = {finding["Id"] for finding in get_response["Findings"]} + expected_ids = {f"test-finding-{i:03d}" for i in range(1, 4)} + assert imported_ids == expected_ids + + +@mock_aws +def test_get_findings_max_results(): + client = boto3.client("securityhub", region_name="us-east-1") + + findings = [ + { + "AwsAccountId": DEFAULT_ACCOUNT_ID, + "CreatedAt": "2024-01-01T00:00:00.000Z", + "UpdatedAt": "2024-01-01T00:00:00.000Z", + "Description": f"Test finding description {i}", + "GeneratorId": "test-generator", + "Id": f"test-finding-{i:03d}", + "ProductArn": f"arn:aws:securityhub:{client.meta.region_name}:{DEFAULT_ACCOUNT_ID}:product/{DEFAULT_ACCOUNT_ID}/default", + "Resources": [{"Id": f"test-resource-{i}", "Type": "AwsEc2Instance"}], + "SchemaVersion": "2018-10-08", + "Severity": {"Label": "HIGH"}, + "Title": f"Test Finding {i}", + "Types": ["Software and Configuration Checks"], + } + for i in range(1, 4) + ] + + import_response = client.batch_import_findings(Findings=findings) + assert import_response["SuccessCount"] == 3 + + get_response = client.get_findings(MaxResults=1) + assert "Findings" in get_response + assert isinstance(get_response["Findings"], list) + assert len(get_response["Findings"]) == 1 + assert "NextToken" in get_response From 777ca53026b94c7dc9237de34c84ee41e6e1f2f6 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Tue, 11 Feb 2025 20:38:10 -0100 Subject: [PATCH 025/103] CognitoIDP: AccessTokens and IDTokens now contain the jti and origin_jti values (#8581) --- moto/cognitoidp/models.py | 59 +++++++---- tests/test_cognitoidp/test_cognitoidp.py | 121 +++++++++++++++++++++++ 2 files changed, 162 insertions(+), 18 deletions(-) diff --git a/moto/cognitoidp/models.py b/moto/cognitoidp/models.py index 4439041a7503..0783bee9cd22 100644 --- a/moto/cognitoidp/models.py +++ b/moto/cognitoidp/models.py @@ -433,7 +433,7 @@ def __init__( self.groups: Dict[str, CognitoIdpGroup] = OrderedDict() self.users: Dict[str, CognitoIdpUser] = OrderedDict() self.resource_servers: Dict[str, CognitoResourceServer] = OrderedDict() - self.refresh_tokens: Dict[str, Optional[Tuple[str, str]]] = {} + self.refresh_tokens: Dict[str, Optional[Tuple[str, str, str]]] = {} self.access_tokens: Dict[str, Tuple[str, str]] = {} self.id_tokens: Dict[str, Tuple[str, str]] = {} @@ -534,6 +534,7 @@ def create_jwt( "token_use": token_use, "auth_time": now, "exp": now + expires_in, + "jti": str(random.uuid4()), } username_is_email = "email" in self.extended_config.get( "UsernameAttributes", [] @@ -574,8 +575,14 @@ def add_custom_attributes(self, custom_attributes: List[Dict[str, str]]) -> None for attribute in attributes: self.schema_attributes[attribute.name] = attribute - def create_id_token(self, client_id: str, username: str) -> Tuple[str, int]: + def create_id_token( + self, client_id: str, username: str, origin_jti: str + ) -> Tuple[str, int]: + """ + :returns: (id_token, expires_in) + """ extra_data = self.get_user_extra_data_by_client_id(client_id, username) + extra_data["origin_jti"] = origin_jti user = self._get_user(username) for attr in user.attributes: if attr["Name"].startswith("custom:"): @@ -588,13 +595,24 @@ def create_id_token(self, client_id: str, username: str) -> Tuple[str, int]: self.id_tokens[id_token] = (client_id, username) return id_token, expires_in - def create_refresh_token(self, client_id: str, username: str) -> str: + def create_refresh_token(self, client_id: str, username: str) -> Tuple[str, str]: + """ + :returns: (refresh_token, origin_jti) + """ refresh_token = str(random.uuid4()) - self.refresh_tokens[refresh_token] = (client_id, username) - return refresh_token + origin_jti = str(random.uuid4()) + self.refresh_tokens[refresh_token] = (client_id, username, origin_jti) + return refresh_token, origin_jti - def create_access_token(self, client_id: str, username: str) -> Tuple[str, int]: - extra_data = {} + def create_access_token( + self, client_id: str, username: str, origin_jti: str + ) -> Tuple[str, int]: + """ + :returns: (access_token, expires_in) + """ + extra_data: Dict[str, Any] = { + "origin_jti": origin_jti, + } user = self._get_user(username) if len(user.groups) > 0: extra_data["cognito:groups"] = [group.group_name for group in user.groups] @@ -611,12 +629,14 @@ def create_tokens_from_refresh_token( res = self.refresh_tokens[refresh_token] if res is None: raise NotAuthorizedError(refresh_token) - client_id, username = res + client_id, username, origin_jti = res if not username: raise NotAuthorizedError(refresh_token) - access_token, expires_in = self.create_access_token(client_id, username) - id_token, _ = self.create_id_token(client_id, username) + access_token, expires_in = self.create_access_token( + client_id, username, origin_jti=origin_jti + ) + id_token, _ = self.create_id_token(client_id, username, origin_jti=origin_jti) return access_token, id_token, expires_in def get_user_extra_data_by_client_id( @@ -640,11 +660,10 @@ def sign_out(self, username: str) -> None: for token, token_tuple in list(self.refresh_tokens.items()): if token_tuple is None: continue - _, logged_in_user = token_tuple + _, logged_in_user, _ = token_tuple if username == logged_in_user: self.refresh_tokens[token] = None - for access_token, token_tuple in list(self.access_tokens.items()): - _, logged_in_user = token_tuple + for access_token, (_, logged_in_user) in list(self.access_tokens.items()): if username == logged_in_user: self.access_tokens.pop(access_token) @@ -1427,7 +1446,7 @@ def _log_user_in( client: CognitoIdpUserPoolClient, username: str, ) -> Dict[str, Dict[str, Any]]: - refresh_token = user_pool.create_refresh_token(client.id, username) + refresh_token, _ = user_pool.create_refresh_token(client.id, username) access_token, id_token, expires_in = user_pool.create_tokens_from_refresh_token( refresh_token ) @@ -2083,11 +2102,15 @@ def initiate_auth( "Session": session, } - access_token, expires_in = user_pool.create_access_token( + new_refresh_token, origin_jti = user_pool.create_refresh_token( client_id, username ) - id_token, _ = user_pool.create_id_token(client_id, username) - new_refresh_token = user_pool.create_refresh_token(client_id, username) + access_token, expires_in = user_pool.create_access_token( + client_id, username, origin_jti=origin_jti + ) + id_token, _ = user_pool.create_id_token( + client_id, username, origin_jti=origin_jti + ) return { "AuthenticationResult": { @@ -2107,7 +2130,7 @@ def initiate_auth( if res is None: raise NotAuthorizedError("Refresh Token has been revoked") - client_id, username = res + client_id, username, _ = res if not username: raise ResourceNotFoundError(username) diff --git a/tests/test_cognitoidp/test_cognitoidp.py b/tests/test_cognitoidp/test_cognitoidp.py index 06028c1412ed..1a6cfb57deb1 100644 --- a/tests/test_cognitoidp/test_cognitoidp.py +++ b/tests/test_cognitoidp/test_cognitoidp.py @@ -9,6 +9,7 @@ import time import uuid from unittest import SkipTest, mock +from uuid import UUID import boto3 import pycognito @@ -1547,6 +1548,126 @@ def test_group_in_access_token(user_pool=None, user_pool_client=None): assert payload.claims["cognito:groups"] == [group_name] +@pytest.mark.aws_verified +@cognitoidp_aws_verified( + generate_secret=True, explicit_auth_flows=["ADMIN_NO_SRP_AUTH"] +) +def test_jti_in_tokens(user_pool=None, user_pool_client=None): + conn = boto3.client("cognito-idp", "us-west-2") + + username = str(uuid.uuid4()) + temporary_password = "P2$Sword" + new_password = "P2$Sword" + user_pool_id = user_pool["UserPool"]["Id"] + user_attribute_value = str(uuid.uuid4()) + client_id = user_pool_client["UserPoolClient"]["ClientId"] + client_secret = user_pool_client["UserPoolClient"]["ClientSecret"] + secret_hash = pycognito.aws_srp.AWSSRP.get_secret_hash( + username=username, client_id=client_id, client_secret=client_secret + ) + + conn.admin_create_user( + UserPoolId=user_pool_id, + Username=username, + TemporaryPassword=temporary_password, + UserAttributes=[{"Name": "given_name", "Value": user_attribute_value}], + ) + + result = conn.admin_initiate_auth( + UserPoolId=user_pool_id, + ClientId=client_id, + AuthFlow="ADMIN_NO_SRP_AUTH", + AuthParameters={ + "USERNAME": username, + "PASSWORD": temporary_password, + "SECRET_HASH": secret_hash, + }, + ) + + # This sets a new password and logs the user in (creates tokens) + initial_login = conn.admin_respond_to_auth_challenge( + UserPoolId=user_pool_id, + Session=result["Session"], + ClientId=client_id, + ChallengeName="NEW_PASSWORD_REQUIRED", + ChallengeResponses={ + "USERNAME": username, + "NEW_PASSWORD": new_password, + "SECRET_HASH": secret_hash, + }, + )["AuthenticationResult"] + + initial_access_claims = get_jwt_payload(initial_login["AccessToken"]).claims + + initial_id_claims = get_jwt_payload(initial_login["IdToken"]).claims + + # origin_jti + # A token-revocation identifier associated with your user's refresh token. + # Should be the same for all tokens, for a single session + assert UUID(initial_access_claims["origin_jti"]) + assert initial_access_claims["origin_jti"] == initial_id_claims["origin_jti"] + + # jti + # The unique identifier of the JWT. + # Should be unique for every token + assert UUID(initial_access_claims["jti"]) + assert UUID(initial_id_claims["jti"]) + assert initial_access_claims["jti"] != initial_id_claims["jti"] + + # refresh current session + refreshed_tokens = conn.initiate_auth( + ClientId=client_id, + AuthFlow="REFRESH_TOKEN", + AuthParameters={ + "SECRET_HASH": secret_hash, + "REFRESH_TOKEN": initial_login["RefreshToken"], + }, + )["AuthenticationResult"] + refresh_access_claims = get_jwt_payload(refreshed_tokens["AccessToken"]).claims + + refresh_id_claims = get_jwt_payload(refreshed_tokens["IdToken"]).claims + + assert initial_access_claims["origin_jti"] == refresh_access_claims["origin_jti"] + assert refresh_access_claims["origin_jti"] == refresh_id_claims["origin_jti"] + + assert initial_access_claims["jti"] != refresh_access_claims["jti"] + assert refresh_access_claims["jti"] != refresh_id_claims["jti"] + + # new session + aws_srp = pycognito.aws_srp.AWSSRP( + username=username, + password=new_password, + pool_id=user_pool_id, + client_id=client_id, + client_secret=client_secret, + client=conn, + ) + auth_params = aws_srp.get_auth_params() + + result = conn.initiate_auth( + ClientId=client_id, + AuthFlow="USER_SRP_AUTH", + AuthParameters=auth_params, + ) + + challenge_response = aws_srp.process_challenge( + result["ChallengeParameters"], auth_params + ) + new_session = conn.respond_to_auth_challenge( + ClientId=client_id, + ChallengeName=result["ChallengeName"], + ChallengeResponses=challenge_response, + )["AuthenticationResult"] + new_access_claims = get_jwt_payload(new_session["AccessToken"]).claims + + new_id_claims = get_jwt_payload(new_session["IdToken"]).claims + + assert initial_access_claims["origin_jti"] != new_access_claims["origin_jti"] + assert new_access_claims["origin_jti"] == new_id_claims["origin_jti"] + + assert new_access_claims["jti"] != new_id_claims["jti"] + + @mock_aws def test_other_attributes_in_id_token(): conn = boto3.client("cognito-idp", "us-west-2") From 595eaf5b36acffd7ea0dd75d1d4853c4f072a23e Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 14:48:38 -0800 Subject: [PATCH 026/103] RDS: Fix filter tests for clustered instances The original implementation just passed in a dummy cluster id, but since we now validate that the cluster(s) exist we have to create them in the test setup. --- tests/test_rds/test_filters.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/test_rds/test_filters.py b/tests/test_rds/test_filters.py index 3cbde201bd6a..d8bacce64f1c 100644 --- a/tests/test_rds/test_filters.py +++ b/tests/test_rds/test_filters.py @@ -15,7 +15,13 @@ def setup_class(cls): for i in range(10): instance_identifier = f"db-instance-{i}" cluster_identifier = f"db-cluster-{i}" - engine = "postgres" if (i % 3) else "mysql" + engine = "aurora-postgresql" if (i % 3) else "aurora-mysql" + client.create_db_cluster( + DBClusterIdentifier=cluster_identifier, + Engine=engine, + MasterUsername="root", + MasterUserPassword="password", + ) client.create_db_instance( DBInstanceIdentifier=instance_identifier, DBClusterIdentifier=cluster_identifier, @@ -108,7 +114,7 @@ def test_multiple_filters(self): "Name": "db-instance-id", "Values": ["db-instance-0", "db-instance-1", "db-instance-3"], }, - {"Name": "engine", "Values": ["mysql", "oracle"]}, + {"Name": "engine", "Values": ["aurora-mysql", "oracle"]}, ] ) returned_identifiers = [ @@ -148,7 +154,7 @@ def test_valid_db_instance_identifier_with_exclusive_filter(self): DBInstanceIdentifier="db-instance-0", Filters=[ {"Name": "db-instance-id", "Values": ["db-instance-1"]}, - {"Name": "engine", "Values": ["postgres"]}, + {"Name": "engine", "Values": ["aurora-postgresql"]}, ], ) returned_identifiers = [ @@ -164,7 +170,7 @@ def test_valid_db_instance_identifier_with_inclusive_filter(self): DBInstanceIdentifier="db-instance-0", Filters=[ {"Name": "db-instance-id", "Values": ["db-instance-1"]}, - {"Name": "engine", "Values": ["mysql", "postgres"]}, + {"Name": "engine", "Values": ["aurora-mysql", "aurora-postgresql"]}, ], ) returned_identifiers = [ From 179b1e8ddae46ec2341392e520018392b69ca478 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 21:56:51 -0800 Subject: [PATCH 027/103] RDS: Fix Cluster DBSubnetGroupName/DBSubnetGroup discrepancy The input for an RDS DBCluster contains a DBSubnetGroupName parameter. The output is DBSubnetGroup and, despite the documentation saying otherwise, is also just the name of the subnet group. --- moto/rds/models.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 01b8e81d8b1e..a5924d7681f7 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -308,6 +308,7 @@ def __init__( copy_tags_to_snapshot: Optional[bool] = False, database_name: Optional[str] = None, db_cluster_parameter_group_name: Optional[str] = None, + db_subnet_group_name: Optional[str] = None, port: Optional[int] = None, preferred_backup_window: Optional[str] = "01:37-02:07", preferred_maintenance_window: Optional[str] = "wed:02:40-wed:03:10", @@ -387,7 +388,7 @@ def __init__( "default.neptune1.3" if self.engine == "neptune" else "default.aurora8.0" ) self.parameter_group = db_cluster_parameter_group_name or default_pg - self.subnet_group = kwargs.get("db_subnet_group_name") or "default" + self.db_subnet_group = db_subnet_group_name or "default" self.url_identifier = "".join( random.choice(string.ascii_lowercase + string.digits) for _ in range(12) ) @@ -500,10 +501,6 @@ def master_user_password(self, val: str) -> None: ) self._master_user_password = val - @property - def db_subnet_group(self) -> str: - return self.subnet_group - @property def enable_http_endpoint(self) -> bool: return self._enable_http_endpoint From 4fe68d10690c7f64abf11b29a47bacfd84b2f1d1 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 22:00:05 -0800 Subject: [PATCH 028/103] RDS: AllocatedStorage for Clusters should be set to 1 Cluster storage scales as needed, and responses from AWS always have this value set to 1. --- moto/rds/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index a5924d7681f7..6ab27a64b13c 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -662,9 +662,9 @@ def default_storage_type(iops: Any) -> str: # type: ignore[misc] @staticmethod def default_allocated_storage(engine: str, storage_type: str) -> int: return { - "aurora": {"gp2": 0, "io1": 0, "standard": 0}, - "aurora-mysql": {"gp2": 20, "io1": 100, "standard": 10}, - "aurora-postgresql": {"gp2": 20, "io1": 100, "standard": 10}, + "aurora": {"gp2": 1, "io1": 1, "standard": 1}, + "aurora-mysql": {"gp2": 1, "io1": 1, "standard": 1}, + "aurora-postgresql": {"gp2": 1, "io1": 1, "standard": 1}, "mysql": {"gp2": 20, "io1": 100, "standard": 5}, "neptune": {"gp2": 0, "io1": 0, "standard": 0}, "postgres": {"gp2": 20, "io1": 100, "standard": 5}, From c268a0be56d98dab6297176e5bd282ae2c933c7c Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 22:00:58 -0800 Subject: [PATCH 029/103] RDS: Fix tags param for DBSnapshot --- moto/rds/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 6ab27a64b13c..f649d9e2a1e6 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1225,14 +1225,14 @@ def __init__( database: DBInstance, snapshot_id: str, snapshot_type: str, - tags: List[Dict[str, str]], + tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, ): super().__init__(backend) self.database = database self.snapshot_id = snapshot_id self.snapshot_type = snapshot_type - self.tags = tags + self.tags = tags or [] self.status = "available" self.created_at = iso_8601_datetime_with_milliseconds() self.original_created_at = original_created_at or self.created_at From 29456cca81525b730bfb377164f74916b3131dd4 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 23:25:22 -0800 Subject: [PATCH 030/103] RDS: Add conditional attribute initialization for clustered DBInstances For DBInstances that are part of a DBCluster, certain attributes are managed by the cluster. --- moto/rds/models.py | 89 ++++++++++++++++++++++++++-------------------- 1 file changed, 51 insertions(+), 38 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index f649d9e2a1e6..52720ba831a5 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -760,6 +760,7 @@ def __init__( db_instance_identifier: str, db_instance_class: str, engine: str, + engine_version: Optional[str] = None, port: Optional[int] = None, allocated_storage: Optional[int] = None, max_allocated_storage: Optional[int] = None, @@ -799,20 +800,7 @@ def __init__( raise InvalidParameterValue( f"Value {self.engine} for parameter Engine is invalid. Reason: engine {self.engine} not supported" ) - self.engine_version = kwargs.get("engine_version", None) - if not self.engine_version and self.engine in self.default_engine_versions: - self.engine_version = self.default_engine_versions[self.engine] self.iops = iops - self.storage_encrypted = storage_encrypted - if self.storage_encrypted: - self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") - else: - self.kms_key_id = kwargs.get("kms_key_id") - self.storage_type = storage_type - if self.storage_type is None: - self.storage_type = DBInstance.default_storage_type(iops=self.iops) - self.master_username = master_username - self.master_user_password = master_user_password self.master_user_secret_kms_key_id = kwargs.get("master_user_secret_kms_key_id") self.master_user_secret_status = kwargs.get( "master_user_secret_status", "active" @@ -821,14 +809,6 @@ def __init__( "manage_master_user_password", False ) self.auto_minor_version_upgrade = auto_minor_version_upgrade - self.allocated_storage = ( - allocated_storage - or DBInstance.default_allocated_storage( - engine=self.engine, storage_type=self.storage_type - ) - ) - self.max_allocated_storage = max_allocated_storage or self.allocated_storage - self.db_cluster_identifier: Optional[str] = db_cluster_identifier self.db_instance_identifier = db_instance_identifier self.source_db_identifier = source_db_instance_identifier self.db_instance_class = db_instance_class @@ -839,7 +819,6 @@ def __init__( self.instance_create_time = iso_8601_datetime_with_milliseconds() self.publicly_accessible = publicly_accessible self.copy_tags_to_snapshot = copy_tags_to_snapshot - self.backup_retention_period = backup_retention_period self.availability_zone = kwargs.get("availability_zone") if not self.availability_zone: self.availability_zone = f"{self.region}a" @@ -858,14 +837,6 @@ def __init__( default_sg = ec2_backend.get_default_security_group(default_vpc.id) self.vpc_security_group_ids.append(default_sg.id) # type: ignore self.preferred_maintenance_window = preferred_maintenance_window.lower() - self.preferred_backup_window = preferred_backup_window - msg = valid_preferred_maintenance_window( - self.preferred_maintenance_window, - self.preferred_backup_window, - ) - if msg: - raise RDSClientError("InvalidParameterValue", msg) - self.db_parameter_group_name = db_parameter_group_name if ( self.db_parameter_group_name @@ -874,7 +845,6 @@ def __init__( not in rds_backends[self.account_id][self.region].db_parameter_groups ): raise DBParameterGroupNotFoundError(self.db_parameter_group_name) - self.license_model = license_model self.option_group_name = option_group_name self.option_group_supplied = self.option_group_name is not None @@ -891,7 +861,6 @@ def __init__( } if not self.option_group_name and self.engine in self.default_option_groups: self.option_group_name = self.default_option_groups[self.engine] - self.character_set_name = character_set_name self.enable_iam_database_authentication = kwargs.get( "enable_iam_database_authentication", False ) @@ -900,9 +869,56 @@ def __init__( self.dbi_resource_id = "db-M5ENSHXFPU6XHZ4G4ZEI5QIO2U" self.tags = tags or [] self.deletion_protection = deletion_protection - self.enabled_cloudwatch_logs_exports = enable_cloudwatch_logs_exports or [] + self.db_cluster_identifier = db_cluster_identifier + if self.db_cluster_identifier is None: + self.storage_type = storage_type or DBInstance.default_storage_type( + iops=self.iops + ) + self.allocated_storage = ( + allocated_storage + or DBInstance.default_allocated_storage( + engine=self.engine, storage_type=self.storage_type + ) + ) + self.max_allocated_storage = max_allocated_storage or self.allocated_storage + self.storage_encrypted = storage_encrypted + if self.storage_encrypted: + self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") + else: + self.kms_key_id = kwargs.get("kms_key_id") + self.backup_retention_period = backup_retention_period + self.character_set_name = character_set_name + self.engine_version = engine_version + if not self.engine_version and self.engine in self.default_engine_versions: + self.engine_version = self.default_engine_versions[self.engine] + self.master_username = master_username + self.master_user_password = master_user_password + self.preferred_backup_window = preferred_backup_window + msg = valid_preferred_maintenance_window( + self.preferred_maintenance_window, + self.preferred_backup_window, + ) + if msg: + raise RDSClientError("InvalidParameterValue", msg) + else: + # TODO: Refactor this into a DBClusterInstance subclass + self.cluster = self.backend.clusters[self.db_cluster_identifier] + self.allocated_storage = self.cluster.allocated_storage or 1 + self.max_allocated_storage = ( + self.cluster.allocated_storage or self.allocated_storage + ) + self.storage_encrypted = self.cluster.storage_encrypted or True + self.preferred_backup_window = self.cluster.preferred_backup_window + self.backup_retention_period = self.cluster.backup_retention_period or 1 + self.character_set_name = self.cluster.character_set_name + self.engine_version = self.cluster.engine_version + self.master_username = self.cluster.master_username + self.master_user_password = self.cluster.master_user_password + if self.db_name is None: + self.db_name = self.cluster.database_name + @property def name(self) -> str: return self.db_instance_identifier @@ -965,11 +981,8 @@ def master_user_secret(self) -> Dict[str, Any] | None: # type: ignore[misc] @property def max_allocated_storage(self) -> Optional[int]: - return ( - self._max_allocated_storage - if self._max_allocated_storage != self.allocated_storage - else None - ) + value: int = self._max_allocated_storage or 0 # type: ignore[has-type] + return value if value != self.allocated_storage else None @max_allocated_storage.setter def max_allocated_storage(self, value: int) -> None: From d0b67afef3e5356cafbcb6e1fcdf28b443585ba7 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Tue, 11 Feb 2025 23:52:40 -0800 Subject: [PATCH 031/103] RDS: Pull DBInstance attributes at time DBSnapshot is created Previous implementation stored a reference to the underlying DBInstance, which meant our DBSnapshot values would change if the DBInstance changed. --- moto/rds/models.py | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 52720ba831a5..2d2f1624dfb9 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1242,7 +1242,7 @@ def __init__( original_created_at: Optional[str] = None, ): super().__init__(backend) - self.database = database + self.database = database # TODO: Refactor this out. self.snapshot_id = snapshot_id self.snapshot_type = snapshot_type self.tags = tags or [] @@ -1250,31 +1250,28 @@ def __init__( self.created_at = iso_8601_datetime_with_milliseconds() self.original_created_at = original_created_at or self.created_at self.attributes: List[Dict[str, Any]] = [] + # Database attributes are captured at the time the snapshot is taken. + self.allocated_storage = database.allocated_storage + self.dbi_resource_id = database.dbi_resource_id + self.db_instance_identifier = database.db_instance_identifier + self.engine = database.engine + self.engine_version = database.engine_version + self.encrypted = database.storage_encrypted + self.iam_database_authentication_enabled = ( + database.enable_iam_database_authentication + ) + self.instance_create_time = database.created + self.master_username = database.master_username + self.port = database.port @property def name(self) -> str: return self.snapshot_id - @property - def dbi_resource_id(self) -> str: - return self.database.dbi_resource_id - - @property - def engine(self) -> str: - return self.database.engine - @property def db_snapshot_identifier(self) -> str: return self.snapshot_id - @property - def db_instance_identifier(self) -> str: - return self.database.db_instance_identifier - - @property - def iam_database_authentication_enabled(self) -> bool: - return self.database.enable_iam_database_authentication - @property def snapshot_create_time(self) -> str: return self.created_at @@ -1889,8 +1886,12 @@ def restore_db_instance_from_db_snapshot( new_instance_props = {} for key, value in original_database.__dict__.items(): - if key != "backend": - new_instance_props[key] = copy.deepcopy(value) + if key not in [ + "backend", + "db_parameter_group_name", + "vpc_security_group_ids", + ]: + new_instance_props[key] = copy.copy(value) if not original_database.option_group_supplied: # If the option group is not supplied originally, the 'option_group_name' will receive a default value # Force this reconstruction, and prevent any validation on the default value From 8b4922f02e9e917c425d841007fb2354167f7f11 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 01:12:02 -0800 Subject: [PATCH 032/103] RDS: Add automatic backup on DBInstance creation Some test cases that were calling describe_db_snapshots without parameters and making assumptions about the response have been rewritten with explicit intent (e.g. supplying the SnapshotType parameter). --- moto/rds/models.py | 25 ++++++++++++++++++++++++- moto/rds/responses.py | 3 ++- tests/test_rds/test_filters.py | 2 +- tests/test_rds/test_rds.py | 33 ++++++++++++++++++++++----------- 4 files changed, 49 insertions(+), 14 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 2d2f1624dfb9..9f1b77a0fdda 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -12,7 +12,7 @@ from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel -from moto.core.utils import iso_8601_datetime_with_milliseconds +from moto.core.utils import iso_8601_datetime_with_milliseconds, utcnow from moto.ec2.models import ec2_backends from moto.moto_api._internal import mock_random as random from moto.utilities.utils import ARN_PARTITION_REGEX, load_resource @@ -1218,6 +1218,11 @@ def delete(self, account_id: str, region_name: str) -> None: backend = rds_backends[account_id][region_name] backend.delete_db_instance(self.db_instance_identifier) # type: ignore[arg-type] + def save_automated_backup(self) -> None: + time_stamp = utcnow().strftime("%Y-%m-%d-%H-%M") + snapshot_id = f"rds:{self.db_instance_identifier}-{time_stamp}" + self.backend.create_auto_snapshot(self.db_instance_identifier, snapshot_id) + class DBSnapshot(RDSBaseModel): resource_type = "snapshot" @@ -1674,6 +1679,7 @@ def create_db_instance(self, db_kwargs: Dict[str, Any]) -> DBInstance: ) cluster.cluster_members.append(database_id) self.databases[database_id] = database + database.save_automated_backup() return database def create_auto_snapshot( @@ -1798,6 +1804,7 @@ def describe_db_snapshots( self, db_instance_identifier: Optional[str], db_snapshot_identifier: str, + snapshot_type: Optional[str] = None, filters: Optional[Dict[str, Any]] = None, ) -> List[DBSnapshot]: snapshots = self.database_snapshots @@ -1809,6 +1816,18 @@ def describe_db_snapshots( filters = merge_filters( filters, {"db-snapshot-id": [db_snapshot_identifier]} ) + snapshot_types = ( + ["automated", "manual"] + if ( + snapshot_type is None + and (filters is not None and "snapshot-type" not in filters) + ) + else [snapshot_type] + if snapshot_type is not None + else [] + ) + if snapshot_types: + filters = merge_filters(filters, {"snapshot-type": snapshot_types}) if filters: snapshots = self._filter_resources(snapshots, filters, DBSnapshot) if db_snapshot_identifier and not snapshots and not db_instance_identifier: @@ -2630,6 +2649,10 @@ def list_tags_for_resource(self, arn: str) -> List[Dict[str, str]]: arn_breakdown = arn.split(":") resource_type = arn_breakdown[len(arn_breakdown) - 2] resource_name = arn_breakdown[len(arn_breakdown) - 1] + # FIXME: HACK for automated snapshots + if resource_type == "rds": + resource_type = arn_breakdown[-3] + resource_name = arn_breakdown[-2] + ":" + arn_breakdown[-1] resource = self._find_resource(resource_type, resource_name) if resource: return resource.get_tags() diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 1a346260b19e..4951f83d43f0 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -173,10 +173,11 @@ def copy_db_snapshot(self) -> TYPE_RESPONSE: def describe_db_snapshots(self) -> TYPE_RESPONSE: db_instance_identifier = self.parameters.get("DBInstanceIdentifier") db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") + snapshot_type = self.parameters.get("SnapshotType") filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} snapshots = self.backend.describe_db_snapshots( - db_instance_identifier, db_snapshot_identifier, filter_dict + db_instance_identifier, db_snapshot_identifier, snapshot_type, filter_dict ) result = {"DBSnapshots": snapshots} return self.serialize(result) diff --git a/tests/test_rds/test_filters.py b/tests/test_rds/test_filters.py index d8bacce64f1c..1bae4face150 100644 --- a/tests/test_rds/test_filters.py +++ b/tests/test_rds/test_filters.py @@ -302,7 +302,7 @@ def test_snapshot_type_filter(self): snapshots = self.client.describe_db_snapshots( Filters=[{"Name": "snapshot-type", "Values": ["automated"]}] )["DBSnapshots"] - assert len(snapshots) == 0 + assert len(snapshots) == 2 def test_multiple_filters(self): snapshots = self.client.describe_db_snapshots( diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 4d3e7088d7f7..b5c14207899f 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -251,8 +251,8 @@ def test_stop_database(client): DBInstanceIdentifier=mydb["DBInstanceIdentifier"], DBSnapshotIdentifier="rocky4570-rds-snap", ) - response = client.describe_db_snapshots() - assert response["DBSnapshots"] == [] + with pytest.raises(ClientError): + client.describe_db_snapshots(DBSnapshotIdentifier="rocky4570-rds-snap") @mock_aws @@ -273,7 +273,7 @@ def test_start_database(client): ) assert response["ResponseMetadata"]["HTTPStatusCode"] == 200 assert response["DBInstance"]["DBInstanceStatus"] == "stopped" - response = client.describe_db_snapshots() + response = client.describe_db_snapshots(DBSnapshotIdentifier="rocky4570-rds-snap") assert response["DBSnapshots"][0]["DBSnapshotIdentifier"] == "rocky4570-rds-snap" response = client.start_db_instance( DBInstanceIdentifier=mydb["DBInstanceIdentifier"] @@ -281,7 +281,7 @@ def test_start_database(client): assert response["ResponseMetadata"]["HTTPStatusCode"] == 200 assert response["DBInstance"]["DBInstanceStatus"] == "available" # starting database should not remove snapshot - response = client.describe_db_snapshots() + response = client.describe_db_snapshots(DBSnapshotIdentifier="rocky4570-rds-snap") assert response["DBSnapshots"][0]["DBSnapshotIdentifier"] == "rocky4570-rds-snap" # test stopping database, create snapshot with existing snapshot already # created should throw error @@ -830,6 +830,15 @@ def test_create_db_snapshots_copy_tags(client): Tags=[{"Key": "foo", "Value": "bar"}, {"Key": "foo1", "Value": "bar1"}], ) + snapshot = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", SnapshotType="automated" + )["DBSnapshots"][0] + result = client.list_tags_for_resource(ResourceName=snapshot["DBSnapshotArn"]) + assert result["TagList"] == [ + {"Value": "bar", "Key": "foo"}, + {"Value": "bar1", "Key": "foo1"}, + ] + snapshot = client.create_db_snapshot( DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="g-1" )["DBSnapshot"] @@ -854,9 +863,9 @@ def test_create_db_snapshots_with_tags(client): Tags=[{"Key": "foo", "Value": "bar"}, {"Key": "foo1", "Value": "bar1"}], ) - snapshots = client.describe_db_snapshots(DBInstanceIdentifier="db-primary-1")[ - "DBSnapshots" - ] + snapshots = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", SnapshotType="manual" + )["DBSnapshots"] assert snapshots[0]["DBSnapshotIdentifier"] == "g-1" assert snapshots[0]["TagList"] == [ {"Value": "bar", "Key": "foo"}, @@ -995,7 +1004,9 @@ def test_describe_db_snapshots(client): assert created["Engine"] == "postgres" assert created["SnapshotType"] == "manual" - by_database_id = client.describe_db_snapshots(DBInstanceIdentifier="db-primary-1") + by_database_id = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", SnapshotType="manual" + ) by_snapshot_id = client.describe_db_snapshots(DBSnapshotIdentifier="snapshot-1") assert by_snapshot_id["DBSnapshots"] == by_database_id["DBSnapshots"] @@ -1005,9 +1016,9 @@ def test_describe_db_snapshots(client): client.create_db_snapshot( DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="snapshot-2" ) - snapshots = client.describe_db_snapshots(DBInstanceIdentifier="db-primary-1")[ - "DBSnapshots" - ] + snapshots = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", SnapshotType="manual" + )["DBSnapshots"] assert len(snapshots) == 2 From 266bafa836b4280c7fbefd571c5b34e52108b893 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 09:56:15 -0800 Subject: [PATCH 033/103] RDS: Add support for DeleteDBInstance.SkipFinalSnapshot parameter Also fixed snapshot type for final snapshot ("manual"). --- moto/rds/models.py | 13 ++++++++++--- moto/rds/responses.py | 6 +----- tests/test_rds/test_rds.py | 30 ++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+), 8 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 9f1b77a0fdda..30f98ba37b47 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1995,7 +1995,10 @@ def find_db_from_id(self, db_id: str) -> DBInstance: return backend.describe_db_instances(db_name)[0] def delete_db_instance( - self, db_instance_identifier: str, db_snapshot_name: Optional[str] = None + self, + db_instance_identifier: str, + final_db_snapshot_identifier: Optional[str] = None, + skip_final_snapshot: Optional[bool] = False, ) -> DBInstance: self._validate_db_identifier(db_instance_identifier) if db_instance_identifier in self.databases: @@ -2003,8 +2006,12 @@ def delete_db_instance( raise InvalidParameterCombination( "Cannot delete protected DB Instance, please disable deletion protection and try again." ) - if db_snapshot_name: - self.create_auto_snapshot(db_instance_identifier, db_snapshot_name) + if final_db_snapshot_identifier and not skip_final_snapshot: + self.create_db_snapshot( + db_instance_identifier, + final_db_snapshot_identifier, + snapshot_type="manual", + ) database = self.databases.pop(db_instance_identifier) if database.is_replica: primary = self.find_db_from_id(database.source_db_instance_identifier) # type: ignore diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 4951f83d43f0..1b02d709d669 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -121,16 +121,12 @@ def modify_db_instance(self) -> TYPE_RESPONSE: return self.serialize(result) def delete_db_instance(self) -> TYPE_RESPONSE: - db_instance_identifier = self.parameters.get("DBInstanceIdentifier") db_snapshot_name = self.parameters.get("FinalDBSnapshotIdentifier") if db_snapshot_name is not None: self.backend.validate_db_snapshot_identifier( db_snapshot_name, parameter_name="FinalDBSnapshotIdentifier" ) - - database = self.backend.delete_db_instance( - db_instance_identifier, db_snapshot_name - ) + database = self.backend.delete_db_instance(**self.parameters) result = {"DBInstance": database} return self.serialize(result) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index b5c14207899f..70dfbabe8ea4 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -2685,6 +2685,36 @@ def test_modify_db_snapshot_attribute(client): assert snapshot_attributes[0]["AttributeValues"] == ["Test2", "Test3"] +@mock_aws +@pytest.mark.parametrize("skip_final_snapshot", [False, True]) +def test_delete_db_instance_with_skip_final_snapshot_param(client, skip_final_snapshot): + create_db_instance(DBInstanceIdentifier="db-primary-1") + + deletion_kwargs = dict( + DBInstanceIdentifier="db-primary-1", SkipFinalSnapshot=skip_final_snapshot + ) + if not skip_final_snapshot: + deletion_kwargs["FinalDBSnapshotIdentifier"] = "final-snapshot" + client.delete_db_instance(**deletion_kwargs) + + with pytest.raises(ClientError): + client.describe_db_instances(DBInstanceIdentifier="db-primary-1") + + resp = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", + DBSnapshotIdentifier="final-snapshot", + SnapshotType="manual", + ) + snapshot_count = len(resp["DBSnapshots"]) + valid_conditions = [ + (skip_final_snapshot and snapshot_count == 0), + (snapshot_count == 1 and not skip_final_snapshot), + ] + assert any(valid_conditions) + if not skip_final_snapshot: + assert resp["DBSnapshots"][0]["DBSnapshotIdentifier"] == "final-snapshot" + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 47b8a5fafe76f2dde88c7228299050b5e09f888d Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 10:19:05 -0800 Subject: [PATCH 034/103] RDS: Add support for DeleteDBInstance.DeleteAutomatedBackups parameter Minor fix-ups required for two existing tests. --- moto/rds/models.py | 11 ++++++++- tests/test_rds/test_rds.py | 46 ++++++++++++++++++++++++++++++++------ 2 files changed, 49 insertions(+), 8 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 30f98ba37b47..a4ad71e702ba 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1803,7 +1803,7 @@ def describe_db_instances( def describe_db_snapshots( self, db_instance_identifier: Optional[str], - db_snapshot_identifier: str, + db_snapshot_identifier: Optional[str] = None, snapshot_type: Optional[str] = None, filters: Optional[Dict[str, Any]] = None, ) -> List[DBSnapshot]: @@ -1999,6 +1999,7 @@ def delete_db_instance( db_instance_identifier: str, final_db_snapshot_identifier: Optional[str] = None, skip_final_snapshot: Optional[bool] = False, + delete_automated_backups: Optional[bool] = True, ) -> DBInstance: self._validate_db_identifier(db_instance_identifier) if db_instance_identifier in self.databases: @@ -2020,6 +2021,14 @@ def delete_db_instance( self.clusters[database.db_cluster_identifier].cluster_members.remove( db_instance_identifier ) + automated_snapshots = self.describe_db_snapshots( + db_instance_identifier, + db_snapshot_identifier=None, + snapshot_type="automated", + ) + if delete_automated_backups: + for snapshot in automated_snapshots: + self.delete_db_snapshot(snapshot.db_snapshot_identifier) database.status = "deleting" return database else: diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 70dfbabe8ea4..303c50447c52 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -743,11 +743,11 @@ def test_delete_database(client): assert len(instances["DBInstances"]) == 0 # Saved the snapshot - snapshot = client.describe_db_snapshots(DBInstanceIdentifier="db-1")["DBSnapshots"][ - 0 - ] + snapshot = client.describe_db_snapshots( + DBInstanceIdentifier="db-1", DBSnapshotIdentifier="primary-1-snapshot" + )["DBSnapshots"][0] assert snapshot["Engine"] == "postgres" - assert snapshot["SnapshotType"] == "automated" + assert snapshot["SnapshotType"] == "manual" @mock_aws @@ -922,13 +922,16 @@ def test_copy_db_snapshots_snapshot_type_is_always_manual(client): db_instance_identifier = create_db_instance()["DBInstanceIdentifier"] client.delete_db_instance( DBInstanceIdentifier=db_instance_identifier, - FinalDBSnapshotIdentifier="final-snapshot", + SkipFinalSnapshot=True, + DeleteAutomatedBackups=False, ) - snapshot1 = client.describe_db_snapshots()["DBSnapshots"][0] + snapshot1 = client.describe_db_snapshots( + DBInstanceIdentifier=db_instance_identifier, SnapshotType="automated" + )["DBSnapshots"][0] assert snapshot1["SnapshotType"] == "automated" snapshot2 = client.copy_db_snapshot( - SourceDBSnapshotIdentifier="final-snapshot", + SourceDBSnapshotIdentifier=snapshot1["DBSnapshotIdentifier"], TargetDBSnapshotIdentifier="snapshot-2", )["DBSnapshot"] assert snapshot2["SnapshotType"] == "manual" @@ -2715,6 +2718,35 @@ def test_delete_db_instance_with_skip_final_snapshot_param(client, skip_final_sn assert resp["DBSnapshots"][0]["DBSnapshotIdentifier"] == "final-snapshot" +@mock_aws +@pytest.mark.parametrize("delete_automated_backups", [False, True]) +def test_delete_db_instance_with_delete_automated_backups_param( + client, + delete_automated_backups, +): + create_db_instance(DBInstanceIdentifier="db-primary-1") + + client.delete_db_instance( + DBInstanceIdentifier="db-primary-1", + SkipFinalSnapshot=True, + DeleteAutomatedBackups=delete_automated_backups, + ) + + with pytest.raises(ClientError): + client.describe_db_instances(DBInstanceIdentifier="db-primary-1") + + resp = client.describe_db_snapshots( + DBInstanceIdentifier="db-primary-1", + SnapshotType="automated", + ) + automated_snapshot_count = len(resp["DBSnapshots"]) + valid_conditions = [ + (delete_automated_backups and automated_snapshot_count == 0), + (automated_snapshot_count >= 1 and not delete_automated_backups), + ] + assert any(valid_conditions) + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 353d1b39d57a93c3c632050194ce9c8b57c94b18 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 11:00:38 -0800 Subject: [PATCH 035/103] RDS: Minimum viable implementation of DescribeDBInstanceAutomatedBackups --- moto/rds/models.py | 39 +++++++++++++++++++++++++++++ moto/rds/responses.py | 7 ++++++ tests/test_rds/test_rds.py | 51 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 97 insertions(+) diff --git a/moto/rds/models.py b/moto/rds/models.py index a4ad71e702ba..f668849ac2d7 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1606,6 +1606,25 @@ def name(self) -> str: return self.unique_id +class DBInstanceAutomatedBackup(XFormedAttributeAccessMixin): + def __init__( + self, + backend: RDSBackend, + db_instance_identifier: str, + automated_snapshots: List[DBSnapshot], + ) -> None: + self.backend = backend + self.db_instance_identifier = db_instance_identifier + self.automated_snapshots = automated_snapshots + + @property + def status(self) -> str: + status = "active" + if self.db_instance_identifier not in self.backend.databases: + status = "retained" + return status + + class RDSBackend(BaseBackend): def __init__(self, region_name: str, account_id: str): super().__init__(region_name, account_id) @@ -3076,6 +3095,26 @@ def modify_db_proxy_target_group( target_group.session_pinning_filters = config["SessionPinningFilters"] return target_group + def describe_db_instance_automated_backups( + self, + db_instance_identifier: Optional[str] = None, + **_: Any, + ) -> List[DBInstanceAutomatedBackup]: + snapshots = list(self.database_snapshots.values()) + if db_instance_identifier is not None: + snapshots = [ + snap + for snap in self.database_snapshots.values() + if snap.db_instance_identifier == db_instance_identifier + ] + snapshots_grouped = defaultdict(list) + for snapshot in snapshots: + if snapshot.snapshot_type == "automated": + snapshots_grouped[snapshot.db_instance_identifier].append(snapshot) + return [ + DBInstanceAutomatedBackup(self, k, v) for k, v in snapshots_grouped.items() + ] + class OptionGroup(RDSBaseModel): resource_type = "og" diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 1b02d709d669..de37bedb482c 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -776,6 +776,13 @@ def modify_db_proxy_target_group(self) -> TYPE_RESPONSE: result = {"DBProxyTargetGroup": group} return self.serialize(result) + def describe_db_instance_automated_backups(self) -> TYPE_RESPONSE: + automated_backups = self.backend.describe_db_instance_automated_backups( + **self.parameters + ) + result = {"DBInstanceAutomatedBackups": automated_backups} + return self.serialize(result) + def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: from moto.rds.exceptions import InvalidParameterValue diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 303c50447c52..18ad5ee9de8b 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -2747,6 +2747,57 @@ def test_delete_db_instance_with_delete_automated_backups_param( assert any(valid_conditions) +@mock_aws +def test_describe_db_instance_automated_backups_lifecycle(client): + instance_id = "test-instance" + create_db_instance(DBInstanceIdentifier=instance_id) + resp = client.describe_db_instance_automated_backups( + DBInstanceIdentifier=instance_id, + ) + automated_backups = resp["DBInstanceAutomatedBackups"] + assert len(automated_backups) == 1 + automated_backup = automated_backups[0] + assert automated_backup["DBInstanceIdentifier"] == instance_id + assert automated_backup["Status"] == "active" + + client.delete_db_instance( + DBInstanceIdentifier=instance_id, + SkipFinalSnapshot=True, + DeleteAutomatedBackups=False, + ) + + resp = client.describe_db_instance_automated_backups( + DBInstanceIdentifier=instance_id, + ) + automated_backups = resp["DBInstanceAutomatedBackups"] + assert len(automated_backups) == 1 + automated_backup = automated_backups[0] + assert automated_backup["DBInstanceIdentifier"] == instance_id + assert automated_backup["Status"] == "retained" + + +@mock_aws +def test_delete_automated_backups_by_default(client): + instance_id = "test-instance" + create_db_instance(DBInstanceIdentifier=instance_id) + resp = client.describe_db_instance_automated_backups( + DBInstanceIdentifier=instance_id, + ) + automated_backups = resp["DBInstanceAutomatedBackups"] + assert len(automated_backups) == 1 + automated_backup = automated_backups[0] + assert automated_backup["DBInstanceIdentifier"] == instance_id + assert automated_backup["Status"] == "active" + + client.delete_db_instance(DBInstanceIdentifier=instance_id, SkipFinalSnapshot=True) + + resp = client.describe_db_instance_automated_backups( + DBInstanceIdentifier=instance_id, + ) + automated_backups = resp["DBInstanceAutomatedBackups"] + assert len(automated_backups) == 0 + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From b204891be69f516c1ec1f450fea9aa33f4718610 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 11:14:39 -0800 Subject: [PATCH 036/103] RDS: Add AllocatedStorage guard clause for DBSnapshot and PIT restores --- moto/rds/models.py | 12 +++++-- tests/test_rds/test_rds.py | 73 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 2 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index f668849ac2d7..6f4f11fc5575 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1934,7 +1934,11 @@ def restore_db_instance_from_db_snapshot( # If the option group is not supplied originally, the 'option_group_name' will receive a default value # Force this reconstruction, and prevent any validation on the default value del new_instance_props["option_group_name"] - + if "allocated_storage" in overrides: + if overrides["allocated_storage"] < snapshot.allocated_storage: + raise InvalidParameterValue( + "The allocated storage size can't be less than the source snapshot or backup size." + ) for key, value in overrides.items(): if value: new_instance_props[key] = value @@ -1963,7 +1967,11 @@ def restore_db_instance_to_point_in_time( # If the option group is not supplied originally, the 'option_group_name' will receive a default value # Force this reconstruction, and prevent any validation on the default value del new_instance_props["option_group_name"] - + if "allocated_storage" in overrides: + if overrides["allocated_storage"] < db_instance.allocated_storage: + raise InvalidParameterValue( + "Allocated storage size can't be less than the source instance size." + ) for key, value in overrides.items(): if value: new_instance_props[key] = value diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 18ad5ee9de8b..b5958c5ca459 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -1,4 +1,5 @@ import datetime +import time from uuid import uuid4 import boto3 @@ -2798,6 +2799,78 @@ def test_delete_automated_backups_by_default(client): assert len(automated_backups) == 0 +@mock_aws +def test_restore_db_instance_from_db_snapshot_with_allocated_storage(client): + instance_id = "db-primary-1" + allocated_storage = 20 + create_db_instance( + DBInstanceIdentifier=instance_id, + AllocatedStorage=allocated_storage, + Engine="postgres", + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_id, DBSnapshotIdentifier="snap" + ).get("DBSnapshot") + snapshot_id = snapshot["DBSnapshotIdentifier"] + # Default + restored = client.restore_db_instance_from_db_snapshot( + DBInstanceIdentifier="restored-default", + DBSnapshotIdentifier=snapshot_id, + ).get("DBInstance") + assert restored["AllocatedStorage"] == allocated_storage + # More than snapshot allocated storage + restored = client.restore_db_instance_from_db_snapshot( + DBInstanceIdentifier="restored-with-allocated-storage", + DBSnapshotIdentifier=snapshot_id, + AllocatedStorage=allocated_storage * 2, + ).get("DBInstance") + assert restored["AllocatedStorage"] == allocated_storage * 2 + # Less than snapshot allocated storage + with pytest.raises(ClientError, match=r"allocated storage") as excinfo: + client.restore_db_instance_from_db_snapshot( + DBInstanceIdentifier="restored-with-too-little-storage", + DBSnapshotIdentifier=snapshot_id, + AllocatedStorage=int(allocated_storage / 2), + ) + exc = excinfo.value + assert exc.response["Error"]["Code"] == "InvalidParameterValue" + + +@mock_aws +def test_restore_db_instance_to_point_in_time_with_allocated_storage(client): + allocated_storage = 20 + details_source = create_db_instance(AllocatedStorage=allocated_storage) + source_identifier = details_source["DBInstanceIdentifier"] + restore_time = datetime.datetime.fromtimestamp( + time.time() - 600, datetime.timezone.utc + ).strftime("%Y-%m-%dT%H:%M:%SZ") + # Default + restored = client.restore_db_instance_to_point_in_time( + SourceDBInstanceIdentifier=source_identifier, + TargetDBInstanceIdentifier="pit-default", + RestoreTime=restore_time, + ).get("DBInstance") + assert restored["AllocatedStorage"] == allocated_storage + # More than source allocated storage + restored = client.restore_db_instance_to_point_in_time( + SourceDBInstanceIdentifier=source_identifier, + TargetDBInstanceIdentifier="pit-with-allocated-storage", + RestoreTime=restore_time, + AllocatedStorage=allocated_storage * 2, + ).get("DBInstance") + assert restored["AllocatedStorage"] == allocated_storage * 2 + # Less than source allocated storage + with pytest.raises(ClientError, match=r"Allocated storage") as excinfo: + client.restore_db_instance_to_point_in_time( + SourceDBInstanceIdentifier=source_identifier, + TargetDBInstanceIdentifier="pit-with-too-little-storage", + RestoreTime=restore_time, + AllocatedStorage=int(allocated_storage / 2), + ) + exc = excinfo.value + assert exc.response["Error"]["Code"] == "InvalidParameterValue" + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 38c667f99175859e28b6b8112b939907deaeb495 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 13:13:42 -0800 Subject: [PATCH 037/103] RDS: Add support for CopyDBSnapshot.KmsKeyId parameter --- moto/rds/models.py | 45 +++++++++++++++++++++++++++----------- moto/rds/responses.py | 8 +------ tests/test_rds/test_rds.py | 22 +++++++++++++++++++ 3 files changed, 55 insertions(+), 20 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 6f4f11fc5575..7a526d23a9c5 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -14,6 +14,7 @@ from moto.core.common_models import BaseModel, CloudFormationModel from moto.core.utils import iso_8601_datetime_with_milliseconds, utcnow from moto.ec2.models import ec2_backends +from moto.kms.models import KmsBackend, kms_backends from moto.moto_api._internal import mock_random as random from moto.utilities.utils import ARN_PARTITION_REGEX, load_resource @@ -910,6 +911,7 @@ def __init__( self.cluster.allocated_storage or self.allocated_storage ) self.storage_encrypted = self.cluster.storage_encrypted or True + self.kms_key_id = self.cluster.kms_key_id self.preferred_backup_window = self.cluster.preferred_backup_window self.backup_retention_period = self.cluster.backup_retention_period or 1 self.character_set_name = self.cluster.character_set_name @@ -1245,9 +1247,10 @@ def __init__( snapshot_type: str, tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, + kms_key_id: Optional[str] = None, ): super().__init__(backend) - self.database = database # TODO: Refactor this out. + self.database = copy.copy(database) # TODO: Refactor this out. self.snapshot_id = snapshot_id self.snapshot_type = snapshot_type self.tags = tags or [] @@ -1261,7 +1264,12 @@ def __init__( self.db_instance_identifier = database.db_instance_identifier self.engine = database.engine self.engine_version = database.engine_version - self.encrypted = database.storage_encrypted + if kms_key_id is not None: + self.kms_key_id = kms_key_id + self.encrypted = self.database.storage_encrypted = True + else: + self.kms_key_id = database.kms_key_id + self.encrypted = database.storage_encrypted self.iam_database_authentication_enabled = ( database.enable_iam_database_authentication ) @@ -1662,6 +1670,10 @@ def __init__(self, region_name: str, account_id: str): OptionGroup: self.option_groups, } + @property + def kms(self) -> KmsBackend: + return kms_backends[self.account_id][self.region_name] + @lru_cache() def db_cluster_options(self, engine) -> List[Dict[str, Any]]: # type: ignore from moto.rds.utils import decode_orderable_db_instance @@ -1717,6 +1729,7 @@ def create_db_snapshot( snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, + kms_key_id: Optional[str] = None, ) -> DBSnapshot: if isinstance(db_instance, str): database = self.databases.get(db_instance) @@ -1742,25 +1755,30 @@ def create_db_snapshot( snapshot_type, tags, original_created_at, + kms_key_id, ) self.database_snapshots[db_snapshot_identifier] = snapshot return snapshot def copy_db_snapshot( self, - source_snapshot_identifier: str, - target_snapshot_identifier: str, + source_db_snapshot_identifier: str, + target_db_snapshot_identifier: str, tags: Optional[List[Dict[str, str]]] = None, - copy_tags: bool = False, + copy_tags: Optional[bool] = False, + kms_key_id: Optional[str] = None, ) -> DBSnapshot: - if source_snapshot_identifier.startswith("arn:aws:rds:"): - source_snapshot_identifier = self.extract_snapshot_name_from_arn( - source_snapshot_identifier + if source_db_snapshot_identifier.startswith("arn:aws:rds:"): + source_db_snapshot_identifier = self.extract_snapshot_name_from_arn( + source_db_snapshot_identifier ) - if source_snapshot_identifier not in self.database_snapshots: - raise DBSnapshotNotFoundError(source_snapshot_identifier) - - source_snapshot = self.database_snapshots[source_snapshot_identifier] + if source_db_snapshot_identifier not in self.database_snapshots: + raise DBSnapshotNotFoundError(source_db_snapshot_identifier) + if kms_key_id is not None: + key = self.kms.describe_key(kms_key_id) + # We do this in case an alias was passed in. + kms_key_id = key.id + source_snapshot = self.database_snapshots[source_db_snapshot_identifier] # When tags are passed, AWS does NOT copy/merge tags of the # source snapshot, even when copy_tags=True is given. @@ -1770,9 +1788,10 @@ def copy_db_snapshot( return self.create_db_snapshot( db_instance=source_snapshot.database, - db_snapshot_identifier=target_snapshot_identifier, + db_snapshot_identifier=target_db_snapshot_identifier, tags=tags, original_created_at=source_snapshot.original_created_at, + kms_key_id=kms_key_id, ) def delete_db_snapshot(self, db_snapshot_identifier: str) -> DBSnapshot: diff --git a/moto/rds/responses.py b/moto/rds/responses.py index de37bedb482c..a1d90a9b903d 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -152,17 +152,11 @@ def create_db_snapshot(self) -> TYPE_RESPONSE: return self.serialize(result) def copy_db_snapshot(self) -> TYPE_RESPONSE: - source_snapshot_identifier = self.parameters.get("SourceDBSnapshotIdentifier") target_snapshot_identifier = self.parameters.get("TargetDBSnapshotIdentifier") - tags = self.parameters.get("Tags", []) - copy_tags = self.parameters.get("CopyTags") self.backend.validate_db_snapshot_identifier( target_snapshot_identifier, parameter_name="TargetDBSnapshotIdentifier" ) - - snapshot = self.backend.copy_db_snapshot( - source_snapshot_identifier, target_snapshot_identifier, tags, copy_tags - ) + snapshot = self.backend.copy_db_snapshot(**self.parameters) result = {"DBSnapshot": snapshot} return self.serialize(result) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index b5958c5ca459..5035cc90da01 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -2871,6 +2871,28 @@ def test_restore_db_instance_to_point_in_time_with_allocated_storage(client): assert exc.response["Error"]["Code"] == "InvalidParameterValue" +@mock_aws +def test_copy_unencrypted_db_snapshot_to_encrypted_db_snapshot(client): + instance_identifier = "unencrypted-db-instance" + create_db_instance(DBInstanceIdentifier=instance_identifier, StorageEncrypted=False) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_identifier, + DBSnapshotIdentifier="unencrypted-db-snapshot", + ).get("DBSnapshot") + assert snapshot["Encrypted"] is False + + client.copy_db_snapshot( + SourceDBSnapshotIdentifier="unencrypted-db-snapshot", + TargetDBSnapshotIdentifier="encrypted-db-snapshot", + KmsKeyId="alias/aws/rds", + ) + snapshot = client.describe_db_snapshots( + DBSnapshotIdentifier="encrypted-db-snapshot" + ).get("DBSnapshots")[0] + assert snapshot["DBSnapshotIdentifier"] == "encrypted-db-snapshot" + assert snapshot["Encrypted"] is True + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 5d224a2ddea49bc126c08106962bb5625c7dd315 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 14:24:31 -0800 Subject: [PATCH 038/103] RDS: Fix `resourcegrouptaggingapi` implementation * extract duplicate code into helper method * modify test to account for automated snapshots --- moto/rds/models.py | 37 ++++++++----------- .../test_resourcegroupstagging_rds.py | 17 +++++++-- 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 7a526d23a9c5..89abaf740088 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -2706,7 +2706,7 @@ def _find_resource(self, resource_type: str, resource_name: str) -> Any: if resource.arn.endswith(resource_name): return resource - def list_tags_for_resource(self, arn: str) -> List[Dict[str, str]]: + def _get_resource_for_tagging(self, arn: str) -> Any: if self.arn_regex.match(arn): arn_breakdown = arn.split(":") resource_type = arn_breakdown[len(arn_breakdown) - 2] @@ -2716,34 +2716,27 @@ def list_tags_for_resource(self, arn: str) -> List[Dict[str, str]]: resource_type = arn_breakdown[-3] resource_name = arn_breakdown[-2] + ":" + arn_breakdown[-1] resource = self._find_resource(resource_type, resource_name) - if resource: - return resource.get_tags() - return [] + return resource raise RDSClientError("InvalidParameterValue", f"Invalid resource name: {arn}") + def list_tags_for_resource(self, arn: str) -> List[Dict[str, str]]: + resource = self._get_resource_for_tagging(arn) + if resource: + return resource.get_tags() + return [] + def remove_tags_from_resource(self, arn: str, tag_keys: List[str]) -> None: - if self.arn_regex.match(arn): - arn_breakdown = arn.split(":") - resource_type = arn_breakdown[len(arn_breakdown) - 2] - resource_name = arn_breakdown[len(arn_breakdown) - 1] - resource = self._find_resource(resource_type, resource_name) - if resource: - resource.remove_tags(tag_keys) - return - raise RDSClientError("InvalidParameterValue", f"Invalid resource name: {arn}") + resource = self._get_resource_for_tagging(arn) + if resource: + resource.remove_tags(tag_keys) def add_tags_to_resource( # type: ignore[return] self, arn: str, tags: List[Dict[str, str]] ) -> List[Dict[str, str]]: - if self.arn_regex.match(arn): - arn_breakdown = arn.split(":") - resource_type = arn_breakdown[-2] - resource_name = arn_breakdown[-1] - resource = self._find_resource(resource_type, resource_name) - if resource: - return resource.add_tags(tags) - return [] - raise RDSClientError("InvalidParameterValue", f"Invalid resource name: {arn}") + resource = self._get_resource_for_tagging(arn) + if resource: + return resource.add_tags(tags) + return [] @staticmethod def _filter_resources(resources: Any, filters: Any, resource_class: Any) -> Any: # type: ignore[misc] diff --git a/tests/test_resourcegroupstaggingapi/test_resourcegroupstagging_rds.py b/tests/test_resourcegroupstaggingapi/test_resourcegroupstagging_rds.py index fc54c0f63999..00aa3c1abbc2 100644 --- a/tests/test_resourcegroupstaggingapi/test_resourcegroupstagging_rds.py +++ b/tests/test_resourcegroupstaggingapi/test_resourcegroupstagging_rds.py @@ -27,6 +27,17 @@ def setUp(self) -> None: group = self.resources_tagged if i else self.resources_untagged group.append(database["DBInstanceArn"]) group.append(snapshot["DBSnapshotArn"]) + automated_snapshots = self.rds.describe_db_snapshots( + Filters=[ + { + "Name": "db-instance-id", + "Values": ["db-instance-1", "db-instance-2"], + }, + {"Name": "snapshot-type", "Values": ["automated"]}, + ], + )["DBSnapshots"] + for snapshot in automated_snapshots: + self.resources_tagged.append(snapshot["DBSnapshotArn"]) def test_get_resources_rds(self): def assert_response(response, expected_count, resource_type=None): @@ -40,15 +51,15 @@ def assert_response(response, expected_count, resource_type=None): assert f":{resource_type}:" in arn resp = self.rtapi.get_resources(ResourceTypeFilters=["rds"]) - assert_response(resp, 4) + assert_response(resp, 6) resp = self.rtapi.get_resources(ResourceTypeFilters=["rds:db"]) assert_response(resp, 2, resource_type="db") resp = self.rtapi.get_resources(ResourceTypeFilters=["rds:snapshot"]) - assert_response(resp, 2, resource_type="snapshot") + assert_response(resp, 4, resource_type="snapshot") resp = self.rtapi.get_resources( TagFilters=[{"Key": "test", "Values": ["value-1"]}] ) - assert_response(resp, 2) + assert_response(resp, 3) def test_tag_resources_rds(self): # WHEN From c705eca7420002dbecc7a4c6a4a701af1a2252f5 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 15:03:25 -0800 Subject: [PATCH 039/103] RDS: Add support for ModifyDBCluster.ServerlessV2ScalingConfiguration parameter Previous updates indirectly added support for this, but this commit adds an explicit test. Ref: #8568 --- tests/test_rds/test_rds_clusters.py | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index e0e795efe000..00896f99c570 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -355,6 +355,43 @@ def test_create_db_cluster_additional_parameters(client): assert cluster["IAMDatabaseAuthenticationEnabled"] is True +@mock_aws +def test_modify_db_cluster_serverless_v2_scaling_configuration(client): + resp = client.create_db_cluster( + DBClusterIdentifier="cluster-id", + Engine="aurora-postgresql", + EngineMode="serverless", + MasterUsername="root", + MasterUserPassword="hunter2_", + ServerlessV2ScalingConfiguration={ + "MinCapacity": 2, + "MaxCapacity": 4, + }, + ) + cluster = resp["DBCluster"] + assert cluster["Engine"] == "aurora-postgresql" + assert cluster["EngineMode"] == "serverless" + assert cluster["ServerlessV2ScalingConfiguration"] == { + "MaxCapacity": 4.0, + "MinCapacity": 2.0, + } + client.modify_db_cluster( + DBClusterIdentifier="cluster-id", + ServerlessV2ScalingConfiguration={ + "MinCapacity": 4, + "MaxCapacity": 8, + }, + ) + resp = client.describe_db_clusters(DBClusterIdentifier="cluster-id") + cluster_modified = resp["DBClusters"][0] + assert cluster_modified["Engine"] == "aurora-postgresql" + assert cluster_modified["EngineMode"] == "serverless" + assert cluster_modified["ServerlessV2ScalingConfiguration"] == { + "MaxCapacity": 8.0, + "MinCapacity": 4.0, + } + + @mock_aws def test_describe_db_cluster_after_creation(client): client.create_db_cluster( From b501ac7170b077571e0a9d2e97ae74158ae7cd29 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 19:04:42 -0800 Subject: [PATCH 040/103] RDS: Add support for DBInstance.CACertificateIdentifier --- moto/rds/models.py | 2 ++ tests/test_rds/test_rds.py | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/moto/rds/models.py b/moto/rds/models.py index 89abaf740088..c46ab8256de7 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -790,6 +790,7 @@ def __init__( deletion_protection: bool = False, option_group_name: Optional[str] = None, enable_cloudwatch_logs_exports: Optional[List[str]] = None, + ca_certificate_identifier: str = "rds-ca-default", **kwargs: Any, ) -> None: super().__init__(backend) @@ -847,6 +848,7 @@ def __init__( ): raise DBParameterGroupNotFoundError(self.db_parameter_group_name) self.license_model = license_model + self.ca_certificate_identifier = ca_certificate_identifier self.option_group_name = option_group_name self.option_group_supplied = self.option_group_name is not None if ( diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 5035cc90da01..cc6125854fc9 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -2893,6 +2893,29 @@ def test_copy_unencrypted_db_snapshot_to_encrypted_db_snapshot(client): assert snapshot["Encrypted"] is True +@mock_aws +def test_ca_certificate_identifier(client): + # Check for CACertificateIdentifier default value + instance = create_db_instance(DBInstanceIdentifier="db-with-defaults") + assert instance["CACertificateIdentifier"] == "rds-ca-default" + # Set at creation time. + instance = create_db_instance( + DBInstanceIdentifier="db-with-cert-specified", + CACertificateIdentifier="rds-ca-2019", + ) + identifier = instance["DBInstanceIdentifier"] + # Get the value using describe_db_instances + instance = client.describe_db_instances(DBInstanceIdentifier=identifier)[ + "DBInstances" + ][0] + assert instance["CACertificateIdentifier"] == "rds-ca-2019" + # Update the value + instance = client.modify_db_instance( + DBInstanceIdentifier=identifier, CACertificateIdentifier="rds-ca-2024" + )["DBInstance"] + assert instance["CACertificateIdentifier"] == "rds-ca-2024" + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 484c5153090f5f6a1e84ec9482d978c31dd837b7 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 19:27:19 -0800 Subject: [PATCH 041/103] RDS: Add support for DescribeDBClusterSnapshots.SnapshotType parameter * Save automated backup when DBCluster created * DeleteDBCluster.FinalSnapshotIdentifier takes a manual snapshot * Various tests using DescribeDBClusterSnapshots updated to use more specific params/filters --- moto/rds/models.py | 24 ++++++++++++++++++++++-- moto/rds/responses.py | 3 ++- tests/test_rds/test_filters.py | 2 +- tests/test_rds/test_rds_clusters.py | 15 ++++++++++----- 4 files changed, 35 insertions(+), 9 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index c46ab8256de7..624c3cefe334 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -671,6 +671,13 @@ def default_allocated_storage(engine: str, storage_type: str) -> int: "postgres": {"gp2": 20, "io1": 100, "standard": 5}, }[engine][storage_type] + def save_automated_backup(self) -> None: + time_stamp = utcnow().strftime("%Y-%m-%d-%H-%M") + snapshot_id = f"rds:{self.db_cluster_identifier}-{time_stamp}" + self.backend.create_auto_cluster_snapshot( + self.db_cluster_identifier, snapshot_id + ) + class DBClusterSnapshot(RDSBaseModel): resource_type = "cluster-snapshot" @@ -2380,7 +2387,7 @@ def create_db_cluster(self, kwargs: Dict[str, Any]) -> DBCluster: cluster_id = kwargs["db_cluster_identifier"] cluster = DBCluster(self, **kwargs) self.clusters[cluster_id] = cluster - + cluster.save_automated_backup() if cluster.global_cluster_identifier: for regional_backend in rds_backends[self.account_id]: if ( @@ -2543,6 +2550,7 @@ def describe_db_cluster_snapshots( self, db_cluster_identifier: Optional[str], db_snapshot_identifier: str, + snapshot_type: Optional[str] = None, filters: Any = None, ) -> List[DBClusterSnapshot]: snapshots = self.cluster_snapshots @@ -2552,6 +2560,18 @@ def describe_db_cluster_snapshots( filters = merge_filters( filters, {"db-cluster-snapshot-id": [db_snapshot_identifier]} ) + snapshot_types = ( + ["automated", "manual"] + if ( + snapshot_type is None + and (filters is not None and "snapshot-type" not in filters) + ) + else [snapshot_type] + if snapshot_type is not None + else [] + ) + if snapshot_types: + filters = merge_filters(filters, {"snapshot-type": snapshot_types}) if filters: snapshots = self._filter_resources(snapshots, filters, DBClusterSnapshot) if db_snapshot_identifier and not snapshots and not db_cluster_identifier: @@ -2574,7 +2594,7 @@ def delete_db_cluster( self.remove_from_global_cluster(global_id, cluster_identifier) if snapshot_name: - self.create_auto_cluster_snapshot(cluster_identifier, snapshot_name) + self.create_db_cluster_snapshot(cluster_identifier, snapshot_name) return self.clusters.pop(cluster_identifier) raise DBClusterNotFoundError(cluster_identifier) diff --git a/moto/rds/responses.py b/moto/rds/responses.py index a1d90a9b903d..36595f564604 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -474,10 +474,11 @@ def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: def describe_db_cluster_snapshots(self) -> TYPE_RESPONSE: db_cluster_identifier = self.parameters.get("DBClusterIdentifier") db_snapshot_identifier = self.parameters.get("DBClusterSnapshotIdentifier") + snapshot_type = self.parameters.get("SnapshotType") filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} snapshots = self.backend.describe_db_cluster_snapshots( - db_cluster_identifier, db_snapshot_identifier, filter_dict + db_cluster_identifier, db_snapshot_identifier, snapshot_type, filter_dict ) results = {"DBClusterSnapshots": snapshots} return self.serialize(results) diff --git a/tests/test_rds/test_filters.py b/tests/test_rds/test_filters.py index 1bae4face150..6c7d5fda4281 100644 --- a/tests/test_rds/test_filters.py +++ b/tests/test_rds/test_filters.py @@ -450,4 +450,4 @@ def test_snapshot_type_filter(self): snapshots = self.client.describe_db_cluster_snapshots( Filters=[{"Name": "snapshot-type", "Values": ["automated"]}] )["DBClusterSnapshots"] - assert len(snapshots) == 0 + assert len(snapshots) == 2 diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 00896f99c570..454b654ce4d6 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -438,10 +438,12 @@ def test_delete_db_cluster_do_snapshot(client): FinalDBSnapshotIdentifier="final-snapshot", ) assert len(client.describe_db_clusters()["DBClusters"]) == 0 - snapshot = client.describe_db_cluster_snapshots()["DBClusterSnapshots"][0] + snapshot = client.describe_db_cluster_snapshots( + DBClusterSnapshotIdentifier="final-snapshot" + )["DBClusterSnapshots"][0] assert snapshot["DBClusterIdentifier"] == db_cluster_identifier assert snapshot["DBClusterSnapshotIdentifier"] == "final-snapshot" - assert snapshot["SnapshotType"] == "automated" + assert snapshot["SnapshotType"] == "manual" @mock_aws @@ -687,10 +689,12 @@ def test_describe_db_cluster_snapshots(client): assert created["Engine"] == "postgres" by_database_id = client.describe_db_cluster_snapshots( - DBClusterIdentifier="db-primary-1" + DBClusterIdentifier="db-primary-1", + SnapshotType="manual", )["DBClusterSnapshots"] by_snapshot_id = client.describe_db_cluster_snapshots( - DBClusterSnapshotIdentifier="snapshot-1" + DBClusterSnapshotIdentifier="snapshot-1", + SnapshotType="manual", )["DBClusterSnapshots"] assert by_snapshot_id == by_database_id @@ -702,7 +706,8 @@ def test_describe_db_cluster_snapshots(client): DBClusterIdentifier="db-primary-1", DBClusterSnapshotIdentifier="snapshot-2" ) snapshots = client.describe_db_cluster_snapshots( - DBClusterIdentifier="db-primary-1" + DBClusterIdentifier="db-primary-1", + SnapshotType="manual", )["DBClusterSnapshots"] assert len(snapshots) == 2 From 104990a2ef132fcd5d29a162bb9e9ca67c08da27 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 19:36:05 -0800 Subject: [PATCH 042/103] RDS: Add LatestRestorableTime attribute to DBCluster/DBInstance --- moto/rds/models.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 624c3cefe334..e2906dbe2d18 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -344,7 +344,7 @@ def __init__( self.kms_key_id = kwargs.get("kms_key_id") self.network_type = kwargs.get("network_type") or "IPV4" self._status = "creating" - self.cluster_create_time = iso_8601_datetime_with_milliseconds() + self.cluster_create_time = self.created self.copy_tags_to_snapshot = copy_tags_to_snapshot self.storage_type = kwargs.get("storage_type") if self.storage_type is None: @@ -486,6 +486,10 @@ def db_cluster_arn(self) -> str: def db_cluster_resource_id(self) -> str: return self.resource_id + @property + def latest_restorable_time(self) -> str: + return iso_8601_datetime_with_milliseconds(utcnow()) + @property def master_user_password(self) -> str: return self._master_user_password @@ -825,7 +829,7 @@ def __init__( if self.port is None: self.port = DBInstance.default_port(self.engine) self.db_name = db_name - self.instance_create_time = iso_8601_datetime_with_milliseconds() + self.instance_create_time = self.created self.publicly_accessible = publicly_accessible self.copy_tags_to_snapshot = copy_tags_to_snapshot self.availability_zone = kwargs.get("availability_zone") @@ -942,6 +946,10 @@ def db_instance_arn(self) -> str: def physical_resource_id(self) -> Optional[str]: return self.db_instance_identifier + @property + def latest_restorable_time(self) -> str: + return iso_8601_datetime_with_milliseconds(utcnow()) + def db_parameter_groups(self) -> List[DBParameterGroup]: if not self.db_parameter_group_name or self.is_default_parameter_group( self.db_parameter_group_name From 7288ef2951ddecb4de11a2a24a518149483c231f Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 20:06:28 -0800 Subject: [PATCH 043/103] RDS: Standardize DEFAULT_REGION across test suite --- tests/test_rds/__init__.py | 2 +- tests/test_rds/test_rds.py | 2 +- tests/test_rds/test_rds_clusters.py | 25 ++++++++++--------- tests/test_rds/test_rds_proxy.py | 2 +- .../test_rds/test_rds_proxy_target_groups.py | 4 +-- 5 files changed, 18 insertions(+), 17 deletions(-) diff --git a/tests/test_rds/__init__.py b/tests/test_rds/__init__.py index 08a1c1568c9c..eaa7babdfaf9 100644 --- a/tests/test_rds/__init__.py +++ b/tests/test_rds/__init__.py @@ -1 +1 @@ -# This file is intentionally left blank. +DEFAULT_REGION = "us-west-2" diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index cc6125854fc9..0dc2bfb3eb51 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -14,7 +14,7 @@ from moto.rds.models import RDSBackend from tests import aws_verified -DEFAULT_REGION = "us-west-2" +from . import DEFAULT_REGION @pytest.fixture(name="client") diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 454b654ce4d6..74b3eb7a0b13 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -7,17 +7,18 @@ from moto import mock_aws from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID -RDS_REGION = "eu-north-1" +from . import DEFAULT_REGION +from .test_rds import create_db_instance @pytest.fixture(name="client") @mock_aws def get_rds_client(): - return boto3.client("rds", region_name=RDS_REGION) + return boto3.client("rds", region_name=DEFAULT_REGION) def create_db_cluster(**extra_kwargs) -> str: - client = boto3.client("rds", region_name=RDS_REGION) + client = boto3.client("rds", region_name=DEFAULT_REGION) default_kwargs = { "DBClusterIdentifier": "db-primary-1", "AllocatedStorage": 10, @@ -146,7 +147,7 @@ def test_modify_db_cluster_new_cluster_identifier(client): @mock_aws def test_modify_db_cluster_manage_master_user_password(client, with_custom_kms_key): cluster_id = "cluster-id" - custom_kms_key = f"arn:aws:kms:{RDS_REGION}:123456789012:key/abcd1234-56ef-78gh-90ij-klmnopqrstuv" + custom_kms_key = f"arn:aws:kms:{DEFAULT_REGION}:123456789012:key/abcd1234-56ef-78gh-90ij-klmnopqrstuv" custom_kms_key_args = ( {"MasterUserSecretKmsKeyId": custom_kms_key} if with_custom_kms_key else {} ) @@ -178,7 +179,7 @@ def test_modify_db_cluster_manage_master_user_password(client, with_custom_kms_k assert len(master_user_secret.keys()) == 3 assert ( master_user_secret["SecretArn"] - == "arn:aws:secretsmanager:eu-north-1:123456789012:secret:rds!cluster-id" + == f"arn:aws:secretsmanager:{DEFAULT_REGION}:123456789012:secret:rds!cluster-id" ) assert master_user_secret["SecretStatus"] == "active" if with_custom_kms_key: @@ -186,7 +187,7 @@ def test_modify_db_cluster_manage_master_user_password(client, with_custom_kms_k else: assert ( master_user_secret["KmsKeyId"] - == "arn:aws:kms:eu-north-1:123456789012:key/cluster-id" + == f"arn:aws:kms:{DEFAULT_REGION}:123456789012:key/cluster-id" ) assert len(describe_response["DBClusters"][0]["MasterUserSecret"].keys()) == 3 assert ( @@ -246,9 +247,9 @@ def test_create_db_cluster__verify_default_properties(client): assert "AvailabilityZones" in cluster assert set(cluster["AvailabilityZones"]) == { - "eu-north-1a", - "eu-north-1b", - "eu-north-1c", + "us-west-2a", + "us-west-2b", + "us-west-2c", } assert cluster["BackupRetentionPeriod"] == 1 assert cluster["DBClusterIdentifier"] == "cluster-id" @@ -256,7 +257,7 @@ def test_create_db_cluster__verify_default_properties(client): assert cluster["DBSubnetGroup"] == "default" assert cluster["Status"] == "creating" assert re.match( - "cluster-id.cluster-[a-z0-9]{12}.eu-north-1.rds.amazonaws.com", + "cluster-id.cluster-[a-z0-9]{12}.us-west-2.rds.amazonaws.com", cluster["Endpoint"], ) endpoint = cluster["Endpoint"] @@ -278,7 +279,7 @@ def test_create_db_cluster__verify_default_properties(client): assert cluster["StorageEncrypted"] is False assert re.match(r"cluster-[A-Z0-9]{26}", cluster["DbClusterResourceId"]) assert cluster["DBClusterArn"] == ( - f"arn:aws:rds:eu-north-1:{ACCOUNT_ID}:cluster:cluster-id" + f"arn:aws:rds:{DEFAULT_REGION}:{ACCOUNT_ID}:cluster:cluster-id" ) assert cluster["AssociatedRoles"] == [] assert cluster["IAMDatabaseAuthenticationEnabled"] is False @@ -783,7 +784,7 @@ def test_add_tags_to_cluster(client): Tags=[{"Key": "k1", "Value": "v1"}], ) cluster_arn = ( - f"arn:aws:rds:{RDS_REGION}:123456789012:cluster:{db_cluster_identifier}" + f"arn:aws:rds:{DEFAULT_REGION}:123456789012:cluster:{db_cluster_identifier}" ) client.add_tags_to_resource( diff --git a/tests/test_rds/test_rds_proxy.py b/tests/test_rds/test_rds_proxy.py index b2fe6aee5c07..e9cf01f085f5 100644 --- a/tests/test_rds/test_rds_proxy.py +++ b/tests/test_rds/test_rds_proxy.py @@ -5,7 +5,7 @@ from moto import mock_aws from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID -DEFAULT_REGION = "us-west-2" +from . import DEFAULT_REGION @mock_aws diff --git a/tests/test_rds/test_rds_proxy_target_groups.py b/tests/test_rds/test_rds_proxy_target_groups.py index a38b70617b82..a389473bf1f1 100644 --- a/tests/test_rds/test_rds_proxy_target_groups.py +++ b/tests/test_rds/test_rds_proxy_target_groups.py @@ -9,7 +9,7 @@ from moto import mock_aws from tests import allow_aws_request -DEFAULT_REGION = "us-east-1" +from . import DEFAULT_REGION ASSUME_ROLE_POLICY = { "Version": "2012-10-17", @@ -175,7 +175,7 @@ def test_default_proxy_targets(account_id, proxy_name): # pylint: disable=redef groups[0].pop("UpdatedDate") target_group_arn = groups[0].pop("TargetGroupArn") assert target_group_arn.startswith( - f"arn:aws:rds:us-east-1:{account_id}:target-group:prx-tg-" + f"arn:aws:rds:{DEFAULT_REGION}:{account_id}:target-group:prx-tg-" ) # 17 more chars (lowercase + digits) assert groups[0] == { "DBProxyName": proxy_name, From d76d69a88f383d7ff3297c557babd4a2c7df006d Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 12 Feb 2025 20:07:11 -0800 Subject: [PATCH 044/103] RDS: Fix error code when trying to delete protected DBCluster --- moto/rds/models.py | 4 +- tests/test_rds/test_rds_clusters.py | 85 ++++++++++++++++++++++++++++- 2 files changed, 86 insertions(+), 3 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index e2906dbe2d18..32f69f789250 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -2592,8 +2592,8 @@ def delete_db_cluster( if cluster_identifier in self.clusters: cluster = self.clusters[cluster_identifier] if cluster.deletion_protection: - raise InvalidParameterValue( - "Can't delete Cluster with protection enabled" + raise InvalidParameterCombination( + "Cannot delete protected Cluster, please disable deletion protection and try again." ) if cluster.cluster_members: raise DBClusterToBeDeletedHasActiveMembers() diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 74b3eb7a0b13..bee398dcb097 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -453,7 +453,90 @@ def test_delete_db_cluster_that_is_protected(client): with pytest.raises(ClientError) as exc: client.delete_db_cluster(DBClusterIdentifier=db_cluster_identifier) err = exc.value.response["Error"] - assert err["Message"] == "Can't delete Cluster with protection enabled" + assert err["Code"] == "InvalidParameterCombination" + assert ( + err["Message"] + == "Cannot delete protected Cluster, please disable deletion protection and try again." + ) + + +@mock_aws +def test_delete_db_cluster_with_instances_deletion_protection_disabled(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + DatabaseName="db_name", + Engine="aurora-postgresql", + MasterUsername="root", + MasterUserPassword="password", + Port=1234, + ) + create_db_instance( + DBInstanceIdentifier="test-instance-1", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + ) + create_db_instance( + DBInstanceIdentifier="test-instance-2", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + ) + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1").get( + "DBClusters" + )[0] + assert len(cluster["DBClusterMembers"]) == 2 + client.delete_db_instance(DBInstanceIdentifier="test-instance-1") + client.delete_db_instance(DBInstanceIdentifier="test-instance-2") + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1").get( + "DBClusters" + )[0] + assert len(cluster["DBClusterMembers"]) == 0 + cluster = client.delete_db_cluster(DBClusterIdentifier="cluster-1").get("DBCluster") + assert cluster["DBClusterIdentifier"] == "cluster-1" + + +@mock_aws +def test_delete_db_cluster_with_instances_deletion_protection_enabled(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + DatabaseName="db_name", + Engine="aurora-postgresql", + MasterUsername="root", + MasterUserPassword="password", + Port=1234, + DeletionProtection=True, + ) + create_db_instance( + DBInstanceIdentifier="test-instance-1", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + ) + create_db_instance( + DBInstanceIdentifier="test-instance-2", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + ) + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1").get( + "DBClusters" + )[0] + assert len(cluster["DBClusterMembers"]) == 2 + client.delete_db_instance(DBInstanceIdentifier="test-instance-1") + client.delete_db_instance(DBInstanceIdentifier="test-instance-2") + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1").get( + "DBClusters" + )[0] + assert len(cluster["DBClusterMembers"]) == 0 + with pytest.raises(ClientError) as exc: + client.delete_db_cluster(DBClusterIdentifier="cluster-1") + err = exc.value.response["Error"] + assert err["Code"] == "InvalidParameterCombination" + assert ( + err["Message"] + == "Cannot delete protected Cluster, please disable deletion protection and try again." + ) @mock_aws From 5bad382c802b39e6eee230f073742949c400150c Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 13 Feb 2025 15:14:19 -0800 Subject: [PATCH 045/103] RDS: Refactor Describe/Modify DBSnapshot/DBClusterSnapshot attributes * Update DBSnapshot/DBClusterSnapshot construction * Update Create/Copy DBSnapshot/DBClusterSnapshot methods * Add test coverage --- moto/rds/exceptions.py | 30 +- moto/rds/models.py | 356 +++++++++++++--------- moto/rds/responses.py | 38 ++- tests/test_rds/test_rds.py | 306 ++++++++++++++++++- tests/test_rds/test_rds_clusters.py | 448 +++++++++++++++++++++++++++- 5 files changed, 1007 insertions(+), 171 deletions(-) diff --git a/moto/rds/exceptions.py b/moto/rds/exceptions.py index 8150687fc593..b8457254dc60 100644 --- a/moto/rds/exceptions.py +++ b/moto/rds/exceptions.py @@ -16,10 +16,10 @@ def __init__(self) -> None: super().__init__("DBInstanceAlreadyExists", "DB instance already exists") -class DBSnapshotNotFoundError(RDSClientError): +class DBSnapshotNotFoundFault(RDSClientError): def __init__(self, snapshot_identifier: str): super().__init__( - "DBSnapshotNotFound", f"DBSnapshot {snapshot_identifier} not found." + "DBSnapshotNotFoundFault", f"DBSnapshot {snapshot_identifier} not found." ) @@ -90,7 +90,8 @@ def __init__(self, database_identifier: str, istate: str): ) -class SnapshotQuotaExceededError(RDSClientError): +class SnapshotQuotaExceededFault(RDSClientError): + # This is used for both DBSnapshots and DBClusterSnapshots def __init__(self) -> None: super().__init__( "SnapshotQuotaExceeded", @@ -98,6 +99,29 @@ def __init__(self) -> None: ) +class SharedSnapshotQuotaExceeded(RDSClientError): + def __init__(self) -> None: + super().__init__( + "SharedSnapshotQuotaExceeded", + "The request cannot be processed because it would exceed the maximum number of snapshots.", + ) + + +class KMSKeyNotAccessibleFault(RDSClientError): + fmt = "Specified KMS key [{key_id}] does not exist, is not enabled or you do not have permissions to access it." + + def __init__(self, key_id: str) -> None: + super().__init__( + "KMSKeyNotAccessibleFault", + f"Specified KMS key [{key_id}] does not exist, is not enabled or you do not have permissions to access it.", + ) + + +class InvalidDBClusterSnapshotStateFault(RDSClientError): + def __init__(self, message: str): + super().__init__("InvalidDBClusterSnapshotStateFault", message) + + class DBSnapshotAlreadyExistsError(RDSClientError): def __init__(self, database_snapshot_identifier: str): super().__init__( diff --git a/moto/rds/models.py b/moto/rds/models.py index 32f69f789250..b5c78cd41a6a 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -32,10 +32,11 @@ DBProxyQuotaExceededFault, DBSecurityGroupNotFoundError, DBSnapshotAlreadyExistsError, - DBSnapshotNotFoundError, + DBSnapshotNotFoundFault, DBSubnetGroupNotFoundError, ExportTaskAlreadyExistsError, ExportTaskNotFoundError, + InvalidDBClusterSnapshotStateFault, InvalidDBClusterStateFault, InvalidDBClusterStateFaultError, InvalidDBInstanceEngine, @@ -47,9 +48,11 @@ InvalidParameterCombination, InvalidParameterValue, InvalidSubnet, + KMSKeyNotAccessibleFault, OptionGroupNotFoundFaultError, RDSClientError, - SnapshotQuotaExceededError, + SharedSnapshotQuotaExceeded, + SnapshotQuotaExceededFault, SubscriptionAlreadyExistError, SubscriptionNotFoundError, ) @@ -112,7 +115,7 @@ def remove_tags(self, tag_keys: List[str]) -> None: class RDSBaseModel(TaggingMixin, XFormedAttributeAccessMixin, BaseModel): resource_type: str - def __init__(self, backend: RDSBackend): + def __init__(self, backend: RDSBackend) -> None: self.backend = backend self.created = iso_8601_datetime_with_milliseconds() @@ -317,6 +320,7 @@ def __init__( tags: Optional[List[Dict[str, str]]] = None, vpc_security_group_ids: Optional[List[str]] = None, deletion_protection: Optional[bool] = False, + kms_key_id: Optional[str] = None, **kwargs: Any, ): super().__init__(backend) @@ -341,7 +345,6 @@ def __init__( ) self.engine_mode = kwargs.get("engine_mode") or "provisioned" self.iops = kwargs.get("iops") - self.kms_key_id = kwargs.get("kms_key_id") self.network_type = kwargs.get("network_type") or "IPV4" self._status = "creating" self.cluster_create_time = self.created @@ -432,9 +435,9 @@ def __init__( self.is_writer: bool = False self.storage_encrypted = storage_encrypted if self.storage_encrypted: - self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") + self.kms_key_id = kms_key_id or "default_kms_key_id" else: - self.kms_key_id = kwargs.get("kms_key_id") + self.kms_key_id = kms_key_id # type: ignore[assignment] if self.engine == "aurora-mysql" or self.engine == "aurora-postgresql": self._global_write_forwarding_requested = kwargs.get( "enable_global_write_forwarding" @@ -685,14 +688,14 @@ def save_automated_backup(self) -> None: class DBClusterSnapshot(RDSBaseModel): resource_type = "cluster-snapshot" - + ALLOWED_ATTRIBUTE_NAMES = ["restore"] SUPPORTED_FILTERS = { "db-cluster-id": FilterDef( ["db_cluster_arn", "db_cluster_identifier"], "DB Cluster Identifiers", ), "db-cluster-snapshot-id": FilterDef( - ["snapshot_id"], "DB Cluster Snapshot Identifiers" + ["db_cluster_snapshot_identifier"], "DB Cluster Snapshot Identifiers" ), "snapshot-type": FilterDef(["snapshot_type"], "Snapshot Types"), "engine": FilterDef(["cluster.engine"], "Engine Names"), @@ -703,41 +706,79 @@ def __init__( backend: RDSBackend, cluster: DBCluster, snapshot_id: str, - snapshot_type: str, - tags: List[Dict[str, str]], + snapshot_type: str = "manual", + tags: Optional[List[Dict[str, str]]] = None, + kms_key_id: Optional[str] = None, ): super().__init__(backend) - self.cluster = cluster - self.snapshot_id = snapshot_id + self.db_cluster_snapshot_identifier = snapshot_id self.snapshot_type = snapshot_type - self.tags = tags + self.percent_progress = 100 self.status = "available" - self.created_at = iso_8601_datetime_with_milliseconds() - self.attributes: List[Dict[str, Any]] = [] + # If tags are provided at creation, AWS does *not* copy tags from the + # db_cluster (even if copy_tags_to_snapshot is True). + if tags is not None: + self.tags = tags + elif cluster.copy_tags_to_snapshot: + self.tags = cluster.tags or [] + else: + self.tags = [] + self.cluster = copy.copy(cluster) + self.allocated_storage = self.cluster.allocated_storage + self.cluster_create_time = self.cluster.created + self.db_cluster_identifier = self.cluster.db_cluster_identifier + if kms_key_id is not None: + self.kms_key_id = self.cluster.kms_key_id = kms_key_id + self.encrypted = self.cluster.storage_encrypted = True + else: + self.kms_key_id = self.cluster.kms_key_id # type: ignore[assignment] + self.encrypted = self.cluster.storage_encrypted # type: ignore[assignment] + self.engine = self.cluster.engine + self.engine_version = self.cluster.engine_version + self.master_username = self.cluster.master_username + self.port = self.cluster.port + self.storage_encrypted = self.cluster.storage_encrypted + self.attributes: Dict[str, List[str]] = defaultdict(list) + for attribute in self.ALLOWED_ATTRIBUTE_NAMES: + self.attributes[attribute] = [] @property def name(self) -> str: - return self.snapshot_id + return self.db_cluster_snapshot_identifier @property def db_cluster_snapshot_arn(self) -> str: return self.arn @property - def db_cluster_snapshot_identifier(self) -> str: - return self.snapshot_id - - @property - def db_cluster_identifier(self) -> str: - return self.cluster.db_cluster_identifier - - @property - def db_cluster_arn(self) -> str: - return self.cluster.arn + def snapshot_create_time(self) -> str: + return self.created - @property - def engine(self) -> Optional[str]: - return self.cluster.engine + def modify_attribute( + self, + attribute_name: str, + values_to_add: Optional[List[str]], + values_to_remove: Optional[List[str]], + ) -> None: + if not values_to_add: + values_to_add = [] + if not values_to_remove: + values_to_remove = [] + if attribute_name not in self.ALLOWED_ATTRIBUTE_NAMES: + raise InvalidParameterValue( + f"Invalid cluster snapshot attribute {attribute_name}" + ) + common_values = set(values_to_add).intersection(values_to_remove) + if common_values: + raise InvalidParameterCombination( + "A value may not appear in both the add list and remove list. " + + f"{common_values}" + ) + add = self.attributes[attribute_name] + values_to_add + new_attribute_values = [value for value in add if value not in values_to_remove] + if len(new_attribute_values) > int(os.getenv("MAX_SHARED_ACCOUNTS", 20)): + raise SharedSnapshotQuotaExceeded() + self.attributes[attribute_name] = new_attribute_values class DBInstance(CloudFormationModel, RDSBaseModel): @@ -1245,12 +1286,15 @@ def save_automated_backup(self) -> None: class DBSnapshot(RDSBaseModel): resource_type = "snapshot" + ALLOWED_ATTRIBUTE_NAMES = ["restore"] SUPPORTED_FILTERS = { "db-instance-id": FilterDef( ["database.db_instance_arn", "database.db_instance_identifier"], "DB Instance Identifiers", ), - "db-snapshot-id": FilterDef(["snapshot_id"], "DB Snapshot Identifiers"), + "db-snapshot-id": FilterDef( + ["db_snapshot_identifier"], "DB Snapshot Identifiers" + ), "dbi-resource-id": FilterDef(["database.dbi_resource_id"], "Dbi Resource Ids"), "snapshot-type": FilterDef(["snapshot_type"], "Snapshot Types"), "engine": FilterDef(["database.engine"], "Engine Names"), @@ -1261,20 +1305,25 @@ def __init__( backend: RDSBackend, database: DBInstance, snapshot_id: str, - snapshot_type: str, + snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, kms_key_id: Optional[str] = None, ): super().__init__(backend) self.database = copy.copy(database) # TODO: Refactor this out. - self.snapshot_id = snapshot_id + self.db_snapshot_identifier = snapshot_id self.snapshot_type = snapshot_type - self.tags = tags or [] self.status = "available" - self.created_at = iso_8601_datetime_with_milliseconds() - self.original_created_at = original_created_at or self.created_at - self.attributes: List[Dict[str, Any]] = [] + self.original_snapshot_create_time = original_created_at or self.created + # If tags are provided at creation, AWS does *not* copy tags from the + # db_cluster (even if copy_tags_to_snapshot is True). + if tags is not None: + self.tags = tags + elif database.copy_tags_to_snapshot: + self.tags = database.tags or [] + else: + self.tags = [] # Database attributes are captured at the time the snapshot is taken. self.allocated_storage = database.allocated_storage self.dbi_resource_id = database.dbi_resource_id @@ -1293,22 +1342,47 @@ def __init__( self.instance_create_time = database.created self.master_username = database.master_username self.port = database.port + self.attributes: Dict[str, List[str]] = defaultdict(list) + for attribute in self.ALLOWED_ATTRIBUTE_NAMES: + self.attributes[attribute] = [] @property def name(self) -> str: - return self.snapshot_id + return self.db_snapshot_identifier @property - def db_snapshot_identifier(self) -> str: - return self.snapshot_id + def db_snapshot_arn(self) -> str: + return self.arn @property def snapshot_create_time(self) -> str: - return self.created_at + return self.created - @property - def original_snapshot_create_time(self) -> str: - return self.original_created_at + def modify_attribute( + self, + attribute_name: str, + values_to_add: Optional[List[str]], + values_to_remove: Optional[List[str]], + ) -> None: + if not values_to_add: + values_to_add = [] + if not values_to_remove: + values_to_remove = [] + if attribute_name not in self.ALLOWED_ATTRIBUTE_NAMES: + raise InvalidParameterValue( + f"Invalid db snapshot attribute {attribute_name}" + ) + common_values = set(values_to_add).intersection(values_to_remove) + if common_values: + raise InvalidParameterCombination( + "A value may not appear in both the add list and remove list. " + + f"{common_values}" + ) + add = self.attributes[attribute_name] + values_to_add + new_attribute_values = [value for value in add if value not in values_to_remove] + if len(new_attribute_values) > int(os.getenv("MAX_SHARED_ACCOUNTS", 20)): + raise SharedSnapshotQuotaExceeded() + self.attributes[attribute_name] = new_attribute_values class ExportTask(RDSBaseModel): @@ -1760,7 +1834,7 @@ def create_db_snapshot( if len(self.database_snapshots) >= int( os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") ): - raise SnapshotQuotaExceededError() + raise SnapshotQuotaExceededFault() if tags is None: tags = list() if database.copy_tags_to_snapshot and not tags: @@ -1781,39 +1855,51 @@ def copy_db_snapshot( self, source_db_snapshot_identifier: str, target_db_snapshot_identifier: str, + kms_key_id: Optional[str] = None, tags: Optional[List[Dict[str, str]]] = None, copy_tags: Optional[bool] = False, - kms_key_id: Optional[str] = None, + **_: Any, ) -> DBSnapshot: if source_db_snapshot_identifier.startswith("arn:aws:rds:"): source_db_snapshot_identifier = self.extract_snapshot_name_from_arn( source_db_snapshot_identifier ) if source_db_snapshot_identifier not in self.database_snapshots: - raise DBSnapshotNotFoundError(source_db_snapshot_identifier) - if kms_key_id is not None: - key = self.kms.describe_key(kms_key_id) - # We do this in case an alias was passed in. - kms_key_id = key.id - source_snapshot = self.database_snapshots[source_db_snapshot_identifier] + raise DBSnapshotNotFoundFault(source_db_snapshot_identifier) + if target_db_snapshot_identifier in self.database_snapshots: + raise DBSnapshotAlreadyExistsError(target_db_snapshot_identifier) + if len(self.cluster_snapshots) >= int( + os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") + ): + raise SnapshotQuotaExceededFault() + try: + if kms_key_id is not None: + key = self.kms.describe_key(str(kms_key_id)) + # We do this in case an alias was passed in. + kms_key_id = key.id + except Exception: + raise KMSKeyNotAccessibleFault(str(kms_key_id)) + source_db_snapshot = self.database_snapshots[source_db_snapshot_identifier] # When tags are passed, AWS does NOT copy/merge tags of the # source snapshot, even when copy_tags=True is given. # But when tags=[], AWS does honor copy_tags=True. - if not tags: - tags = source_snapshot.tags if copy_tags else [] - - return self.create_db_snapshot( - db_instance=source_snapshot.database, - db_snapshot_identifier=target_db_snapshot_identifier, + if copy_tags and not tags: + tags = source_db_snapshot.tags or [] + target_db_snapshot = DBSnapshot( + self, + source_db_snapshot.database, + target_db_snapshot_identifier, tags=tags, - original_created_at=source_snapshot.original_created_at, kms_key_id=kms_key_id, + original_created_at=source_db_snapshot.original_snapshot_create_time, ) + self.database_snapshots[target_db_snapshot_identifier] = target_db_snapshot + return target_db_snapshot def delete_db_snapshot(self, db_snapshot_identifier: str) -> DBSnapshot: if db_snapshot_identifier not in self.database_snapshots: - raise DBSnapshotNotFoundError(db_snapshot_identifier) + raise DBSnapshotNotFoundFault(db_snapshot_identifier) return self.database_snapshots.pop(db_snapshot_identifier) @@ -1886,7 +1972,7 @@ def describe_db_snapshots( if filters: snapshots = self._filter_resources(snapshots, filters, DBSnapshot) if db_snapshot_identifier and not snapshots and not db_instance_identifier: - raise DBSnapshotNotFoundError(db_snapshot_identifier) + raise DBSnapshotNotFoundFault(db_snapshot_identifier) return list(snapshots.values()) def modify_db_instance( @@ -2477,62 +2563,72 @@ def create_auto_cluster_snapshot( db_cluster_identifier, db_snapshot_identifier, snapshot_type="automated" ) - def _create_db_cluster_snapshot( - self, - cluster: DBCluster, - db_snapshot_identifier: str, - snapshot_type: str, - tags: List[Dict[str, str]], - ) -> DBClusterSnapshot: - if db_snapshot_identifier in self.cluster_snapshots: - raise DBClusterSnapshotAlreadyExistsError(db_snapshot_identifier) - if len(self.cluster_snapshots) >= int( - os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") - ): - raise SnapshotQuotaExceededError() - snapshot = DBClusterSnapshot( - self, cluster, db_snapshot_identifier, snapshot_type, tags - ) - self.cluster_snapshots[db_snapshot_identifier] = snapshot - return snapshot - def create_db_cluster_snapshot( self, db_cluster_identifier: str, - db_snapshot_identifier: str, + db_cluster_snapshot_identifier: str, snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, ) -> DBClusterSnapshot: - cluster = self.clusters.get(db_cluster_identifier) - if cluster is None: + if db_cluster_snapshot_identifier in self.cluster_snapshots: + raise DBClusterSnapshotAlreadyExistsError(db_cluster_snapshot_identifier) + if db_cluster_identifier not in self.clusters: raise DBClusterNotFoundError(db_cluster_identifier) - if tags is None: - tags = list() - if cluster.copy_tags_to_snapshot: - tags += cluster.get_tags() - - return self._create_db_cluster_snapshot( - cluster, db_snapshot_identifier, snapshot_type, tags + if snapshot_type == "manual" and len(self.cluster_snapshots) >= int( + os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") + ): + raise SnapshotQuotaExceededFault() + cluster = self.clusters[db_cluster_identifier] + snapshot = DBClusterSnapshot( + self, cluster, db_cluster_snapshot_identifier, snapshot_type, tags ) + self.cluster_snapshots[db_cluster_snapshot_identifier] = snapshot + return snapshot def copy_db_cluster_snapshot( self, - source_snapshot_identifier: str, - target_snapshot_identifier: str, + source_db_cluster_snapshot_identifier: str, + target_db_cluster_snapshot_identifier: str, + kms_key_id: Optional[str] = None, + copy_tags: bool = False, tags: Optional[List[Dict[str, str]]] = None, + **_: Any, ) -> DBClusterSnapshot: - if source_snapshot_identifier not in self.cluster_snapshots: - raise DBClusterSnapshotNotFoundError(source_snapshot_identifier) - - source_snapshot = self.cluster_snapshots[source_snapshot_identifier] - if tags is None: - tags = source_snapshot.tags - else: - tags = self._merge_tags(source_snapshot.tags, tags) + if source_db_cluster_snapshot_identifier not in self.cluster_snapshots: + raise DBClusterSnapshotNotFoundError(source_db_cluster_snapshot_identifier) + if target_db_cluster_snapshot_identifier in self.cluster_snapshots: + raise DBClusterSnapshotAlreadyExistsError( + target_db_cluster_snapshot_identifier + ) - return self._create_db_cluster_snapshot( - source_snapshot.cluster, target_snapshot_identifier, "manual", tags + if len(self.cluster_snapshots) >= int( + os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") + ): + raise SnapshotQuotaExceededFault() + try: + if kms_key_id is not None: + key = self.kms.describe_key(str(kms_key_id)) + # We do this in case an alias was passed in. + kms_key_id = key.id + except Exception: + raise KMSKeyNotAccessibleFault(str(kms_key_id)) + source_db_cluster_snapshot = self.cluster_snapshots[ + source_db_cluster_snapshot_identifier + ] + # If tags are supplied, copy_tags is ignored (verified against real AWS backend 2025-02-12). + if copy_tags and not tags: + tags = source_db_cluster_snapshot.tags or [] + target_db_cluster_snapshot = DBClusterSnapshot( + self, + source_db_cluster_snapshot.cluster, + target_db_cluster_snapshot_identifier, + tags=tags, + kms_key_id=kms_key_id, + ) + self.cluster_snapshots[target_db_cluster_snapshot_identifier] = ( + target_db_cluster_snapshot ) + return target_db_cluster_snapshot def delete_db_cluster_snapshot( self, db_snapshot_identifier: str @@ -2657,7 +2753,7 @@ def start_export_task(self, kwargs: Dict[str, Any]) -> ExportTask: if export_task_id in self.export_tasks: raise ExportTaskAlreadyExistsError(export_task_id) if snapshot_type == "snapshot" and snapshot_id not in self.database_snapshots: - raise DBSnapshotNotFoundError(snapshot_id) + raise DBSnapshotNotFoundFault(snapshot_id) elif ( snapshot_type == "cluster-snapshot" and snapshot_id not in self.cluster_snapshots @@ -2934,7 +3030,7 @@ def remove_from_global_cluster( def describe_db_snapshot_attributes( self, db_snapshot_identifier: str - ) -> List[Dict[str, Any]]: + ) -> Dict[str, List[str]]: snapshot = self.describe_db_snapshots( db_instance_identifier=None, db_snapshot_identifier=db_snapshot_identifier )[0] @@ -2946,36 +3042,20 @@ def modify_db_snapshot_attribute( attribute_name: str, values_to_add: Optional[List[str]] = None, values_to_remove: Optional[List[str]] = None, - ) -> List[Dict[str, Any]]: + ) -> Dict[str, List[str]]: snapshot = self.describe_db_snapshots( db_instance_identifier=None, db_snapshot_identifier=db_snapshot_identifier )[0] - attribute_present = False - for attribute in snapshot.attributes: - if attribute["AttributeName"] == attribute_name: - attribute_present = True - if values_to_add: - attribute["AttributeValues"] = ( - list(attribute["AttributeValues"]) + values_to_add - ) - if values_to_remove: - attribute["AttributeValues"] = [ - i - for i in attribute["AttributeValues"] - if i not in values_to_remove - ] - if not attribute_present and values_to_add: - snapshot.attributes.append( - { - "AttributeName": attribute_name, - "AttributeValues": values_to_add, - } + if db_snapshot_identifier.startswith("rds:"): # automated snapshot + raise InvalidParameterValue( + "The parameter DBSnapshotIdentifier is not a valid identifier." ) + snapshot.modify_attribute(attribute_name, values_to_add, values_to_remove) return snapshot.attributes def describe_db_cluster_snapshot_attributes( self, db_cluster_snapshot_identifier: str - ) -> List[Dict[str, Any]]: + ) -> Dict[str, List[str]]: snapshot = self.describe_db_cluster_snapshots( db_cluster_identifier=None, db_snapshot_identifier=db_cluster_snapshot_identifier, @@ -2988,32 +3068,16 @@ def modify_db_cluster_snapshot_attribute( attribute_name: str, values_to_add: Optional[List[str]] = None, values_to_remove: Optional[List[str]] = None, - ) -> List[Dict[str, Any]]: + ) -> Dict[str, List[str]]: snapshot = self.describe_db_cluster_snapshots( db_cluster_identifier=None, db_snapshot_identifier=db_cluster_snapshot_identifier, )[0] - attribute_present = False - for attribute in snapshot.attributes: - if attribute["AttributeName"] == attribute_name: - attribute_present = True - if values_to_add: - attribute["AttributeValues"] = ( - list(attribute["AttributeValues"]) + values_to_add - ) - if values_to_remove: - attribute["AttributeValues"] = [ - i - for i in attribute["AttributeValues"] - if i not in values_to_remove - ] - if not attribute_present and values_to_add: - snapshot.attributes.append( - { - "AttributeName": attribute_name, - "AttributeValues": values_to_add, - } + if snapshot.snapshot_type != "manual": + raise InvalidDBClusterSnapshotStateFault( + "automated snapshots cannot be modified." ) + snapshot.modify_attribute(attribute_name, values_to_add, values_to_remove) return snapshot.attributes def create_db_proxy( diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 36595f564604..5e59a6169751 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -448,26 +448,12 @@ def stop_db_cluster(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_cluster_snapshot(self) -> TYPE_RESPONSE: - db_cluster_identifier = self.parameters.get("DBClusterIdentifier") - db_snapshot_identifier = self.parameters.get("DBClusterSnapshotIdentifier") - tags = self.parameters.get("Tags", []) - snapshot = self.backend.create_db_cluster_snapshot( - db_cluster_identifier, db_snapshot_identifier, tags=tags - ) + snapshot = self.backend.create_db_cluster_snapshot(**self.parameters) result = {"DBClusterSnapshot": snapshot} return self.serialize(result) def copy_db_cluster_snapshot(self) -> TYPE_RESPONSE: - source_snapshot_identifier = self.parameters.get( - "SourceDBClusterSnapshotIdentifier" - ) - target_snapshot_identifier = self.parameters.get( - "TargetDBClusterSnapshotIdentifier" - ) - tags = self.parameters.get("Tags", []) - snapshot = self.backend.copy_db_cluster_snapshot( - source_snapshot_identifier, target_snapshot_identifier, tags - ) + snapshot = self.backend.copy_db_cluster_snapshot(**self.parameters) result = {"DBClusterSnapshot": snapshot} return self.serialize(result) @@ -618,7 +604,10 @@ def describe_db_snapshot_attributes(self) -> TYPE_RESPONSE: result = { "DBSnapshotAttributesResult": { "DBSnapshotIdentifier": db_snapshot_identifier, - "DBSnapshotAttributes": db_snapshot_attributes_result, + "DBSnapshotAttributes": [ + {"AttributeName": name, "AttributeValues": values} + for name, values in db_snapshot_attributes_result.items() + ], } } return self.serialize(result) @@ -635,7 +624,10 @@ def modify_db_snapshot_attribute(self) -> TYPE_RESPONSE: result = { "DBSnapshotAttributesResult": { "DBSnapshotIdentifier": db_snapshot_identifier, - "DBSnapshotAttributes": db_snapshot_attributes_result, + "DBSnapshotAttributes": [ + {"AttributeName": name, "AttributeValues": values} + for name, values in db_snapshot_attributes_result.items() + ], } } return self.serialize(result) @@ -651,7 +643,10 @@ def describe_db_cluster_snapshot_attributes(self) -> TYPE_RESPONSE: result = { "DBClusterSnapshotAttributesResult": { "DBClusterSnapshotIdentifier": db_cluster_snapshot_identifier, - "DBClusterSnapshotAttributes": db_cluster_snapshot_attributes_result, + "DBClusterSnapshotAttributes": [ + {"AttributeName": name, "AttributeValues": values} + for name, values in db_cluster_snapshot_attributes_result.items() + ], } } return self.serialize(result) @@ -670,7 +665,10 @@ def modify_db_cluster_snapshot_attribute(self) -> TYPE_RESPONSE: result = { "DBClusterSnapshotAttributesResult": { "DBClusterSnapshotIdentifier": db_cluster_snapshot_identifier, - "DBClusterSnapshotAttributes": db_cluster_snapshot_attributes_result, + "DBClusterSnapshotAttributes": [ + {"AttributeName": name, "AttributeValues": values} + for name, values in db_cluster_snapshot_attributes_result.items() + ], } } return self.serialize(result) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 0dc2bfb3eb51..1b41487185b5 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -16,6 +16,17 @@ from . import DEFAULT_REGION +test_tags = [ + { + "Key": "foo", + "Value": "bar", + }, + { + "Key": "foo1", + "Value": "bar1", + }, +] + @pytest.fixture(name="client") @mock_aws @@ -2638,7 +2649,7 @@ def test_describe_db_snapshot_attributes_default(client): resp = client.describe_db_snapshot_attributes(DBSnapshotIdentifier="snapshot-1") assert resp["DBSnapshotAttributesResult"]["DBSnapshotIdentifier"] == "snapshot-1" - assert resp["DBSnapshotAttributesResult"]["DBSnapshotAttributes"] == [] + assert len(resp["DBSnapshotAttributesResult"]["DBSnapshotAttributes"]) >= 1 @mock_aws @@ -2916,6 +2927,299 @@ def test_ca_certificate_identifier(client): assert instance["CACertificateIdentifier"] == "rds-ca-2024" +@mock_aws +def test_describe_and_modify_snapshot_attributes(client): + instance_id = "test-instance" + create_db_instance( + DBInstanceIdentifier=instance_id, + Engine="postgres", + StorageEncrypted=False, + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_id, DBSnapshotIdentifier="snapshot-1" + )["DBSnapshot"] + assert snapshot["DBSnapshotIdentifier"] == "snapshot-1" + snapshot_attribute_result = client.describe_db_snapshot_attributes( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + )["DBSnapshotAttributesResult"] + assert snapshot_attribute_result["DBSnapshotIdentifier"] == "snapshot-1" + assert len(snapshot_attribute_result["DBSnapshotAttributes"]) == 1 + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeName"] + == "restore" + ) + assert ( + len(snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"]) + == 0 + ) + # Modify the snapshot attribute (Add) + customer_accounts_add = ["123", "456"] + snapshot_attribute_result = client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + )["DBSnapshotAttributesResult"] + assert snapshot_attribute_result["DBSnapshotIdentifier"] == "snapshot-1" + assert len(snapshot_attribute_result["DBSnapshotAttributes"]) == 1 + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeName"] + == "restore" + ) + assert ( + len(snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"]) + == 2 + ) + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"] + == customer_accounts_add + ) + # Modify the snapshot attribute (Add + Remove) + customer_accounts_add = ["789"] + customer_accounts_remove = ["123", "456"] + snapshot_attribute_result = client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + ValuesToRemove=customer_accounts_remove, + )["DBSnapshotAttributesResult"] + assert snapshot_attribute_result["DBSnapshotIdentifier"] == "snapshot-1" + assert len(snapshot_attribute_result["DBSnapshotAttributes"]) == 1 + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeName"] + == "restore" + ) + assert ( + len(snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"]) + == 1 + ) + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"] + == customer_accounts_add + ) + # Modify the snapshot attribute (Remove) + customer_accounts_remove = ["789"] + snapshot_attribute_result = client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ValuesToRemove=customer_accounts_remove, + )["DBSnapshotAttributesResult"] + assert snapshot_attribute_result["DBSnapshotIdentifier"] == "snapshot-1" + assert len(snapshot_attribute_result["DBSnapshotAttributes"]) == 1 + assert ( + snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeName"] + == "restore" + ) + assert ( + len(snapshot_attribute_result["DBSnapshotAttributes"][0]["AttributeValues"]) + == 0 + ) + + +@mock_aws +def test_describe_snapshot_attributes_fails_with_invalid_snapshot_identifier(client): + with pytest.raises(ClientError) as ex: + client.describe_db_snapshot_attributes( + DBSnapshotIdentifier="invalid_snapshot_id", + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 404 + assert resp["Error"]["Code"] == "DBSnapshotNotFound" + + +@mock_aws +def test_modify_snapshot_attributes_fails_with_invalid_snapshot_id(client): + with pytest.raises(ClientError) as ex: + client.modify_db_snapshot_attribute( + DBSnapshotIdentifier="invalid_snapshot_id", + AttributeName="restore", + ValuesToRemove=["123"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 404 + assert resp["Error"]["Code"] == "DBSnapshotNotFound" + + +@mock_aws +def test_modify_snapshot_attributes_fails_with_invalid_attribute_name(client): + instance_id = "test-instance" + create_db_instance( + DBInstanceIdentifier=instance_id, + Engine="postgres", + StorageEncrypted=False, + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_id, DBSnapshotIdentifier="snapshot-1" + )["DBSnapshot"] + assert snapshot["DBSnapshotIdentifier"] == "snapshot-1" + with pytest.raises(ClientError) as ex: + client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="invalid_name", + ValuesToAdd=["123"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidParameterValue" + + +@mock_aws +def test_modify_snapshot_attributes_fails_with_invalid_parameter_combination(client): + instance_id = "test-instance" + create_db_instance( + DBInstanceIdentifier=instance_id, + Engine="postgres", + StorageEncrypted=False, + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_id, DBSnapshotIdentifier="snapshot-1" + )["DBSnapshot"] + assert snapshot["DBSnapshotIdentifier"] == "snapshot-1" + + with pytest.raises(ClientError) as ex: + client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=["123", "456"], + ValuesToRemove=["456"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidParameterCombination" + + +@mock_aws +def test_modify_snapshot_attributes_fails_when_exceeding_number_of_shared_accounts( + client, +): + instance_id = "test-instance" + create_db_instance( + DBInstanceIdentifier=instance_id, + Engine="postgres", + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier=instance_id, DBSnapshotIdentifier="snapshot-1" + )["DBSnapshot"] + assert snapshot["DBSnapshotIdentifier"] == "snapshot-1" + + customer_accounts_add = [str(x) for x in range(30)] + with pytest.raises(ClientError) as ex: + client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "SharedSnapshotQuotaExceeded" + + +@mock_aws +def test_modify_snapshot_attributes_fails_for_automated_snapshot(client): + create_db_instance( + DBInstanceIdentifier="test-instance", + Engine="postgres", + ) + # Automated snapshots + auto_snapshot = client.describe_db_snapshots( + DBInstanceIdentifier="test-instance", SnapshotType="automated" + ).get("DBSnapshots")[0] + with pytest.raises(ClientError) as ex: + client.modify_db_snapshot_attribute( + DBSnapshotIdentifier=auto_snapshot["DBSnapshotIdentifier"], + AttributeName="restore", + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidParameterValue" + + +@mock_aws +def test_copy_db_snapshot_fails_for_inaccessible_kms_key_arn(client): + create_db_instance( + DBInstanceIdentifier="test-instance", + Engine="postgres", + StorageEncrypted=True, + ) + snapshot = client.create_db_snapshot( + DBInstanceIdentifier="test-instance", DBSnapshotIdentifier="snapshot-1" + )["DBSnapshot"] + assert snapshot["DBSnapshotIdentifier"] == "snapshot-1" + + kms_key_id = ( + "arn:aws:kms:us-east-1:123456789012:key/6e551f00-8a97-4e3b-b620-1a59080bd1be" + ) + with pytest.raises(ClientError) as ex: + client.copy_db_snapshot( + SourceDBSnapshotIdentifier="snapshot-1", + TargetDBSnapshotIdentifier="snapshot-1-copy", + KmsKeyId=kms_key_id, + ) + message = f"Specified KMS key [{kms_key_id}] does not exist, is not enabled or you do not have permissions to access it." + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "KMSKeyNotAccessibleFault" + assert message in resp["Error"]["Message"] + + +@mock_aws +def test_copy_db_snapshot_copy_tags_from_source_snapshot(client): + create_db_instance( + DBInstanceIdentifier="instance-1", + Engine="postgres", + ) + snapshot = client.create_db_snapshot( + DBSnapshotIdentifier="snap-1", + DBInstanceIdentifier="instance-1", + Tags=test_tags, + )["DBSnapshot"] + tag_list = client.list_tags_for_resource(ResourceName=snapshot["DBSnapshotArn"])[ + "TagList" + ] + tag_list == test_tags + copied_snapshot = client.copy_db_snapshot( + SourceDBSnapshotIdentifier="snap-1", + TargetDBSnapshotIdentifier="snap-1-copy", + CopyTags=True, + )["DBSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=copied_snapshot["DBSnapshotArn"] + )["TagList"] + assert tag_list == test_tags + + +@mock_aws +def test_copy_db_snapshot_tags_in_request(client): + create_db_instance( + DBInstanceIdentifier="instance-1", + Engine="postgres", + ) + snapshot = client.create_db_snapshot( + DBSnapshotIdentifier="snap-1", + DBInstanceIdentifier="instance-1", + Tags=test_tags, + )["DBSnapshot"] + tag_list = client.list_tags_for_resource(ResourceName=snapshot["DBSnapshotArn"])[ + "TagList" + ] + assert tag_list == test_tags + new_snapshot_tags = [ + { + "Key": "foo", + "Value": "baz", + }, + ] + copied_snapshot = client.copy_db_snapshot( + SourceDBSnapshotIdentifier="snap-1", + TargetDBSnapshotIdentifier="snap-1-copy", + Tags=new_snapshot_tags, + CopyTags=True, + )["DBSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=copied_snapshot["DBSnapshotArn"] + )["TagList"] + assert tag_list == new_snapshot_tags + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index bee398dcb097..27b92467ad47 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -10,6 +10,17 @@ from . import DEFAULT_REGION from .test_rds import create_db_instance +test_tags = [ + { + "Key": "foo", + "Value": "bar", + }, + { + "Key": "foo1", + "Value": "bar1", + }, +] + @pytest.fixture(name="client") @mock_aws @@ -1065,7 +1076,7 @@ def test_describe_db_cluster_snapshot_attributes_default(client): )["DBClusterSnapshotAttributesResult"] assert result["DBClusterSnapshotIdentifier"] == "g-1" - assert result["DBClusterSnapshotAttributes"] == [] + assert len(result["DBClusterSnapshotAttributes"]) >= 1 @mock_aws @@ -1186,3 +1197,438 @@ def test_backtrack_errors(client, params): err = ex.value.response["Error"] assert err["Code"] == "InvalidParameterValue" assert err["Message"] == params[2] + + +@mock_aws +def test_describe_and_modify_cluster_snapshot_attributes(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + cluster_snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", DBClusterIdentifier="cluster-1" + )["DBClusterSnapshot"] + assert cluster_snapshot["DBClusterSnapshotIdentifier"] == "cluster-snap" + cluster_snapshot_attribute_results = client.describe_db_cluster_snapshot_attributes( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"] + )["DBClusterSnapshotAttributesResult"] + assert ( + cluster_snapshot_attribute_results["DBClusterSnapshotIdentifier"] + == "cluster-snap" + ) + assert len(cluster_snapshot_attribute_results["DBClusterSnapshotAttributes"]) == 1 + assert ( + cluster_snapshot_attribute_results["DBClusterSnapshotAttributes"][0][ + "AttributeName" + ] + == "restore" + ) + assert ( + len( + cluster_snapshot_attribute_results["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + ) + == 0 + ) + + # Modify the snapshot attribute (Add) + customer_accounts_add = ["123", "456"] + cluster_snapshot_attribute_result = client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + )["DBClusterSnapshotAttributesResult"] + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotIdentifier"] + == "cluster-snap" + ) + assert len(cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"]) == 1 + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeName" + ] + == "restore" + ) + assert ( + len( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + ) + == 2 + ) + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + == customer_accounts_add + ) + + # Modify the snapshot attribute (Add + Remove) + customer_accounts_add = ["789"] + customer_accounts_remove = ["123", "456"] + cluster_snapshot_attribute_result = client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + ValuesToRemove=customer_accounts_remove, + )["DBClusterSnapshotAttributesResult"] + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotIdentifier"] + == "cluster-snap" + ) + assert len(cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"]) == 1 + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeName" + ] + == "restore" + ) + assert ( + len( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + ) + == 1 + ) + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + == customer_accounts_add + ) + + # Modify the snapshot attribute (Add + Remove) + customer_accounts_remove = ["789"] + cluster_snapshot_attribute_result = client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ValuesToRemove=customer_accounts_remove, + )["DBClusterSnapshotAttributesResult"] + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotIdentifier"] + == "cluster-snap" + ) + assert len(cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"]) == 1 + assert ( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeName" + ] + == "restore" + ) + assert ( + len( + cluster_snapshot_attribute_result["DBClusterSnapshotAttributes"][0][ + "AttributeValues" + ] + ) + == 0 + ) + + +@mock_aws +def test_describe_snapshot_attributes_fails_with_invalid_cluster_snapshot_identifier( + client, +): + with pytest.raises(ClientError) as ex: + client.describe_db_cluster_snapshot_attributes( + DBClusterSnapshotIdentifier="invalid_snapshot_id", + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 404 + assert resp["Error"]["Code"] == "DBClusterSnapshotNotFoundFault" + + +@mock_aws +def test_modify_snapshot_attributes_with_fails_invalid_cluster_snapshot_identifier( + client, +): + with pytest.raises(ClientError) as ex: + client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier="invalid_snapshot_id", + AttributeName="restore", + ValuesToRemove=["123"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 404 + assert resp["Error"]["Code"] == "DBClusterSnapshotNotFoundFault" + + +@mock_aws +def test_modify_snapshot_attributes_fails_with_invalid_attribute_name(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + cluster_snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", DBClusterIdentifier="cluster-1" + ).get("DBClusterSnapshot") + assert cluster_snapshot["DBClusterSnapshotIdentifier"] == "cluster-snap" + + with pytest.raises(ClientError) as ex: + client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="invalid_name", + ValuesToAdd=["123"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidParameterValue" + + +@mock_aws +def test_modify_snapshot_attributes_with_fails_invalid_parameter_combination(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + cluster_snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", DBClusterIdentifier="cluster-1" + ).get("DBClusterSnapshot") + assert cluster_snapshot["DBClusterSnapshotIdentifier"] == "cluster-snap" + + with pytest.raises(ClientError) as ex: + client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=["123", "456"], + ValuesToRemove=["456"], + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidParameterCombination" + + +@mock_aws +def test_modify_snapshot_attributes_fails_when_exceeding_number_of_shared_accounts( + client, +): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + cluster_snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", DBClusterIdentifier="cluster-1" + ).get("DBClusterSnapshot") + assert cluster_snapshot["DBClusterSnapshotIdentifier"] == "cluster-snap" + + customer_accounts_add = [str(x) for x in range(30)] + with pytest.raises(ClientError) as ex: + client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=cluster_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ValuesToAdd=customer_accounts_add, + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "SharedSnapshotQuotaExceeded" + + +@mock_aws +def test_modify_snapshot_attributes_fails_for_automated_snapshot(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + # Automated snapshots + auto_snapshot = client.describe_db_cluster_snapshots(MaxRecords=20).get( + "DBClusterSnapshots" + )[0] + with pytest.raises(ClientError) as ex: + client.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=auto_snapshot["DBClusterSnapshotIdentifier"], + AttributeName="restore", + ) + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "InvalidDBClusterSnapshotStateFault" + + +@mock_aws +def test_copy_unencrypted_db_cluster_snapshot_to_encrypted_db_cluster_snapshot(client): + create_db_cluster( + DBClusterIdentifier="unencrypted-cluster-1", + Engine="aurora-postgresql", + StorageEncrypted=False, + ) + snapshot = client.create_db_cluster_snapshot( + DBClusterIdentifier="unencrypted-cluster-1", + DBClusterSnapshotIdentifier="unencrypted-db-cluster-snapshot", + )["DBClusterSnapshot"] + assert snapshot["StorageEncrypted"] is False + + client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="unencrypted-db-cluster-snapshot", + TargetDBClusterSnapshotIdentifier="encrypted-db-cluster-snapshot", + KmsKeyId="alias/aws/rds", + ) + snapshot = client.describe_db_cluster_snapshots( + DBClusterSnapshotIdentifier="encrypted-db-cluster-snapshot" + )["DBClusterSnapshots"][0] + assert snapshot["Engine"] == "aurora-postgresql" + assert snapshot["DBClusterSnapshotIdentifier"] == "encrypted-db-cluster-snapshot" + assert snapshot["StorageEncrypted"] is True + + +@mock_aws +def test_copy_db_cluster_snapshot_fails_for_existing_target_snapshot(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + + client.create_db_cluster_snapshot( + DBClusterIdentifier="cluster-1", DBClusterSnapshotIdentifier="source-snapshot" + ) + + client.create_db_cluster_snapshot( + DBClusterIdentifier="cluster-1", DBClusterSnapshotIdentifier="target-snapshot" + ) + + with pytest.raises(ClientError) as exc: + client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="source-snapshot", + TargetDBClusterSnapshotIdentifier="target-snapshot", + ) + + err = exc.value.response["Error"] + assert err["Code"] == "DBClusterSnapshotAlreadyExistsFault" + assert "target-snapshot already exists" in err["Message"] + + +@mock_aws +def test_copy_db_cluster_snapshot_fails_when_limit_exceeded(client, monkeypatch): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + + client.create_db_cluster_snapshot( + DBClusterIdentifier="cluster-1", DBClusterSnapshotIdentifier="source-snapshot" + ) + with pytest.raises(ClientError) as exc: + monkeypatch.setenv("MOTO_RDS_SNAPSHOT_LIMIT", "1") + client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="source-snapshot", + TargetDBClusterSnapshotIdentifier="target-snapshot", + ) + err = exc.value.response["Error"] + assert err["Code"] == "SnapshotQuotaExceeded" + assert ( + err["Message"] + == "The request cannot be processed because it would exceed the maximum number of snapshots." + ) + + +@mock_aws +def test_create_db_cluster_snapshot_with_tags_overrides_copy_snapshot_tags(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + CopyTagsToSnapshot=True, + Tags=test_tags, + ) + new_snapshot_tags = [ + { + "Key": "foo", + "Value": "baz", + }, + ] + snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", + DBClusterIdentifier="cluster-1", + Tags=new_snapshot_tags, + )["DBClusterSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=snapshot["DBClusterSnapshotArn"] + )["TagList"] + assert tag_list == new_snapshot_tags + + +@mock_aws +def test_copy_db_cluster_snapshot_fails_for_inaccessible_kms_key_arn(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + StorageEncrypted=True, + ) + snapshot = client.create_db_cluster_snapshot( + DBClusterIdentifier="cluster-1", DBClusterSnapshotIdentifier="snapshot-1" + )["DBClusterSnapshot"] + assert snapshot["DBClusterSnapshotIdentifier"] == "snapshot-1" + + kms_key_id = ( + "arn:aws:kms:us-east-1:123456789012:key/6e551f00-8a97-4e3b-b620-1a59080bd1be" + ) + with pytest.raises(ClientError) as ex: + client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="snapshot-1", + TargetDBClusterSnapshotIdentifier="snapshot-1-copy", + KmsKeyId=kms_key_id, + ) + message = f"Specified KMS key [{kms_key_id}] does not exist, is not enabled or you do not have permissions to access it." + resp = ex.value.response + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 400 + assert resp["Error"]["Code"] == "KMSKeyNotAccessibleFault" + assert message in resp["Error"]["Message"] + + +@mock_aws +def test_copy_db_cluster_snapshot_copy_tags_from_source_snapshot(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", + DBClusterIdentifier="cluster-1", + Tags=test_tags, + )["DBClusterSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=snapshot["DBClusterSnapshotArn"] + )["TagList"] + assert tag_list == test_tags + copied_snapshot = client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="cluster-snap", + TargetDBClusterSnapshotIdentifier="cluster-snap-copy", + CopyTags=True, + )["DBClusterSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=copied_snapshot["DBClusterSnapshotArn"] + )["TagList"] + assert tag_list == test_tags + + +@mock_aws +def test_copy_db_cluster_snapshot_tags_in_request(client): + create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + ) + snapshot = client.create_db_cluster_snapshot( + DBClusterSnapshotIdentifier="cluster-snap", + DBClusterIdentifier="cluster-1", + Tags=test_tags, + )["DBClusterSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=snapshot["DBClusterSnapshotArn"] + )["TagList"] + assert tag_list == test_tags + new_snapshot_tags = [ + { + "Key": "foo", + "Value": "baz", + }, + ] + copied_snapshot = client.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier="cluster-snap", + TargetDBClusterSnapshotIdentifier="cluster-snap-copy", + Tags=new_snapshot_tags, + CopyTags=True, + )["DBClusterSnapshot"] + tag_list = client.list_tags_for_resource( + ResourceName=copied_snapshot["DBClusterSnapshotArn"] + )["TagList"] + assert tag_list == new_snapshot_tags From 651304088917c176e53dd89cfbc1438360f541c2 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Thu, 13 Feb 2025 15:50:00 -0800 Subject: [PATCH 046/103] RDS: Encapsulate DBSnapshot/DBClusterSnapshot attributes in Mixin class --- moto/rds/models.py | 111 +++++++++++++++++++-------------------------- 1 file changed, 46 insertions(+), 65 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index b5c78cd41a6a..c229bc9d0b3f 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -77,6 +77,42 @@ def find_cluster(cluster_arn: str) -> DBCluster: return rds_backends[account][region].describe_db_clusters(cluster_arn)[0] +class SnapshotAttributesMixin: + ALLOWED_ATTRIBUTE_NAMES = ["restore"] + + attributes: Dict[str, List[str]] + + def __init__(self, **kwargs: Any) -> None: + super().__init__(**kwargs) + self.attributes = defaultdict(list) + for attribute in self.ALLOWED_ATTRIBUTE_NAMES: + self.attributes[attribute] = [] + + def modify_attribute( + self, + attribute_name: str, + values_to_add: Optional[List[str]], + values_to_remove: Optional[List[str]], + ) -> None: + if not values_to_add: + values_to_add = [] + if not values_to_remove: + values_to_remove = [] + if attribute_name not in self.ALLOWED_ATTRIBUTE_NAMES: + raise InvalidParameterValue(f"Invalid snapshot attribute {attribute_name}") + common_values = set(values_to_add).intersection(values_to_remove) + if common_values: + raise InvalidParameterCombination( + "A value may not appear in both the add list and remove list. " + + f"{common_values}" + ) + add = self.attributes[attribute_name] + values_to_add + new_attribute_values = [value for value in add if value not in values_to_remove] + if len(new_attribute_values) > int(os.getenv("MAX_SHARED_ACCOUNTS", 20)): + raise SharedSnapshotQuotaExceeded() + self.attributes[attribute_name] = new_attribute_values + + class TaggingMixin: _tags: List[Dict[str, str]] = [] @@ -115,7 +151,8 @@ def remove_tags(self, tag_keys: List[str]) -> None: class RDSBaseModel(TaggingMixin, XFormedAttributeAccessMixin, BaseModel): resource_type: str - def __init__(self, backend: RDSBackend) -> None: + def __init__(self, backend: RDSBackend, **kwargs: Any) -> None: + super().__init__(**kwargs) self.backend = backend self.created = iso_8601_datetime_with_milliseconds() @@ -686,9 +723,9 @@ def save_automated_backup(self) -> None: ) -class DBClusterSnapshot(RDSBaseModel): +class DBClusterSnapshot(SnapshotAttributesMixin, RDSBaseModel): resource_type = "cluster-snapshot" - ALLOWED_ATTRIBUTE_NAMES = ["restore"] + SUPPORTED_FILTERS = { "db-cluster-id": FilterDef( ["db_cluster_arn", "db_cluster_identifier"], @@ -709,8 +746,9 @@ def __init__( snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, kms_key_id: Optional[str] = None, + **kwargs: Any, ): - super().__init__(backend) + super().__init__(backend=backend, **kwargs) self.db_cluster_snapshot_identifier = snapshot_id self.snapshot_type = snapshot_type self.percent_progress = 100 @@ -738,9 +776,6 @@ def __init__( self.master_username = self.cluster.master_username self.port = self.cluster.port self.storage_encrypted = self.cluster.storage_encrypted - self.attributes: Dict[str, List[str]] = defaultdict(list) - for attribute in self.ALLOWED_ATTRIBUTE_NAMES: - self.attributes[attribute] = [] @property def name(self) -> str: @@ -754,32 +789,6 @@ def db_cluster_snapshot_arn(self) -> str: def snapshot_create_time(self) -> str: return self.created - def modify_attribute( - self, - attribute_name: str, - values_to_add: Optional[List[str]], - values_to_remove: Optional[List[str]], - ) -> None: - if not values_to_add: - values_to_add = [] - if not values_to_remove: - values_to_remove = [] - if attribute_name not in self.ALLOWED_ATTRIBUTE_NAMES: - raise InvalidParameterValue( - f"Invalid cluster snapshot attribute {attribute_name}" - ) - common_values = set(values_to_add).intersection(values_to_remove) - if common_values: - raise InvalidParameterCombination( - "A value may not appear in both the add list and remove list. " - + f"{common_values}" - ) - add = self.attributes[attribute_name] + values_to_add - new_attribute_values = [value for value in add if value not in values_to_remove] - if len(new_attribute_values) > int(os.getenv("MAX_SHARED_ACCOUNTS", 20)): - raise SharedSnapshotQuotaExceeded() - self.attributes[attribute_name] = new_attribute_values - class DBInstance(CloudFormationModel, RDSBaseModel): SUPPORTED_FILTERS = { @@ -1284,9 +1293,9 @@ def save_automated_backup(self) -> None: self.backend.create_auto_snapshot(self.db_instance_identifier, snapshot_id) -class DBSnapshot(RDSBaseModel): +class DBSnapshot(SnapshotAttributesMixin, RDSBaseModel): resource_type = "snapshot" - ALLOWED_ATTRIBUTE_NAMES = ["restore"] + SUPPORTED_FILTERS = { "db-instance-id": FilterDef( ["database.db_instance_arn", "database.db_instance_identifier"], @@ -1309,8 +1318,9 @@ def __init__( tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, kms_key_id: Optional[str] = None, + **kwargs: Any, ): - super().__init__(backend) + super().__init__(backend=backend, **kwargs) self.database = copy.copy(database) # TODO: Refactor this out. self.db_snapshot_identifier = snapshot_id self.snapshot_type = snapshot_type @@ -1342,9 +1352,6 @@ def __init__( self.instance_create_time = database.created self.master_username = database.master_username self.port = database.port - self.attributes: Dict[str, List[str]] = defaultdict(list) - for attribute in self.ALLOWED_ATTRIBUTE_NAMES: - self.attributes[attribute] = [] @property def name(self) -> str: @@ -1358,32 +1365,6 @@ def db_snapshot_arn(self) -> str: def snapshot_create_time(self) -> str: return self.created - def modify_attribute( - self, - attribute_name: str, - values_to_add: Optional[List[str]], - values_to_remove: Optional[List[str]], - ) -> None: - if not values_to_add: - values_to_add = [] - if not values_to_remove: - values_to_remove = [] - if attribute_name not in self.ALLOWED_ATTRIBUTE_NAMES: - raise InvalidParameterValue( - f"Invalid db snapshot attribute {attribute_name}" - ) - common_values = set(values_to_add).intersection(values_to_remove) - if common_values: - raise InvalidParameterCombination( - "A value may not appear in both the add list and remove list. " - + f"{common_values}" - ) - add = self.attributes[attribute_name] + values_to_add - new_attribute_values = [value for value in add if value not in values_to_remove] - if len(new_attribute_values) > int(os.getenv("MAX_SHARED_ACCOUNTS", 20)): - raise SharedSnapshotQuotaExceeded() - self.attributes[attribute_name] = new_attribute_values - class ExportTask(RDSBaseModel): def __init__( From 71caa36fae55a79b8f32dd0ffff83c762c3eb446 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 01:33:05 -0800 Subject: [PATCH 047/103] RDS: Allow DBSnapshot/DBClusterSnapshot cross-region copying/cross-account sharing This is a minimum viable implementation. --- moto/rds/models.py | 133 ++++++++++++++++++++++++++++--------- tests/test_rds/test_rds.py | 123 ++++++++++++++++++++++++++++++++++ 2 files changed, 226 insertions(+), 30 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index c229bc9d0b3f..a7d91ee33c66 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -6,10 +6,12 @@ import re import string from collections import OrderedDict, defaultdict -from functools import lru_cache +from functools import lru_cache, partialmethod from re import compile as re_compile from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Tuple, Union +from typing_extensions import Literal, Type + from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel from moto.core.utils import iso_8601_datetime_with_milliseconds, utcnow @@ -77,6 +79,11 @@ def find_cluster(cluster_arn: str) -> DBCluster: return rds_backends[account][region].describe_db_clusters(cluster_arn)[0] +KMS_ARN_PATTERN = re.compile( + r"^arn:(aws|aws-us-gov|aws-cn):kms:(?P\w+(?:-\w+)+):(?P\d{12}):key\/(?P[A-Za-z0-9]+(?:-[A-Za-z0-9]+)+)$" +) + + class SnapshotAttributesMixin: ALLOWED_ATTRIBUTE_NAMES = ["restore"] @@ -1746,6 +1753,88 @@ def __init__(self, region_name: str, account_id: str): def kms(self) -> KmsBackend: return kms_backends[self.account_id][self.region_name] + def _validate_kms_key(self, kms_key_id: str) -> str: + key = kms_key_id + kms_backend = self.kms + if (match := re.fullmatch(KMS_ARN_PATTERN, kms_key_id)) is not None: + region = match.group("region") + if region != self.region_name: + raise KMSKeyNotAccessibleFault(kms_key_id) + account = match.group("account_id") + key = match.group("key") + kms_backend = self.get_backend("kms", region, account) # type: ignore[assignment] + assert isinstance(kms_backend, KmsBackend) + kms_key = kms_backend.describe_key(key) + # We do this in case an alias was passed in. + validated_key = kms_key.id + return validated_key + + def get_backend( + self, + service: Literal["kms"] | Literal["rds"], + region: Optional[str] = None, + account_id: Optional[str] = None, + ) -> KmsBackend | RDSBackend: + from moto.backends import get_backend as get_moto_backend + + if region is None: + region = self.region_name + + if account_id is None: + account_id = self.account_id + + return get_moto_backend(service)[account_id][region] + + def get_snapshot( + self, + identifier: str, + resource_type: Type[DBSnapshot] | Type[DBClusterSnapshot], + not_found_exception: Type[DBSnapshotNotFoundFault] + | Type[DBClusterSnapshotNotFoundError], + ) -> DBSnapshot | DBClusterSnapshot: + region = self.region_name + if identifier.startswith("arn"): + region = identifier.split(":")[3] + identifier = identifier.split(":")[-1] + backend = self.get_backend("rds", region=region) + assert isinstance(backend, RDSBackend) + snapshots = backend.resource_map[resource_type] + if identifier not in snapshots: # type: ignore[operator] + raise not_found_exception(identifier) + return snapshots[identifier] # type: ignore[index] + + get_db_snapshot = partialmethod( + get_snapshot, + resource_type=DBSnapshot, + not_found_exception=DBSnapshotNotFoundFault, + ) + get_db_cluster_snapshot = partialmethod( + get_snapshot, + resource_type=DBClusterSnapshot, + not_found_exception=DBClusterSnapshotNotFoundError, + ) + + def get_shared_snapshots( + self, resource_type: Type[DBSnapshot] | Type[DBClusterSnapshot] + ) -> List[DBSnapshot | DBClusterSnapshot]: + snapshots_shared = [] + for backend_container in rds_backends.values(): + for backend in backend_container.values(): + if backend.region_name != self.region_name: + continue + snapshots = backend.resource_map[resource_type].values() # type: ignore[attr-defined] + for snapshot in snapshots: + if self.account_id in snapshot.attributes["restore"]: + snapshots_shared.append(snapshot) + return snapshots_shared + + get_shared_db_snapshots = partialmethod( + get_shared_snapshots, resource_type=DBSnapshot + ) + get_shared_db_cluster_snapshots = partialmethod( + get_shared_snapshots, resource_type=DBClusterSnapshot + ) + @lru_cache() def db_cluster_options(self, engine) -> List[Dict[str, Any]]: # type: ignore from moto.rds.utils import decode_orderable_db_instance @@ -1842,26 +1931,17 @@ def copy_db_snapshot( **_: Any, ) -> DBSnapshot: if source_db_snapshot_identifier.startswith("arn:aws:rds:"): - source_db_snapshot_identifier = self.extract_snapshot_name_from_arn( - source_db_snapshot_identifier - ) - if source_db_snapshot_identifier not in self.database_snapshots: - raise DBSnapshotNotFoundFault(source_db_snapshot_identifier) + self.extract_snapshot_name_from_arn(source_db_snapshot_identifier) if target_db_snapshot_identifier in self.database_snapshots: raise DBSnapshotAlreadyExistsError(target_db_snapshot_identifier) - if len(self.cluster_snapshots) >= int( + if len(self.database_snapshots) >= int( os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") ): raise SnapshotQuotaExceededFault() - try: - if kms_key_id is not None: - key = self.kms.describe_key(str(kms_key_id)) - # We do this in case an alias was passed in. - kms_key_id = key.id - except Exception: - raise KMSKeyNotAccessibleFault(str(kms_key_id)) - source_db_snapshot = self.database_snapshots[source_db_snapshot_identifier] + if kms_key_id is not None: + kms_key_id = self._validate_kms_key(kms_key_id) + source_db_snapshot = self.get_db_snapshot(source_db_snapshot_identifier) # When tags are passed, AWS does NOT copy/merge tags of the # source snapshot, even when copy_tags=True is given. # But when tags=[], AWS does honor copy_tags=True. @@ -1929,6 +2009,8 @@ def describe_db_snapshots( snapshot_type: Optional[str] = None, filters: Optional[Dict[str, Any]] = None, ) -> List[DBSnapshot]: + if snapshot_type == "shared": + return self.get_shared_db_snapshots() # type: ignore[return-value] snapshots = self.database_snapshots if db_instance_identifier: filters = merge_filters( @@ -2005,10 +2087,6 @@ def extract_snapshot_name_from_arn(self, snapshot_arn: str) -> str: "letters, digits, and hyphens; and must not end with a hyphen or " "contain two consecutive hyphens." ) - if region_name != self.region_name or account_id != self.account_id: - raise NotImplementedError( - "Cross account/region snapshot handling is not yet implemented in moto." - ) return snapshot_name def restore_db_instance_from_db_snapshot( @@ -2575,8 +2653,6 @@ def copy_db_cluster_snapshot( tags: Optional[List[Dict[str, str]]] = None, **_: Any, ) -> DBClusterSnapshot: - if source_db_cluster_snapshot_identifier not in self.cluster_snapshots: - raise DBClusterSnapshotNotFoundError(source_db_cluster_snapshot_identifier) if target_db_cluster_snapshot_identifier in self.cluster_snapshots: raise DBClusterSnapshotAlreadyExistsError( target_db_cluster_snapshot_identifier @@ -2586,16 +2662,11 @@ def copy_db_cluster_snapshot( os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") ): raise SnapshotQuotaExceededFault() - try: - if kms_key_id is not None: - key = self.kms.describe_key(str(kms_key_id)) - # We do this in case an alias was passed in. - kms_key_id = key.id - except Exception: - raise KMSKeyNotAccessibleFault(str(kms_key_id)) - source_db_cluster_snapshot = self.cluster_snapshots[ + if kms_key_id is not None: + kms_key_id = self._validate_kms_key(kms_key_id) + source_db_cluster_snapshot = self.get_db_cluster_snapshot( source_db_cluster_snapshot_identifier - ] + ) # If tags are supplied, copy_tags is ignored (verified against real AWS backend 2025-02-12). if copy_tags and not tags: tags = source_db_cluster_snapshot.tags or [] @@ -2638,6 +2709,8 @@ def describe_db_cluster_snapshots( snapshot_type: Optional[str] = None, filters: Any = None, ) -> List[DBClusterSnapshot]: + if snapshot_type == "shared": + return self.get_shared_db_cluster_snapshots() # type: ignore[return-value] snapshots = self.cluster_snapshots if db_cluster_identifier: filters = merge_filters(filters, {"db-cluster-id": [db_cluster_identifier]}) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 1b41487185b5..437f52f07357 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -3220,6 +3220,129 @@ def test_copy_db_snapshot_tags_in_request(client): assert tag_list == new_snapshot_tags +@mock_aws +def test_copy_snapshot_cross_region(): + source_region = "us-west-2" + source_client = boto3.client("rds", region_name=source_region) + source_client.create_db_instance( + DBInstanceIdentifier="db-1", + Engine="postgres", + DBInstanceClass="db.m1.small", + ) + source_snapshot = source_client.create_db_snapshot( + DBInstanceIdentifier="db-1", + DBSnapshotIdentifier="snapshot-1", + )["DBSnapshot"] + dest_region = "us-east-2" + dest_client = boto3.client("rds", region_name=dest_region) + dest_client.copy_db_snapshot( + TargetDBSnapshotIdentifier="cross-region-copy", + SourceDBSnapshotIdentifier=source_snapshot["DBSnapshotArn"], + SourceRegion=source_region, + ) + dest_snapshot = dest_client.describe_db_snapshots( + DBSnapshotIdentifier="cross-region-copy" + )["DBSnapshots"][0] + assert dest_snapshot["DBSnapshotIdentifier"] == "cross-region-copy" + assert dest_region in dest_snapshot["DBSnapshotArn"] + + +@mock_aws +def test_share_db_snapshot_cross_account(): + rds = boto3.client("rds", region_name=DEFAULT_REGION) + rds.create_db_instance( + DBInstanceIdentifier="db-1", + Engine="postgres", + DBInstanceClass="db.m1.small", + ) + snapshot = rds.create_db_snapshot( + DBInstanceIdentifier="db-1", + DBSnapshotIdentifier="snapshot-1", + )["DBSnapshot"] + destination_account = "210987654321" + with pytest.MonkeyPatch.context() as mp: + kms = boto3.client("kms", region_name=DEFAULT_REGION) + mp.setenv("MOTO_ACCOUNT_ID", destination_account) + resp = kms.create_key(Description="acting as another account") + kms_key_id = resp["KeyMetadata"]["Arn"] + shared_snapshot_id = snapshot["DBSnapshotIdentifier"] + "-shared" + snapshot_copy = rds.copy_db_snapshot( + SourceDBSnapshotIdentifier=snapshot["DBSnapshotIdentifier"], + TargetDBSnapshotIdentifier=shared_snapshot_id, + KmsKeyId=kms_key_id, + )["DBSnapshot"] + assert snapshot_copy + rds.modify_db_snapshot_attribute( + DBSnapshotIdentifier=shared_snapshot_id, + AttributeName="restore", + ValuesToAdd=[destination_account], + ) + with pytest.MonkeyPatch.context() as mp: + mp.setenv("MOTO_ACCOUNT_ID", destination_account) + resp = rds.describe_db_snapshots(SnapshotType="shared") + snapshot = resp["DBSnapshots"][0] + assert snapshot["DBSnapshotIdentifier"] == shared_snapshot_id + + +@mock_aws +def test_share_db_cluster_snapshot_cross_account(): + rds = boto3.client("rds", region_name=DEFAULT_REGION) + rds.create_db_cluster( + DBClusterIdentifier="cluster-1", + Engine="aurora-postgresql", + MasterUsername="admin", + MasterUserPassword="root-password", + ) + snapshot = rds.create_db_cluster_snapshot( + DBClusterIdentifier="cluster-1", + DBClusterSnapshotIdentifier="snapshot-1", + )["DBClusterSnapshot"] + destination_account = "210987654321" + with pytest.MonkeyPatch.context() as mp: + kms = boto3.client("kms", region_name=DEFAULT_REGION) + mp.setenv("MOTO_ACCOUNT_ID", destination_account) + resp = kms.create_key(Description="acting as another account") + kms_key_id = resp["KeyMetadata"]["Arn"] + shared_snapshot_id = snapshot["DBClusterSnapshotIdentifier"] + "-shared" + snapshot_copy = rds.copy_db_cluster_snapshot( + SourceDBClusterSnapshotIdentifier=snapshot["DBClusterSnapshotIdentifier"], + TargetDBClusterSnapshotIdentifier=shared_snapshot_id, + KmsKeyId=kms_key_id, + )["DBClusterSnapshot"] + assert snapshot_copy + rds.modify_db_cluster_snapshot_attribute( + DBClusterSnapshotIdentifier=shared_snapshot_id, + AttributeName="restore", + ValuesToAdd=[destination_account], + ) + with pytest.MonkeyPatch.context() as mp: + mp.setenv("MOTO_ACCOUNT_ID", destination_account) + resp = rds.describe_db_cluster_snapshots(SnapshotType="shared") + snapshot = resp["DBClusterSnapshots"][0] + assert snapshot["DBClusterSnapshotIdentifier"] == shared_snapshot_id + + +@mock_aws +def test_copy_db_snapshot_fails_when_limit_exceeded(client, monkeypatch): + instance = create_db_instance() + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="source-snapshot", + ) + with pytest.raises(ClientError) as exc: + monkeypatch.setenv("MOTO_RDS_SNAPSHOT_LIMIT", "1") + client.copy_db_snapshot( + SourceDBSnapshotIdentifier="source-snapshot", + TargetDBSnapshotIdentifier="target-snapshot", + ) + err = exc.value.response["Error"] + assert err["Code"] == "SnapshotQuotaExceeded" + assert ( + err["Message"] + == "The request cannot be processed because it would exceed the maximum number of snapshots." + ) + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 48b1ed3a17f5b5172c2151c17bf21dd4c52309c7 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 02:34:13 -0800 Subject: [PATCH 048/103] RDS: Raise KMSKeyNotAccessible exception for non-existent keys --- moto/rds/models.py | 8 +++++--- tests/test_rds/test_rds.py | 25 +++++++++++++++++++------ 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index a7d91ee33c66..91798ff53fe8 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1764,9 +1764,11 @@ def _validate_kms_key(self, kms_key_id: str) -> str: key = match.group("key") kms_backend = self.get_backend("kms", region, account) # type: ignore[assignment] assert isinstance(kms_backend, KmsBackend) - kms_key = kms_backend.describe_key(key) - # We do this in case an alias was passed in. - validated_key = kms_key.id + try: + kms_key = kms_backend.describe_key(key) + except KeyError: + raise KMSKeyNotAccessibleFault(kms_key_id) + validated_key = kms_key.arn return validated_key def get_backend( diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 437f52f07357..4e4f48af6aa8 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -3202,12 +3202,6 @@ def test_copy_db_snapshot_tags_in_request(client): "TagList" ] assert tag_list == test_tags - new_snapshot_tags = [ - { - "Key": "foo", - "Value": "baz", - }, - ] copied_snapshot = client.copy_db_snapshot( SourceDBSnapshotIdentifier="snap-1", TargetDBSnapshotIdentifier="snap-1-copy", @@ -3343,6 +3337,25 @@ def test_copy_db_snapshot_fails_when_limit_exceeded(client, monkeypatch): ) +@mock_aws +def test_copy_snapshot_fails_with_non_existent_kms_key_id(client): + instance = create_db_instance() + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="source-snapshot", + ) + non_existent_key = f"arn:aws:kms:{DEFAULT_REGION}:{ACCOUNT_ID}:key/6e551f00-8a97-4e3b-b620-1a59080bd1be" + with pytest.raises(ClientError) as exc: + client.copy_db_snapshot( + SourceDBSnapshotIdentifier="source-snapshot", + TargetDBSnapshotIdentifier="target-snapshot", + KmsKeyId=non_existent_key, + ) + err = exc.value.response["Error"] + assert err["Code"] == "KMSKeyNotAccessibleFault" + assert "does not exist" in err["Message"] + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 2b9b373185849a826be81d29c65030f24efadc00 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 03:17:48 -0800 Subject: [PATCH 049/103] RDS: Skip tests that set env if TEST_SERVER_MODE is True --- tests/test_rds/test_rds.py | 3 +++ tests/test_rds/test_rds_clusters.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 4e4f48af6aa8..f297bd39a6e8 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -3242,6 +3242,7 @@ def test_copy_snapshot_cross_region(): @mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") def test_share_db_snapshot_cross_account(): rds = boto3.client("rds", region_name=DEFAULT_REGION) rds.create_db_instance( @@ -3279,6 +3280,7 @@ def test_share_db_snapshot_cross_account(): @mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") def test_share_db_cluster_snapshot_cross_account(): rds = boto3.client("rds", region_name=DEFAULT_REGION) rds.create_db_cluster( @@ -3317,6 +3319,7 @@ def test_share_db_cluster_snapshot_cross_account(): @mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") def test_copy_db_snapshot_fails_when_limit_exceeded(client, monkeypatch): instance = create_db_instance() client.create_db_snapshot( diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 27b92467ad47..75a4fd3b71a4 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -4,7 +4,7 @@ import pytest from botocore.exceptions import ClientError -from moto import mock_aws +from moto import mock_aws, settings from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID from . import DEFAULT_REGION @@ -1499,6 +1499,7 @@ def test_copy_db_cluster_snapshot_fails_for_existing_target_snapshot(client): @mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") def test_copy_db_cluster_snapshot_fails_when_limit_exceeded(client, monkeypatch): create_db_cluster( DBClusterIdentifier="cluster-1", From 8edd788b3cd91972675c2f7b9a68f94cdd00f8a1 Mon Sep 17 00:00:00 2001 From: Christian Nuss Date: Sat, 15 Feb 2025 07:35:10 -0500 Subject: [PATCH 050/103] [codespaces] Launch Configurations (#8412) --- .devcontainer/devcontainer.json | 120 +++++++++++++++++++++++++++++--- 1 file changed, 112 insertions(+), 8 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index cd69f6351401..8a77afccfe33 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,22 +1,126 @@ { "name": "moto", - "image": "mcr.microsoft.com/devcontainers/python:0-3.11", - "remoteUser": "root", + "image": "mcr.microsoft.com/devcontainers/python:3.11", "features": { - "ghcr.io/devcontainers/features/docker-in-docker:2": {} + "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + "ghcr.io/devcontainers/features/github-cli:1": {} }, + "portsAttributes": { + "5000": { + "onAutoForward": "silent", + "elevateIfNeeded": true, + "protocol": "http", + "requireLocalPort": false + } + }, + "postCreateCommand": "python -m venv .venv", + "postStartCommand": ". .venv/bin/activate && make init", "customizations": { "vscode": { - "extensions": ["ms-vscode.makefile-tools", "ms-python.python", "ms-python.black-formatter"], + "extensions": [ + "ms-vscode.makefile-tools", + "ms-python.python", + "ms-python.black-formatter" + ], "settings": { + "editor.formatOnSave": true, "python.defaultInterpreterPath": "${workspaceFolder}/.venv", "python.formatting.provider": "none", "[python]": { "editor.defaultFormatter": "ms-python.black-formatter" + }, + "tasks": { + "version": "2.0.0", + "tasks": [ + { + "label": "Open Port 5000", + "type": "shell", + "command": "bash", + "args": [ + "-c", + "until gh codespace ports visibility 5000:public --codespace ${CODESPACE_NAME} 2>/dev/null; do sleep 1; done" + ], + "presentation": { + "reveal": "silent", + "focus": false + } + }, + { + "label": "Kill MotoServer", + "type": "shell", + "command": "pkill -f '${workspaceFolder}/moto/server.py'", + "problemMatcher": [], + "presentation": { + "reveal": "silent", + "focus": false + } + } + ] + }, + "launch": { + "version": "0.2.0", + "configurations": [ + { + "name": "Run MotoServer", + "type": "debugpy", + "request": "launch", + "program": "${workspaceFolder}/moto/server.py", + "args": [ + "--reload" + ], + "console": "internalConsole", + "presentation": { + "order": 11 + } + }, + { + "name": "Run MotoServer Tests", + "type": "debugpy", + "request": "launch", + "module": "pytest", + "console": "integratedTerminal", + "preLaunchTask": "Open Port 5000", + "postDebugTask": "Kill MotoServer", + "env": { + "TEST_SERVER_MODE": "true", + "TEST_SERVER_MODE_ENDPOINT": "https://${env:CODESPACE_NAME}-5000.${env:GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN}" + }, + "presentation": { + "order": 12 + }, + "args": [ + "-sv", + "--cov=moto", + "--cov-report=xml", + "${workspaceFolder}/tests/", + "-k", + "${input:pytestFilter}" + ] + } + ], + "inputs": [ + { + "id": "pytestFilter", + "type": "promptString", + "description": "pytest -k filter (leave empty to run all tests)", + "default": "" + } + ], + "compounds": [ + { + "name": "MotoServer Tests", + "configurations": [ + "Run MotoServer Tests", + "Run MotoServer" + ], + "presentation": { + "order": 1 + }, + "stopAll": true + } + ] } } } - }, - "postCreateCommand": "python -m venv .venv", - "postStartCommand": ". .venv/bin/activate && make init" -} + } +} \ No newline at end of file From 5d24bcc1ba35129c613021aff5ace0d1544dd63d Mon Sep 17 00:00:00 2001 From: Jonathan Lim Date: Sat, 15 Feb 2025 07:59:40 -0500 Subject: [PATCH 051/103] [Timestream-influxdb] Initial support (#8587) --- moto/backend_index.py | 4 + moto/backends.py | 6 + moto/timestreaminfluxdb/__init__.py | 1 + moto/timestreaminfluxdb/exceptions.py | 28 ++ moto/timestreaminfluxdb/models.py | 286 ++++++++++++++++++ moto/timestreaminfluxdb/responses.py | 105 +++++++ moto/timestreaminfluxdb/urls.py | 11 + moto/timestreaminfluxdb/utils.py | 34 +++ tests/test_timestreaminfluxdb/__init__.py | 0 .../test_timestreaminfluxdb.py | 280 +++++++++++++++++ .../test_timestreaminfluxdb_tagging.py | 69 +++++ 11 files changed, 824 insertions(+) create mode 100644 moto/timestreaminfluxdb/__init__.py create mode 100644 moto/timestreaminfluxdb/exceptions.py create mode 100644 moto/timestreaminfluxdb/models.py create mode 100644 moto/timestreaminfluxdb/responses.py create mode 100644 moto/timestreaminfluxdb/urls.py create mode 100644 moto/timestreaminfluxdb/utils.py create mode 100644 tests/test_timestreaminfluxdb/__init__.py create mode 100644 tests/test_timestreaminfluxdb/test_timestreaminfluxdb.py create mode 100644 tests/test_timestreaminfluxdb/test_timestreaminfluxdb_tagging.py diff --git a/moto/backend_index.py b/moto/backend_index.py index 2135505927e2..e0d9e277fab3 100644 --- a/moto/backend_index.py +++ b/moto/backend_index.py @@ -205,6 +205,10 @@ ("support", re.compile("https?://support\\.(.+)\\.amazonaws\\.com")), ("swf", re.compile("https?://swf\\.(.+)\\.amazonaws\\.com")), ("textract", re.compile("https?://textract\\.(.+)\\.amazonaws\\.com")), + ( + "timestreaminfluxdb", + re.compile("https?://timestream-influxdb\\.(.+)\\.amazonaws\\.com"), + ), ( "timestreamquery", re.compile("https?://query\\.timestream\\.(.+)\\.amazonaws\\.com"), diff --git a/moto/backends.py b/moto/backends.py index aa0fe4c1b2f1..0d918c6ed4c7 100644 --- a/moto/backends.py +++ b/moto/backends.py @@ -146,6 +146,7 @@ from moto.support.models import SupportBackend from moto.swf.models import SWFBackend from moto.textract.models import TextractBackend + from moto.timestreaminfluxdb.models import TimestreamInfluxDBBackend from moto.timestreamquery.models import TimestreamQueryBackend from moto.timestreamwrite.models import TimestreamWriteBackend from moto.transcribe.models import TranscribeBackend @@ -330,6 +331,7 @@ def get_service_from_url(url: str) -> Optional[str]: "Literal['support']", "Literal['swf']", "Literal['textract']", + "Literal['timestream-influxdb']", "Literal['timestream-query']", "Literal['timestream-write']", "Literal['transcribe']", @@ -734,6 +736,10 @@ def get_backend(name: "Literal['swf']") -> "BackendDict[SWFBackend]": ... @overload def get_backend(name: "Literal['textract']") -> "BackendDict[TextractBackend]": ... @overload +def get_backend( + name: "Literal['timestream-influxdb']", +) -> "BackendDict[TimestreamInfluxDBBackend]": ... +@overload def get_backend( name: "Literal['timestream-query']", ) -> "BackendDict[TimestreamQueryBackend]": ... diff --git a/moto/timestreaminfluxdb/__init__.py b/moto/timestreaminfluxdb/__init__.py new file mode 100644 index 000000000000..e051c6f8d716 --- /dev/null +++ b/moto/timestreaminfluxdb/__init__.py @@ -0,0 +1 @@ +from .models import timestreaminfluxdb_backends # noqa: F401 diff --git a/moto/timestreaminfluxdb/exceptions.py b/moto/timestreaminfluxdb/exceptions.py new file mode 100644 index 000000000000..4208034cbade --- /dev/null +++ b/moto/timestreaminfluxdb/exceptions.py @@ -0,0 +1,28 @@ +"""Exceptions raised by the timestreaminfluxdb service.""" + +from moto.core.exceptions import JsonRESTError + + +class TimestreamInfluxDBException(JsonRESTError): + pass + + +class ValidationException(TimestreamInfluxDBException): + code = 400 + + def __init__(self, message: str): + super().__init__("ValidationException", message) + + +class ConflictException(TimestreamInfluxDBException): + code = 400 + + def __init__(self, message: str): + super().__init__("ConflictException", message) + + +class ResourceNotFoundException(TimestreamInfluxDBException): + code = 400 + + def __init__(self, message: str): + super().__init__("ResourceNotFoundException", message) diff --git a/moto/timestreaminfluxdb/models.py b/moto/timestreaminfluxdb/models.py new file mode 100644 index 000000000000..ce92e2a29a7c --- /dev/null +++ b/moto/timestreaminfluxdb/models.py @@ -0,0 +1,286 @@ +"""TimestreamInfluxDBBackend class with methods for supported APIs.""" + +from enum import Enum +from typing import Any, Dict, List, Optional + +from moto.core.base_backend import BackendDict, BaseBackend +from moto.core.common_models import BaseModel +from moto.utilities.tagging_service import TaggingService + +from .exceptions import ( + ConflictException, + ResourceNotFoundException, + ValidationException, +) +from .utils import random_id, validate_name + + +class InstanceStatus(str, Enum): + CREATING = "CREATING" + AVAILABLE = "AVAILABLE" + DELETING = "DELETING" + MODIFYING = "MODIFYING" + UPDATING = "UPDATING" + DELETED = "DELETED" + FAILED = "FAILED" + UPDATING_DEPLOYMENT_TYPE = "UPDATING_DEPLOYMENT_TYPE" + UPDATING_INSTANCE_TYPE = "UPDATING_INSTANCE_TYPE" + + +class NetworkType(str, Enum): + IPV4 = "IPV4" + DUAL = "DUAL" + + +class InstanceType(str, Enum): + DB_INFLUX_MEDIUM = "db.influx.medium" + DB_INFLUX_LARGE = "db.influx.large" + DB_INFLUX_XLARGE = "db.influx.xlarge" + DB_INFLUX_2XLARGE = "db.influx.2xlarge" + DB_INFLUX_4XLARGE = "db.influx.4xlarge" + DB_INFLUX_8XLARGE = "db.influx.8xlarge" + DB_INFLUX_12XLARGE = "db.influx.12xlarge" + DB_INFLUX_16XLARGE = "db.influx.16xlarge" + + +class DBStorageType(str, Enum): + InfluxIOIncludedT1 = "InfluxIOIncludedT1" + InfluxIOIncludedT2 = "InfluxIOIncludedT2" + InfluxIOIncludedT3 = "InfluxIOIncludedT3" + + +class DeploymentType(str, Enum): + SINGLE_AZ = "SINGLE_AZ" + WITH_MULTIAZ_STANDBY = "WITH_MULTIAZ_STANDBY" + + +class DBInstance(BaseModel): + def __init__( + self, + name: str, + username: Optional[str], + password: str, + organization: str, + bucket: str, + dbInstanceType: str, + vpcSubnetIds: List[str], + vpcSecurityGroupIds: List[str], + publiclyAccessible: bool, + dbStorageType: str, + allocatedStorage: int, + dbParameterGroupIdentifier: Optional[str], + deploymentType: str, + logDeliveryConfiguration: Optional[Dict[str, Any]], + tags: Optional[Dict[str, Any]], + port: int, + networkType: str, + region_name: str, + account_id: str, + endpoint_id: str, + ): + # Generate a random id of size 10 + self.id = random_id() + + self.name = name + self.username = username + self.password = password + self.organization = organization + self.bucket = bucket + self.db_instance_type = dbInstanceType + self.vpc_subnet_ids = vpcSubnetIds + self.vpc_security_group_ids = vpcSecurityGroupIds + self.publicly_accessible = publiclyAccessible + self.db_storage_type = dbStorageType + self.allocated_storage = allocatedStorage + self.db_parameter_group_id = dbParameterGroupIdentifier + self.deployment_type = deploymentType + self.log_delivery_configuration = logDeliveryConfiguration + self.port = port + self.network_type = networkType + self.status = InstanceStatus.CREATING + self.arn = f"arn:aws:timestream-influxdb:{region_name}:{account_id}:db-instance/{self.id}" + self.endpoint = ( + f"{self.id}-{endpoint_id}.timestream-influxdb.{region_name}.on.aws" + ) + # Before 12/09/2024, there was a different endpoint format. + self.endpoint_old = ( + f"{self.name}-{endpoint_id}.timestream-influxdb.{region_name}.on.aws" + ) + + self.availability_zone = "" # TODO implement this + self.secondary_availability_zone = "" # TODO implement this + + def to_dict(self) -> Dict[str, Any]: + return { + "id": self.id, + "name": self.name, + "arn": self.arn, + "status": self.status, + "endpoint": self.endpoint, + "port": self.port, + "networkType": self.network_type, + "dbInstanceType": self.db_instance_type, + "dbStorageType": self.db_storage_type, + "allocatedStorage": self.allocated_storage, + "deploymentType": self.deployment_type, + "vpcSubnetIds": self.vpc_subnet_ids, + "publiclyAccessible": self.publicly_accessible, + "vpcSecurityGroupIds": self.vpc_security_group_ids, + "dbParameterGroupIdentifier": self.db_parameter_group_id, # TODO implement this + "availabilityZone": self.availability_zone, # TODO implement this + "secondaryAvailabilityZone": self.secondary_availability_zone, # TODO implement this + "logDeliveryConfiguration": self.log_delivery_configuration, # TODO implement this + "influxAuthParametersSecretArn": "", # TODO implement this + } + + +class TimestreamInfluxDBBackend(BaseBackend): + """Implementation of TimestreamInfluxDB APIs.""" + + def __init__(self, region_name: str, account_id: str): + super().__init__(region_name, account_id) + + # the endpoint identifier is unique per account and per region + # https://docs.aws.amazon.com/timestream/latest/developerguide/timestream-for-influxdb.html + self.endpoint_id: str = random_id(10) + self.db_instances: Dict[str, DBInstance] = {} + self.tagger = TaggingService() + + def create_db_instance( + self, + name: str, + username: Optional[str], # required if using InfluxDB UI though + password: str, + organization: str, + bucket: str, + db_instance_type: str, + vpc_subnet_ids: List[str], + vpc_security_group_ids: List[str], + db_storage_type: str, + publicly_accessible: bool, + allocated_storage: int, + db_parameter_group_identifier: str, + deployment_type: str, + log_delivery_configuration: Optional[Dict[str, Any]], + tags: Optional[Dict[str, str]], + port: int, + network_type: str, + ) -> DBInstance: + """ + dbParameterGroupIdentifier argument is not yet handled + deploymentType currently is auto set to 'SINGLE_AZ' if not passed in. + publicAccessible is not yet handled + logDeliveryConfiguration is not yet handled + AvailabilityZone and SecondaryAvailabilityZone are not yet handled + influxAuthParametersSecretArn is not yet handled + """ + + # Checks: + for db_instance in self.db_instances.values(): + if db_instance.name == name: + raise ConflictException( + f"A DB Instance with the name {name} already exists" + ) + + validate_name(name) + + if db_storage_type not in [t.value for t in DBStorageType]: + raise ValidationException(f"Unknown DB storage type {db_storage_type}") + + if db_instance_type not in [t.value for t in InstanceType]: + raise ValidationException(f"Unknown DB instance type {db_instance_type}") + + new_instance = DBInstance( + name, + username, + password, + organization, + bucket, + db_instance_type, + vpc_subnet_ids, + vpc_security_group_ids, + publicly_accessible, + db_storage_type, + allocated_storage, + db_parameter_group_identifier, + deployment_type, + log_delivery_configuration, + tags, + port, + network_type, + self.region_name, + self.account_id, + self.endpoint_id, + ) + + # add to the list + self.db_instances[new_instance.id] = new_instance + + # add tags + if tags: + self.tag_resource(new_instance.arn, tags) + + return new_instance + + def delete_db_instance(self, id: str) -> DBInstance: + if id not in self.db_instances: + raise ResourceNotFoundException(f"DB Instance with id {id} not found") + + # mark as deleting + self.db_instances[id].status = InstanceStatus.DELETING + return self.db_instances.pop(id) + + def get_db_instance(self, id: str) -> DBInstance: + if id not in self.db_instances: + raise ResourceNotFoundException(f"DB Instance with id {id} not found") + + return self.db_instances[id] + + def list_db_instances(self) -> List[Dict[str, Any]]: + """ + Pagination is not yet implemented + """ + return [ + { + "allocatedStorage": instance.allocated_storage, + "arn": instance.arn, + "dbInstanceType": instance.db_instance_type, + "dbStorageType": instance.db_storage_type, + "deploymentType": instance.deployment_type, + "endpoint": instance.endpoint, + "id": instance.id, + "name": instance.name, + "networkType": instance.network_type, + "port": instance.port, + "status": instance.status, + } + for instance in self.db_instances.values() + ] + + def tag_resource(self, resource_arn: str, tags: Dict[str, str]) -> None: + tag_list = self.tagger.convert_dict_to_tags_input(tags) + errmsg = self.tagger.validate_tags(tag_list) + if errmsg: + raise ValidationException(errmsg) + self.tagger.tag_resource(resource_arn, tag_list) + + def untag_resource(self, resource_arn: str, tag_keys: List[str]) -> None: + self.tagger.untag_resource_using_names(resource_arn, tag_keys) + + def list_tags_for_resource(self, resource_arn: str) -> Dict[str, str]: + return self.tagger.get_tag_dict_for_resource(resource_arn) + + +timestreaminfluxdb_backends = BackendDict( + TimestreamInfluxDBBackend, + "timestream-influxdb", + additional_regions=[ + "us-east-1", + "us-east-2", + "us-west-2", + "eu-central-1", + "eu-west-1", + "ap-southeast-2", + "ap-northeast-1", + ], +) diff --git a/moto/timestreaminfluxdb/responses.py b/moto/timestreaminfluxdb/responses.py new file mode 100644 index 000000000000..b6b9dece9dd0 --- /dev/null +++ b/moto/timestreaminfluxdb/responses.py @@ -0,0 +1,105 @@ +import json + +from moto.core.responses import BaseResponse + +from .models import ( + DBStorageType, + DeploymentType, + NetworkType, + TimestreamInfluxDBBackend, + timestreaminfluxdb_backends, +) + + +class TimestreamInfluxDBResponse(BaseResponse): + """Handler for TimestreamInfluxDB requests and responses.""" + + def __init__(self) -> None: + super().__init__(service_name="timestream-influxdb") + + @property + def timestreaminfluxdb_backend(self) -> TimestreamInfluxDBBackend: + return timestreaminfluxdb_backends[self.current_account][self.region] + + def create_db_instance(self) -> str: + params = json.loads(self.body) + name = params.get("name") + username = params.get("username") + password = params.get("password") + organization = params.get("organization") + bucket = params.get("bucket") + db_instance_type = params.get("dbInstanceType") + vpc_subnet_ids = params.get("vpcSubnetIds") + vpc_security_group_ids = params.get("vpcSecurityGroupIds") + publicly_accessible = params.get("publiclyAccessible", False) + db_storage_type = params.get("dbStorageType", DBStorageType.InfluxIOIncludedT1) + allocated_storage = params.get("allocatedStorage") + db_parameter_group_identifier = params.get("dbParameterGroupIdentifier") + deployment_type = params.get("deploymentType", DeploymentType.SINGLE_AZ) + log_delivery_configuration = params.get("logDeliveryConfiguration", {}) + tags = params.get("tags", {}) + port = int(params.get("port", 8086)) + network_type = params.get("networkType", NetworkType.IPV4) + + created_instance = self.timestreaminfluxdb_backend.create_db_instance( + name=name, + username=username, + password=password, + organization=organization, + bucket=bucket, + db_instance_type=db_instance_type, + vpc_subnet_ids=vpc_subnet_ids, + vpc_security_group_ids=vpc_security_group_ids, + publicly_accessible=publicly_accessible, + db_storage_type=db_storage_type, + allocated_storage=allocated_storage, + db_parameter_group_identifier=db_parameter_group_identifier, + deployment_type=deployment_type, + log_delivery_configuration=log_delivery_configuration, + tags=tags, + port=port, + network_type=network_type, + ) + return json.dumps(created_instance.to_dict()) + + def delete_db_instance(self) -> str: + params = json.loads(self.body) + id = params.get("identifier") + deleted_instance = self.timestreaminfluxdb_backend.delete_db_instance(id=id) + return json.dumps(deleted_instance.to_dict()) + + def get_db_instance(self) -> str: + params = json.loads(self.body) + id = params.get("identifier") + instance = self.timestreaminfluxdb_backend.get_db_instance(id=id) + return json.dumps(instance.to_dict()) + + def list_db_instances(self) -> str: + """ + Pagination is not yet implemented + """ + instances = self.timestreaminfluxdb_backend.list_db_instances() + + return json.dumps({"items": instances}) + + def tag_resource(self) -> str: + params = json.loads(self.body) + arn = params.get("resourceArn") + tags = params.get("tags") + self.timestreaminfluxdb_backend.tag_resource(resource_arn=arn, tags=tags) + return "{}" + + def untag_resource(self) -> str: + params = json.loads(self.body) + arn = params.get("resourceArn") + tag_keys = params.get("tagKeys") + self.timestreaminfluxdb_backend.untag_resource( + resource_arn=arn, tag_keys=tag_keys + ) + return "{}" + + def list_tags_for_resource(self) -> str: + params = json.loads(self.body) + arn = params.get("resourceArn") + tags = self.timestreaminfluxdb_backend.list_tags_for_resource(resource_arn=arn) + return json.dumps({"tags": tags}) diff --git a/moto/timestreaminfluxdb/urls.py b/moto/timestreaminfluxdb/urls.py new file mode 100644 index 000000000000..ea9c57eaf9f3 --- /dev/null +++ b/moto/timestreaminfluxdb/urls.py @@ -0,0 +1,11 @@ +"""timestreaminfluxdb base URL and path.""" + +from .responses import TimestreamInfluxDBResponse + +url_bases = [ + r"https?://timestream-influxdb\.(.+)\.amazonaws\.com", +] + +url_paths = { + "{0}/$": TimestreamInfluxDBResponse.dispatch, +} diff --git a/moto/timestreaminfluxdb/utils.py b/moto/timestreaminfluxdb/utils.py new file mode 100644 index 000000000000..1aa3390e4725 --- /dev/null +++ b/moto/timestreaminfluxdb/utils.py @@ -0,0 +1,34 @@ +import random +import re +import string + +from .exceptions import ValidationException + + +def random_id(size: int = 10) -> str: + chars = list(range(10)) + list(string.ascii_lowercase) + return "".join(str(random.choice(chars)) for x in range(size)) + + +def validate_name(name: str) -> None: + """ + The name that uniquely identifies the DB instance when interacting with the Amazon Timestream for InfluxDB API and CLI commands. + This name will also be a prefix included in the endpoint. + DB instance names must be unique per customer and per region. + Length Constraints: Minimum length of 3. Maximum length of 40. + Pattern: ^[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$ + + """ + + if len(name) < 3: + raise ValidationException( + f"Expected name to have a minimum length of 3, got {len(name)}" + ) + elif len(name) > 40: + raise ValidationException( + f"Expected name to have a maximum length of 40, got {len(name)}" + ) + elif not re.match(r"^[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$", name): + raise ValidationException( + f"Expected name to match the pattern ^[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$, got {name}" + ) diff --git a/tests/test_timestreaminfluxdb/__init__.py b/tests/test_timestreaminfluxdb/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/tests/test_timestreaminfluxdb/test_timestreaminfluxdb.py b/tests/test_timestreaminfluxdb/test_timestreaminfluxdb.py new file mode 100644 index 000000000000..8721ba2b7503 --- /dev/null +++ b/tests/test_timestreaminfluxdb/test_timestreaminfluxdb.py @@ -0,0 +1,280 @@ +"""Unit tests for timestreaminfluxdb-supported APIs.""" + +import boto3 +import pytest +from botocore.exceptions import ClientError + +from moto import mock_aws + +# See our Development Tips on writing tests for hints on how to write good tests: +# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html + + +"""Unit tests for timestreaminfluxdb-supported APIs.""" + + +@mock_aws +def test_create_db_instance_success(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + response = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + assert response["allocatedStorage"] == 123 + assert response["dbInstanceType"] == "db.influx.medium" + assert response["name"] == "test-instance" + assert response["vpcSecurityGroupIds"] == ["sg-0123456789abcdef0"] + assert response["vpcSubnetIds"] == ["subnet-0123456789abcdef0"] + + assert "arn" in response + assert "availabilityZone" in response + assert "dbStorageType" in response + assert "deploymentType" in response + assert "endpoint" in response + assert "id" in response + assert "influxAuthParametersSecretArn" in response + assert "networkType" in response + assert "port" in response + assert "publiclyAccessible" in response + assert "secondaryAvailabilityZone" in response + assert "status" in response + assert "logDeliveryConfiguration" in response + + +@mock_aws +def test_create_db_instance_duplicate_identifier(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + with pytest.raises(ClientError) as exc: + client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + assert exc.value.response["Error"]["Code"] == "ConflictException" + + +@mock_aws +def test_create_db_instance_name_invalid(): + invalid_names = [ + "1muststartwithletter", + "cantendwithhyphen_", + "nodoublehyphen--", + "no", + "longlonglonglonglonglonglonglonglonglongname", + ] + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + for invalid_name in invalid_names: + with pytest.raises(ClientError) as exc: + client.create_db_instance( + name="invalid_name", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + assert exc.value.response["Error"]["Code"] == "ValidationException" + + +@mock_aws +def test_create_db_instance_invalid_storage_type(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + with pytest.raises(ClientError) as exc: + client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + dbStorageType="invalid", + ) + + assert exc.value.response["Error"]["Code"] == "ValidationException" + + +@mock_aws +def test_create_db_instance_invalid_instance_type(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + with pytest.raises(ClientError) as exc: + client.create_db_instance( + name="test-instance", + password="password123", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + dbInstanceType="invalid", + ) + + assert exc.value.response["Error"]["Code"] == "ValidationException" + + +@mock_aws +def test_delete_db_instance(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + response = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + id = response["id"] + + response = client.delete_db_instance(identifier=id) + assert response["allocatedStorage"] == 123 + assert response["dbInstanceType"] == "db.influx.medium" + assert response["name"] == "test-instance" + assert response["vpcSecurityGroupIds"] == ["sg-0123456789abcdef0"] + assert response["vpcSubnetIds"] == ["subnet-0123456789abcdef0"] + + assert "arn" in response + assert "availabilityZone" in response + assert "dbStorageType" in response + assert "deploymentType" in response + assert "endpoint" in response + assert "id" in response + assert "influxAuthParametersSecretArn" in response + assert "networkType" in response + assert "port" in response + assert "publiclyAccessible" in response + assert "secondaryAvailabilityZone" in response + assert "logDeliveryConfiguration" in response + + assert response["status"] == "DELETING" + + +@mock_aws +def test_delete_db_instance_invalid_name(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + id = "-100000" + with pytest.raises(ClientError) as exc: + client.delete_db_instance(identifier=id) + + assert exc.value.response["Error"]["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_get_db_instance(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + created_instance = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + id = created_instance["id"] + response = client.get_db_instance(identifier=id) + assert response["allocatedStorage"] == 123 + assert response["dbInstanceType"] == "db.influx.medium" + assert response["name"] == "test-instance" + assert response["vpcSecurityGroupIds"] == ["sg-0123456789abcdef0"] + assert response["vpcSubnetIds"] == ["subnet-0123456789abcdef0"] + + assert "arn" in response + assert "availabilityZone" in response + assert "dbStorageType" in response + assert "deploymentType" in response + assert "endpoint" in response + assert "id" in response + assert "influxAuthParametersSecretArn" in response + assert "networkType" in response + assert "port" in response + assert "publiclyAccessible" in response + assert "secondaryAvailabilityZone" in response + assert "logDeliveryConfiguration" in response + assert "status" in response + + +@mock_aws +def test_get_db_instance_invalid(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + id = "-100000" + with pytest.raises(ClientError) as exc: + client.get_db_instance(identifier=id) + + assert exc.value.response["Error"]["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_list_db_instances_empty(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + response = client.list_db_instances() + assert len(response["items"]) == 0 + + +@mock_aws +def test_list_db_instances(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + client.create_db_instance( + name="test-instance1", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + client.create_db_instance( + name="test-instance2", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + ) + + response = client.list_db_instances() + resources = response["items"] + assert len(resources) == 2 + + for resource in resources: + assert "allocatedStorage" in resource + assert "arn" in resource + assert "dbInstanceType" in resource + assert "dbStorageType" in resource + assert "deploymentType" in resource + assert "endpoint" in resource + assert "id" in resource + assert "name" in resource + assert "networkType" in resource + assert "port" in resource + assert "status" in resource + + # delete one and confirm only one left + client.delete_db_instance(identifier=resources[0]["id"]) + + response = client.list_db_instances() + resources = response["items"] + assert len(resources) == 1 diff --git a/tests/test_timestreaminfluxdb/test_timestreaminfluxdb_tagging.py b/tests/test_timestreaminfluxdb/test_timestreaminfluxdb_tagging.py new file mode 100644 index 000000000000..823f3dcb5340 --- /dev/null +++ b/tests/test_timestreaminfluxdb/test_timestreaminfluxdb_tagging.py @@ -0,0 +1,69 @@ +import boto3 + +from moto import mock_aws + + +@mock_aws +def test_list_tags_for_db_instance(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + response = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + tags={"key1": "value1", "key2": "value2"}, + ) + + arn = response["arn"] + response = client.list_tags_for_resource(resourceArn=arn) + assert response["tags"] == {"key1": "value1", "key2": "value2"} + + +@mock_aws +def test_tag_resources(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + response = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + tags={"key1": "value1", "key2": "value2"}, + ) + + arn = response["arn"] + + # add a tag + additional_tags = {"key3": "value3"} + response = client.tag_resource(resourceArn=arn, tags=additional_tags) + + response = client.list_tags_for_resource(resourceArn=arn) + assert response["tags"] == {"key1": "value1", "key2": "value2", "key3": "value3"} + + +@mock_aws +def test_untag_resources(): + client = boto3.client("timestream-influxdb", region_name="us-east-1") + + response = client.create_db_instance( + name="test-instance", + password="password123", + dbInstanceType="db.influx.medium", + vpcSubnetIds=["subnet-0123456789abcdef0"], + vpcSecurityGroupIds=["sg-0123456789abcdef0"], + allocatedStorage=123, + tags={"key1": "value1", "key2": "value2"}, + ) + + arn = response["arn"] + + # remove tags + response = client.untag_resource(resourceArn=arn, tagKeys=["key1"]) + + response = client.list_tags_for_resource(resourceArn=arn) + assert response["tags"] == {"key2": "value2"} From dd634d8bc3fef9f3210a644b26c6efb661f29edc Mon Sep 17 00:00:00 2001 From: rafcio19 Date: Sat, 15 Feb 2025 14:10:57 +0100 Subject: [PATCH 052/103] ECS: tasks include containers objects (#8588) --- moto/ecs/models.py | 26 +++++++++++++++++++++++++- tests/test_ecs/test_ecs_boto3.py | 27 +++++++++++++++++---------- 2 files changed, 42 insertions(+), 11 deletions(-) diff --git a/moto/ecs/models.py b/moto/ecs/models.py index bcb8c5fbe559..15fa3b03a0b0 100644 --- a/moto/ecs/models.py +++ b/moto/ecs/models.py @@ -386,7 +386,7 @@ def __init__( self.desired_status = "RUNNING" self.task_definition_arn = task_definition.arn self.overrides = overrides or {} - self.containers: List[Dict[str, Any]] = [] + self.containers = [Container(task_definition)] self.started_by = started_by self.tags = tags or [] self.launch_type = launch_type @@ -451,6 +451,7 @@ def response_object(self, include_tags: bool = True) -> Dict[str, Any]: # type: response_object.pop("tags", None) response_object["taskArn"] = self.task_arn response_object["lastStatus"] = self.last_status + response_object["containers"] = [self.containers[0].response_object] return response_object @@ -757,6 +758,29 @@ def get_cfn_attribute(self, attribute_name: str) -> str: raise UnformattedGetAttTemplateException() +class Container(BaseObject, CloudFormationModel): + def __init__( + self, + task_def: TaskDefinition, + ): + self.container_arn = f"{task_def.arn}/{str(mock_random.uuid4())}" + self.task_arn = task_def.arn + + container_def = task_def.container_definitions[0] + self.image = container_def.get("image") + self.last_status = "PENDING" + self.exitCode = 0 + + self.network_interfaces: List[Dict[str, Any]] = [] + self.health_status = "HEALTHY" + + self.cpu = container_def.get("cpu") + self.memory = container_def.get("memory") + self.environment = container_def.get("environment") + self.name = container_def.get("name") + self.command = container_def.get("command") + + class ContainerInstance(BaseObject): def __init__( self, diff --git a/tests/test_ecs/test_ecs_boto3.py b/tests/test_ecs/test_ecs_boto3.py index 465178f1bf67..f0f1e988d079 100644 --- a/tests/test_ecs/test_ecs_boto3.py +++ b/tests/test_ecs/test_ecs_boto3.py @@ -1854,31 +1854,27 @@ def test_update_container_instances_state_by_arn(): @mock_aws def test_run_task(): + # Setup + test_cluster_name = "test_ecs_cluster" + image = "docker/hello-world:latest" client = boto3.client("ecs", region_name=ECS_REGION) ec2 = boto3.resource("ec2", region_name=ECS_REGION) - - test_cluster_name = "test_ecs_cluster" - client.create_cluster(clusterName=test_cluster_name) - test_instance = ec2.create_instances( ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1 )[0] - instance_id_document = json.dumps( ec2_utils.generate_instance_identity_document(test_instance) ) - - response = client.register_container_instance( + client.register_container_instance( cluster=test_cluster_name, instanceIdentityDocument=instance_id_document ) - - client.register_task_definition( + td = client.register_task_definition( family="test_ecs_task", containerDefinitions=[ { "name": "hello_world", - "image": "docker/hello-world:latest", + "image": image, "cpu": 1024, "memory": 400, "essential": True, @@ -1889,12 +1885,16 @@ def test_run_task(): } ], ) + + # Execute response = client.run_task( cluster="test_ecs_cluster", overrides={}, taskDefinition="test_ecs_task", startedBy="moto", ) + + # Verify assert len(response["tasks"]) == 1 response = client.run_task( cluster="test_ecs_cluster", @@ -1928,6 +1928,13 @@ def test_run_task(): assert task["startedBy"] == "moto" assert task["stoppedReason"] == "" assert task["tags"][0].get("value") == "tagValue0" + assert len(task["containers"]) == 1 + + con = task["containers"][0] + assert td["taskDefinition"]["taskDefinitionArn"] in con["containerArn"] + assert con["taskArn"] == td["taskDefinition"]["taskDefinitionArn"] + assert con["lastStatus"] == "PENDING" + assert con["image"] == image @mock_aws From 9f9d00fad7f0385dfd8c8e7d1ab32d28542e5bd9 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 14:13:08 -0800 Subject: [PATCH 053/103] RDS: Standardize `resource_id` across all RDS models Following the ARN format: arn:partition:service:region:account-id:resource-type:resource-id --- moto/rds/models.py | 72 ++++++++++++++++++++----------------------- moto/rds/responses.py | 4 +-- 2 files changed, 36 insertions(+), 40 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 91798ff53fe8..bd8f8d49761e 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -164,8 +164,8 @@ def __init__(self, backend: RDSBackend, **kwargs: Any) -> None: self.created = iso_8601_datetime_with_milliseconds() @property - def name(self) -> str: - raise NotImplementedError("Subclasses must implement name property.") + def resource_id(self) -> str: + raise NotImplementedError("Subclasses must implement resource_id property.") @property def region(self) -> str: @@ -181,7 +181,7 @@ def partition(self) -> str: @property def arn(self) -> str: - return f"arn:{self.partition}:rds:{self.region}:{self.account_id}:{self.resource_type}:{self.name}" + return f"arn:{self.partition}:rds:{self.region}:{self.account_id}:{self.resource_type}:{self.resource_id}" class DBProxyTarget(RDSBaseModel): @@ -245,7 +245,7 @@ def __init__( self.is_default = True @property - def name(self) -> str: + def resource_id(self) -> str: return self._name @property @@ -293,7 +293,7 @@ def __init__( self.status = "available" @property - def name(self) -> str: + def resource_id(self) -> str: return self.global_cluster_identifier @property @@ -450,7 +450,7 @@ def __init__( self.hosted_zone_id = "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(14) ) - self.resource_id = "cluster-" + "".join( + self.db_cluster_resource_id = "cluster-" + "".join( random.choice(string.ascii_uppercase + string.digits) for _ in range(26) ) self.tags = tags or [] @@ -515,7 +515,7 @@ def __init__( ) @property - def name(self) -> str: + def resource_id(self) -> str: return self.db_cluster_identifier @property @@ -529,10 +529,6 @@ def multi_az(self) -> bool: def db_cluster_arn(self) -> str: return self.arn - @property - def db_cluster_resource_id(self) -> str: - return self.resource_id - @property def latest_restorable_time(self) -> str: return iso_8601_datetime_with_milliseconds(utcnow()) @@ -595,11 +591,11 @@ def http_endpoint_enabled(self) -> bool: @property def master_user_secret(self) -> Optional[Dict[str, Any]]: # type: ignore[misc] secret_info = { - "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", + "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.resource_id}", "SecretStatus": self.master_user_secret_status, "KmsKeyId": self.master_user_secret_kms_key_id if self.master_user_secret_kms_key_id is not None - else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.name}", + else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.resource_id}", } return secret_info if self.manage_master_user_password else None @@ -785,7 +781,7 @@ def __init__( self.storage_encrypted = self.cluster.storage_encrypted @property - def name(self) -> str: + def resource_id(self) -> str: return self.db_cluster_snapshot_identifier @property @@ -992,7 +988,7 @@ def __init__( self.db_name = self.cluster.database_name @property - def name(self) -> str: + def resource_id(self) -> str: return self.db_instance_identifier @property @@ -1047,11 +1043,11 @@ def default_db_parameter_group_details(self) -> Tuple[str, str]: @property def master_user_secret(self) -> Dict[str, Any] | None: # type: ignore[misc] secret_info = { - "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.name}", + "SecretArn": f"arn:{self.partition}:secretsmanager:{self.region}:{self.account_id}:secret:rds!{self.resource_id}", "SecretStatus": self.master_user_secret_status, "KmsKeyId": self.master_user_secret_kms_key_id if self.master_user_secret_kms_key_id is not None - else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.name}", + else f"arn:{self.partition}:kms:{self.region}:{self.account_id}:key/{self.resource_id}", } return secret_info if self.manage_master_user_password else None @@ -1244,9 +1240,9 @@ def create_from_cloudformation_json( # type: ignore[misc] db_security_groups = properties.get("DBSecurityGroups") if not db_security_groups: db_security_groups = [] - security_groups = [group.group_name for group in db_security_groups] + security_groups = [group.name for group in db_security_groups] db_subnet_group = properties.get("DBSubnetGroupName") - db_subnet_group_name = db_subnet_group.subnet_name if db_subnet_group else None + db_subnet_group_name = db_subnet_group.name if db_subnet_group else None db_kwargs = { "auto_minor_version_upgrade": properties.get("AutoMinorVersionUpgrade"), "allocated_storage": properties.get("AllocatedStorage"), @@ -1361,7 +1357,7 @@ def __init__( self.port = database.port @property - def name(self) -> str: + def resource_id(self) -> str: return self.db_snapshot_identifier @property @@ -1414,7 +1410,7 @@ def __init__(self, backend: RDSBackend, subscription_name: str, **kwargs: Any): self.created_at = iso_8601_datetime_with_milliseconds() @property - def name(self) -> str: + def resource_id(self) -> str: return self.subscription_name @property @@ -1441,7 +1437,7 @@ def __init__( tags: List[Dict[str, str]], ): super().__init__(backend) - self.group_name = group_name + self.name = group_name self.description = description self.status = "authorized" self._ip_ranges: List[Any] = [] @@ -1450,8 +1446,8 @@ def __init__( self.vpc_id = None @property - def name(self) -> str: - return self.group_name + def resource_id(self) -> str: + return self.name @property def ec2_security_groups(self) -> List[Dict[str, str]]: @@ -1541,7 +1537,7 @@ def __init__( tags: List[Dict[str, str]], ): super().__init__(backend) - self.subnet_name = subnet_name + self.name = subnet_name self.description = description self._subnets = subnets self.status = "Complete" @@ -1549,8 +1545,8 @@ def __init__( self.vpc_id = self._subnets[0].vpc_id @property - def name(self) -> str: - return self.subnet_name + def resource_id(self) -> str: + return self.name @property def db_subnet_group_description(self) -> str: @@ -1689,7 +1685,7 @@ def __init__( self.unique_id = f"prx-{random.get_random_string(17, lower_case=True)}" @property - def name(self) -> str: + def resource_id(self) -> str: return self.unique_id @@ -2307,7 +2303,7 @@ def modify_db_subnet_group( subnet_group = self.subnet_groups.pop(subnet_name) if not subnet_group: raise DBSubnetGroupNotFoundError(subnet_name) - subnet_group.subnet_name = subnet_name + subnet_group.name = subnet_name subnet_group.subnets = subnets # type: ignore[assignment] if description is not None: subnet_group.description = description @@ -3302,15 +3298,15 @@ def __init__( self.engine_name = engine_name self.major_engine_version = major_engine_version self.description = option_group_description - self._name = option_group_name + self.name = option_group_name self.vpc_and_non_vpc_instance_memberships = False self._options: Dict[str, Any] = {} self.vpcId = "null" self.tags = tags or [] @property - def name(self) -> str: - return self._name + def resource_id(self) -> str: + return self.name @property def options(self) -> List[Dict[str, Any]]: # type: ignore[misc] @@ -3349,15 +3345,15 @@ def __init__( tags: Optional[List[Dict[str, str]]] = None, ): super().__init__(backend) - self._name = db_parameter_group_name + self.name = db_parameter_group_name self.description = description self.family = db_parameter_group_family self.tags = tags or [] self.parameters: Dict[str, Any] = defaultdict(dict) @property - def name(self) -> str: - return self._name + def resource_id(self) -> str: + return self.name def update_parameters(self, new_parameters: Iterable[Dict[str, Any]]) -> None: for new_parameter in new_parameters: @@ -3415,14 +3411,14 @@ class DBClusterParameterGroup(CloudFormationModel, RDSBaseModel): def __init__(self, backend: RDSBackend, name: str, description: str, family: str): super().__init__(backend) - self._name = name + self.name = name self.description = description self.db_parameter_group_family = family self.parameters: Dict[str, Any] = defaultdict(dict) @property - def name(self) -> str: - return self._name + def resource_id(self) -> str: + return self.name rds_backends = BackendDict(RDSBackend, "rds") diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 5e59a6169751..0d804d5ae8f5 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -788,7 +788,7 @@ def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: ) raise InvalidParameterValue(msg) all_resources = list(resources) - all_ids = [resource.name for resource in all_resources] + all_ids = [resource.resource_id for resource in all_resources] if marker: start = all_ids.index(marker) + 1 else: @@ -796,5 +796,5 @@ def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: paginated_resources = all_resources[start : start + page_size] next_marker = None if len(all_resources) > start + page_size: - next_marker = paginated_resources[-1].name + next_marker = paginated_resources[-1].resource_id return paginated_resources, next_marker From 567cf122fe506b4b7e06225a8e7e8155e63e17a6 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 15:14:20 -0800 Subject: [PATCH 054/103] RDS: Add DescribeEvents Minimum viable implementation. Includes startup events for DBInstance creation. --- moto/rds/models.py | 109 +++++++++++++++++++++++++++++++++++-- moto/rds/responses.py | 5 ++ tests/test_rds/test_rds.py | 21 +++++++ 3 files changed, 130 insertions(+), 5 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index bd8f8d49761e..5efc42386479 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -10,7 +10,7 @@ from re import compile as re_compile from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Tuple, Union -from typing_extensions import Literal, Type +from typing_extensions import Literal, Protocol, Type from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel @@ -120,6 +120,30 @@ def modify_attribute( self.attributes[attribute_name] = new_attribute_values +class ResourceWithEvents(Protocol): + arn: str + event_source_type: str + + @property + def resource_id(self) -> str: + pass + + +class EventMixin: + arn: str + backend: RDSBackend + event_source_type: str + + def add_event(self, event_type: str) -> None: + self.backend.add_event(event_type, self) + + @property + def resource_id(self) -> str: + raise NotImplementedError( + "Concrete classes must implement resource_id property." + ) + + class TaggingMixin: _tags: List[Dict[str, str]] = [] @@ -793,7 +817,7 @@ def snapshot_create_time(self) -> str: return self.created -class DBInstance(CloudFormationModel, RDSBaseModel): +class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): SUPPORTED_FILTERS = { "db-cluster-id": FilterDef(["db_cluster_identifier"], "DB Cluster Identifiers"), "db-instance-id": FilterDef( @@ -816,7 +840,7 @@ class DBInstance(CloudFormationModel, RDSBaseModel): "sqlserver-web": "11.00.2100.60.v1", "postgres": "9.3.3", } - + event_source_type = "db-instance" resource_type = "db" def __init__( @@ -1291,12 +1315,15 @@ def delete(self, account_id: str, region_name: str) -> None: backend.delete_db_instance(self.db_instance_identifier) # type: ignore[arg-type] def save_automated_backup(self) -> None: + self.add_event("DB_INSTANCE_BACKUP_START") time_stamp = utcnow().strftime("%Y-%m-%d-%H-%M") snapshot_id = f"rds:{self.db_instance_identifier}-{time_stamp}" self.backend.create_auto_snapshot(self.db_instance_identifier, snapshot_id) + self.add_event("DB_INSTANCE_BACKUP_FINISH") -class DBSnapshot(SnapshotAttributesMixin, RDSBaseModel): +class DBSnapshot(EventMixin, SnapshotAttributesMixin, RDSBaseModel): + event_source_type = "db-snapshot" resource_type = "snapshot" SUPPORTED_FILTERS = { @@ -1729,6 +1756,7 @@ def __init__(self, region_name: str, account_id: str): self.subnet_groups: Dict[str, DBSubnetGroup] = {} self._db_cluster_options: Optional[List[Dict[str, Any]]] = None self.db_proxies: Dict[str, DBProxy] = OrderedDict() + self.events: List[Event] = [] self.resource_map = { DBCluster: self.clusters, DBClusterParameterGroup: self.db_cluster_parameter_groups, @@ -1869,6 +1897,7 @@ def create_db_instance(self, db_kwargs: Dict[str, Any]) -> DBInstance: ) cluster.cluster_members.append(database_id) self.databases[database_id] = database + database.add_event("DB_INSTANCE_CREATE") database.save_automated_backup() return database @@ -1877,9 +1906,12 @@ def create_auto_snapshot( db_instance_identifier: str, db_snapshot_identifier: str, ) -> DBSnapshot: - return self.create_db_snapshot( + snapshot = self.create_db_snapshot( db_instance_identifier, db_snapshot_identifier, snapshot_type="automated" ) + snapshot.add_event("DB_SNAPSHOT_CREATE_AUTOMATED_START") + snapshot.add_event("DB_SNAPSHOT_CREATE_AUTOMATED_FINISH") + return snapshot def create_db_snapshot( self, @@ -3281,6 +3313,27 @@ def describe_db_instance_automated_backups( DBInstanceAutomatedBackup(self, k, v) for k, v in snapshots_grouped.items() ] + def add_event(self, event_type: str, resource: ResourceWithEvents) -> None: + event = Event(event_type, resource) + self.events.append(event) + + def describe_events( + self, + source_identifier: Optional[str] = None, + source_type: Optional[str] = None, + **_: Any, + ) -> List[Event]: + if source_identifier is not None and source_type is None: + raise InvalidParameterCombination( + "Cannot specify source identifier without source type" + ) + events = self.events + if source_identifier is not None: + events = [e for e in events if e.source_identifier == source_identifier] + if source_type is not None: + events = [e for e in events if e.source_type == source_type] + return events + class OptionGroup(RDSBaseModel): resource_type = "og" @@ -3421,4 +3474,50 @@ def resource_id(self) -> str: return self.name +class Event(XFormedAttributeAccessMixin): + EVENT_MAP = { + "DB_INSTANCE_BACKUP_START": { + "Categories": ["backup"], + "Message": "Backing up DB instance", + }, + "DB_INSTANCE_BACKUP_FINISH": { + "Categories": ["backup"], + "Message": "Finished DB instance backup", + }, + "DB_INSTANCE_CREATE": { + "Categories": ["creation"], + "Message": "DB instance created", + }, + "DB_SNAPSHOT_CREATE_AUTOMATED_START": { + "Categories": ["creation"], + "Message": "Creating automated snapshot", + }, + "DB_SNAPSHOT_CREATE_AUTOMATED_FINISH": { + "Categories": ["creation"], + "Message": "Automated snapshot created", + }, + "DB_SNAPSHOT_CREATE_MANUAL_START": { + "Categories": ["creation"], + "Message": "Creating manual snapshot", + }, + "DB_SNAPSHOT_CREATE_MANUAL_FINISH": { + "Categories": ["creation"], + "Message": "Manual snapshot created", + }, + } + + def __init__(self, event_type: str, resource: ResourceWithEvents) -> None: + event_metadata = self.EVENT_MAP[event_type] + self.source_identifier = resource.resource_id + self.source_type = resource.event_source_type + self.message = event_metadata["Message"] + self.event_categories = event_metadata["Categories"] + self.source_arn = resource.arn + self.date = utcnow() + + @property + def resource_id(self) -> str: + return f"{self.source_identifier}-{self.source_type}-{self.date}" + + rds_backends = BackendDict(RDSBackend, "rds") diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 0d804d5ae8f5..2b9eaf536d10 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -776,6 +776,11 @@ def describe_db_instance_automated_backups(self) -> TYPE_RESPONSE: result = {"DBInstanceAutomatedBackups": automated_backups} return self.serialize(result) + def describe_events(self) -> TYPE_RESPONSE: + events = self.backend.describe_events(**self.parameters) + result = {"Events": events} + return self.serialize(result) + def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: from moto.rds.exceptions import InvalidParameterValue diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index f297bd39a6e8..ce1b8923b9de 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -3359,6 +3359,27 @@ def test_copy_snapshot_fails_with_non_existent_kms_key_id(client): assert "does not exist" in err["Message"] +@mock_aws +def test_describe_events(client): + instance = create_db_instance() + events = client.describe_events( + SourceIdentifier=instance["DBInstanceIdentifier"], SourceType="db-instance" + )["Events"] + assert len(events) >= 1 + first_event = events[0] + assert first_event["SourceIdentifier"] == instance["DBInstanceIdentifier"] + assert first_event["Message"] == "DB instance created" + + +@mock_aws +def test_describe_events_source_identifier_without_source_type_fails(client): + with pytest.raises(ClientError) as exc: + client.describe_events(SourceIdentifier="test") + err = exc.value.response["Error"] + assert err["Code"] == "InvalidParameterCombination" + assert err["Message"] == "Cannot specify source identifier without source type" + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 08758fe9be7aedb976f844068bc16ee9bb211d30 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 19:16:00 -0800 Subject: [PATCH 055/103] RDS: Allow explicit setting of RDS model class's underlying botocore model --- moto/rds/serialize.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/moto/rds/serialize.py b/moto/rds/serialize.py index ee4742e9fb9b..4954ee24fe88 100644 --- a/moto/rds/serialize.py +++ b/moto/rds/serialize.py @@ -410,6 +410,8 @@ class XFormedAttributeAccessMixin: """ + BOTOCORE_MODEL: Optional[str] = None + _model_attribute_aliases: Dict[str, List[str]] = {} _xform_cache: Dict[str, str] = {} @@ -441,7 +443,7 @@ def model_attribute_aliases(self) -> Dict[str, List[str]]: @lru_cache() def get_model_attributes_info(cls) -> Dict[str, List[str]]: service_name = cls.__module__.split(".")[1] - model_name = cls.__name__ + model_name = cls.BOTOCORE_MODEL or cls.__name__ service_model = get_service_model(service_name) model_shape = service_model.shape_for(model_name) valid_attributes: Dict[str, List[str]] = defaultdict(list) From 50b7f4cdf505c48d47024eea2eaa49c43e510acc Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 19:22:29 -0800 Subject: [PATCH 056/103] RDS: Add DescribeDBLogFiles Minimum viable implementation. Includes a single mock log file for postgres instances. --- moto/rds/models.py | 36 +++++++++++++++++++++++++++++++++++- moto/rds/responses.py | 5 +++++ tests/test_rds/test_rds.py | 22 ++++++++++++++++++++++ 3 files changed, 62 insertions(+), 1 deletion(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 5efc42386479..9b9e646cf629 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -14,7 +14,7 @@ from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel -from moto.core.utils import iso_8601_datetime_with_milliseconds, utcnow +from moto.core.utils import iso_8601_datetime_with_milliseconds, unix_time, utcnow from moto.ec2.models import ec2_backends from moto.kms.models import KmsBackend, kms_backends from moto.moto_api._internal import mock_random as random @@ -817,6 +817,33 @@ def snapshot_create_time(self) -> str: return self.created +class LogFileManager: + def __init__(self, engine: str) -> None: + self.log_files = [] + filename = f"error/{engine}.log" + if engine == "postgres": + formatted_time = utcnow().strftime("%Y-%m-%d-%H") + filename = f"error/postgresql.log.{formatted_time}" + self.log_files.append(DBLogFile(filename)) + + @property + def files(self) -> List[DBLogFile]: + return self.log_files + + +class DBLogFile(XFormedAttributeAccessMixin): + BOTOCORE_MODEL = "DescribeDBLogFilesDetails" + + def __init__(self, name: str) -> None: + self.log_file_name = name + self.last_written = int(unix_time()) + self.size = 123 + + @property + def resource_id(self) -> str: + return f"{self.log_file_name}-{self.last_written}-{self.size}" + + class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): SUPPORTED_FILTERS = { "db-cluster-id": FilterDef(["db_cluster_identifier"], "DB Cluster Identifiers"), @@ -890,6 +917,7 @@ def __init__( raise InvalidParameterValue( f"Value {self.engine} for parameter Engine is invalid. Reason: engine {self.engine} not supported" ) + self.log_file_manager = LogFileManager(self.engine) self.iops = iops self.master_user_secret_kms_key_id = kwargs.get("master_user_secret_kms_key_id") self.master_user_secret_status = kwargs.get( @@ -3334,6 +3362,12 @@ def describe_events( events = [e for e in events if e.source_type == source_type] return events + def describe_db_log_files(self, db_instance_identifier: str) -> List[DBLogFile]: + if db_instance_identifier not in self.databases: + raise DBInstanceNotFoundError(db_instance_identifier) + database = self.databases[db_instance_identifier] + return database.log_file_manager.files + class OptionGroup(RDSBaseModel): resource_type = "og" diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 2b9eaf536d10..46e389a07b3c 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -781,6 +781,11 @@ def describe_events(self) -> TYPE_RESPONSE: result = {"Events": events} return self.serialize(result) + def describe_db_log_files(self) -> TYPE_RESPONSE: + log_files = self.backend.describe_db_log_files(**self.parameters) + result = {"DescribeDBLogFiles": log_files} + return self.serialize(result) + def _paginate(self, resources: List[Any]) -> Tuple[List[Any], Optional[str]]: from moto.rds.exceptions import InvalidParameterValue diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index ce1b8923b9de..7ccfcb99c553 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -3380,6 +3380,28 @@ def test_describe_events_source_identifier_without_source_type_fails(client): assert err["Message"] == "Cannot specify source identifier without source type" +@mock_aws +def test_describe_db_log_files(client): + instance = create_db_instance(Engine="postgres") + log_files = client.describe_db_log_files( + DBInstanceIdentifier=instance["DBInstanceIdentifier"] + )["DescribeDBLogFiles"] + assert len(log_files) >= 1 + first_log_file = log_files[0] + assert "LogFileName" in first_log_file + assert "LastWritten" in first_log_file + assert "Size" in first_log_file + + +@mock_aws +def test_describe_db_log_files_with_non_existent_identifier_fails(client): + with pytest.raises(ClientError) as exc: + client.describe_db_log_files(DBInstanceIdentifier="non-existent-identifier") + err = exc.value.response["Error"] + assert err["Code"] == "DBInstanceNotFound" + assert "non-existent-identifier not found" in err["Message"] + + def validation_helper(exc): err = exc.value.response["Error"] assert err["Code"] == "InvalidParameterValue" From 7baf54fab07f1b802e599bd78bb22f9b4fd87e83 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 19:25:52 -0800 Subject: [PATCH 057/103] RDS: Fix PreferredBackupWindow/PreferredMaintenanceWindow validation The existing code validates these parameters together, but it's possible to only send one or the other. Short term fix is to default to the existing value if not present in the request. Longer term this validation needs to be rethought/refactored. --- moto/rds/models.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 9b9e646cf629..562467073f5b 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -2106,8 +2106,12 @@ def modify_db_instance( db_kwargs.pop("new_db_instance_identifier") ) self.databases[db_instance_identifier] = database - preferred_backup_window = db_kwargs.get("preferred_backup_window") - preferred_maintenance_window = db_kwargs.get("preferred_maintenance_window") + preferred_backup_window = db_kwargs.get( + "preferred_backup_window", database.preferred_backup_window + ) + preferred_maintenance_window = db_kwargs.get( + "preferred_maintenance_window", database.preferred_maintenance_window + ) if preferred_maintenance_window or preferred_backup_window: msg = valid_preferred_maintenance_window( preferred_maintenance_window, preferred_backup_window From 78636b5fefe56d04c55956d2b868400d9c8c43b4 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 15 Feb 2025 19:28:04 -0800 Subject: [PATCH 058/103] RDS: Various RDS Model attribute fix-ups * better default for option groups * actually create the default parameter group if it doesn't exist --- moto/rds/models.py | 46 ++++++++++++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 562467073f5b..9716a1aea1f6 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -973,13 +973,6 @@ def __init__( not in rds_backends[self.account_id][self.region].option_groups ): raise OptionGroupNotFoundFaultError(self.option_group_name) - self.default_option_groups = { - "MySQL": "default.mysql5.6", - "mysql": "default.mysql5.6", - "postgres": "default.postgres9.3", - } - if not self.option_group_name and self.engine in self.default_option_groups: - self.option_group_name = self.default_option_groups[self.engine] self.enable_iam_database_authentication = kwargs.get( "enable_iam_database_authentication", False ) @@ -989,7 +982,6 @@ def __init__( self.tags = tags or [] self.deletion_protection = deletion_protection self.enabled_cloudwatch_logs_exports = enable_cloudwatch_logs_exports or [] - self.db_cluster_identifier = db_cluster_identifier if self.db_cluster_identifier is None: self.storage_type = storage_type or DBInstance.default_storage_type( @@ -1028,6 +1020,7 @@ def __init__( self.max_allocated_storage = ( self.cluster.allocated_storage or self.allocated_storage ) + self.storage_type = "aurora" self.storage_encrypted = self.cluster.storage_encrypted or True self.kms_key_id = self.cluster.kms_key_id self.preferred_backup_window = self.cluster.preferred_backup_window @@ -1039,6 +1032,21 @@ def __init__( if self.db_name is None: self.db_name = self.cluster.database_name + self.default_option_groups = { + "MySQL": "default.mysql5.6", + "mysql": "default.mysql5.6", + "postgres": "default.postgres9.3", + } + if not self.option_group_name: + if self.engine and self.engine_version: + semantic = self.engine_version.split(".") + option_suffix = semantic[0] + if len(semantic) > 1: + option_suffix = option_suffix + "-" + semantic[1] + self.option_group_name = f"default:{self.engine}-{option_suffix}" + elif self.engine in self.default_option_groups: + self.option_group_name = self.default_option_groups[self.engine] + @property def resource_id(self) -> str: return self.db_instance_identifier @@ -1064,15 +1072,17 @@ def db_parameter_groups(self) -> List[DBParameterGroup]: db_parameter_group_name, ) = self.default_db_parameter_group_details() description = f"Default parameter group for {db_family}" - return [ - DBParameterGroup( - backend=self.backend, - db_parameter_group_name=db_parameter_group_name, - db_parameter_group_family=db_family, - description=description, - tags=[], - ) - ] + if db_parameter_group_name in self.backend.db_parameter_groups: + return [self.backend.db_parameter_groups[db_parameter_group_name]] + default_group = DBParameterGroup( + backend=self.backend, + db_parameter_group_name=db_parameter_group_name, + db_parameter_group_family=db_family, + description=description, + tags=[], + ) + self.backend.db_parameter_groups[db_parameter_group_name] = default_group + return [default_group] else: backend = rds_backends[self.account_id][self.region] if self.db_parameter_group_name not in backend.db_parameter_groups: @@ -1595,7 +1605,7 @@ def __init__( self.name = subnet_name self.description = description self._subnets = subnets - self.status = "Complete" + self.subnet_group_status = "Complete" self.tags = tags self.vpc_id = self._subnets[0].vpc_id From 091bd070b7039156ca33181dbd3cbde2a0c34e3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 10:01:02 -0100 Subject: [PATCH 059/103] chore: update EC2 Instance Types (#8598) --- moto/ec2/resources/instance_types.json | 60 +++++++++++++------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/moto/ec2/resources/instance_types.json b/moto/ec2/resources/instance_types.json index 4ac6bab10456..4f526af94832 100644 --- a/moto/ec2/resources/instance_types.json +++ b/moto/ec2/resources/instance_types.json @@ -17145,7 +17145,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.12xlarge", @@ -17288,7 +17288,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.16xlarge", @@ -17450,7 +17450,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.2xlarge", @@ -17553,7 +17553,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.4xlarge", @@ -17664,7 +17664,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.8xlarge", @@ -17791,7 +17791,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.large", @@ -17888,7 +17888,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.medium", @@ -18065,7 +18065,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c7gn.xlarge", @@ -33523,7 +33523,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -33633,7 +33633,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -33885,7 +33885,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -33989,7 +33989,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -54142,7 +54142,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -54405,7 +54405,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -54522,7 +54522,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -54647,7 +54647,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -54863,7 +54863,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -55344,7 +55344,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "m6in.2xlarge", @@ -55583,7 +55583,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "m6in.4xlarge", @@ -55688,7 +55688,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "m6in.8xlarge", @@ -55801,7 +55801,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "m6in.large", @@ -55993,7 +55993,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "m6in.xlarge", @@ -79200,7 +79200,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -79463,7 +79463,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -79705,7 +79705,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -79921,7 +79921,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -80402,7 +80402,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "r6in.2xlarge", @@ -80641,7 +80641,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "r6in.4xlarge", @@ -80859,7 +80859,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "r6in.large", @@ -81051,7 +81051,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "r6in.xlarge", From 8ebfa2872d90b158f263a9e72feb6d92d97ed8b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 10:02:50 -0100 Subject: [PATCH 060/103] chore: update EC2 Instance Offerings (#8597) --- .../availability-zone-id/ap-northeast-2.json | 40 +++++ .../availability-zone-id/ap-northeast-3.json | 72 +++++++++ .../availability-zone-id/ap-south-1.json | 4 + .../availability-zone-id/ap-southeast-2.json | 8 + .../availability-zone-id/ap-southeast-3.json | 80 ++++++++++ .../availability-zone-id/ap-southeast-4.json | 108 +++++++++++++ .../availability-zone-id/eu-central-2.json | 72 +++++++++ .../availability-zone-id/eu-west-2.json | 148 ++++++++++++++++++ .../availability-zone-id/sa-east-1.json | 4 + .../availability-zone-id/us-west-2.json | 4 + .../availability-zone/ap-northeast-2.json | 40 +++++ .../availability-zone/ap-northeast-3.json | 72 +++++++++ .../availability-zone/ap-south-1.json | 4 + .../availability-zone/ap-southeast-2.json | 8 + .../availability-zone/ap-southeast-3.json | 80 ++++++++++ .../availability-zone/ap-southeast-4.json | 108 +++++++++++++ .../availability-zone/eu-central-2.json | 72 +++++++++ .../availability-zone/eu-west-2.json | 148 ++++++++++++++++++ .../availability-zone/sa-east-1.json | 4 + .../availability-zone/us-west-2.json | 4 + .../region/ap-northeast-3.json | 36 +++++ .../region/ap-south-1.json | 4 + .../region/ap-southeast-2.json | 4 + .../region/ap-southeast-3.json | 44 ++++++ .../region/ap-southeast-4.json | 36 +++++ .../region/eu-central-2.json | 36 +++++ .../region/eu-west-2.json | 52 ++++++ .../region/sa-east-1.json | 4 + .../region/us-west-2.json | 4 + 29 files changed, 1300 insertions(+) diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json index af9a07bd543b..4ae974a95683 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json @@ -5327,6 +5327,46 @@ "InstanceType": "c6i.xlarge", "Location": "apne2-az4" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.large", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.metal", + "Location": "apne2-az4" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "apne2-az4" + }, { "InstanceType": "c7g.12xlarge", "Location": "apne2-az4" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json index f211b6682df4..2b104a7ce621 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-3.json @@ -1479,6 +1479,42 @@ "InstanceType": "m6i.xlarge", "Location": "apne3-az2" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.large", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.medium", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.metal", + "Location": "apne3-az2" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apne3-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "apne3-az2" @@ -2343,6 +2379,42 @@ "InstanceType": "m6i.xlarge", "Location": "apne3-az3" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.large", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.medium", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.metal", + "Location": "apne3-az3" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apne3-az3" + }, { "InstanceType": "r4.16xlarge", "Location": "apne3-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json index aed88d333bb0..756540e3aa96 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json @@ -4151,6 +4151,10 @@ "InstanceType": "t4g.xlarge", "Location": "aps1-az2" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "aps1-az2" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "aps1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json index b77d703c01d5..ffe3b61217a3 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json @@ -2555,6 +2555,10 @@ "InstanceType": "t4g.xlarge", "Location": "apse2-az1" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "apse2-az1" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "apse2-az1" @@ -5143,6 +5147,10 @@ "InstanceType": "t4g.xlarge", "Location": "apse2-az2" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "apse2-az2" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "apse2-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json index 214af421619a..00e209f1a4ba 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-3.json @@ -579,6 +579,42 @@ "InstanceType": "m6i.xlarge", "Location": "apse3-az1" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.large", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.medium", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.metal", + "Location": "apse3-az1" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apse3-az1" + }, { "InstanceType": "m7i-flex.2xlarge", "Location": "apse3-az1" @@ -643,6 +679,10 @@ "InstanceType": "m7i.xlarge", "Location": "apse3-az1" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "apse3-az1" + }, { "InstanceType": "r5.12xlarge", "Location": "apse3-az1" @@ -1591,6 +1631,10 @@ "InstanceType": "m7i.xlarge", "Location": "apse3-az2" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "apse3-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "apse3-az2" @@ -2443,6 +2487,42 @@ "InstanceType": "m6i.xlarge", "Location": "apse3-az3" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.large", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.medium", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.metal", + "Location": "apse3-az3" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apse3-az3" + }, { "InstanceType": "m7i-flex.2xlarge", "Location": "apse3-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-4.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-4.json index 26850f6b0278..6602cdc35662 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-4.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-4.json @@ -387,6 +387,42 @@ "InstanceType": "m6gd.xlarge", "Location": "apse4-az1" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.large", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.medium", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.metal", + "Location": "apse4-az1" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apse4-az1" + }, { "InstanceType": "r5.12xlarge", "Location": "apse4-az1" @@ -943,6 +979,42 @@ "InstanceType": "m6gd.xlarge", "Location": "apse4-az2" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.large", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.medium", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.metal", + "Location": "apse4-az2" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apse4-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "apse4-az2" @@ -1495,6 +1567,42 @@ "InstanceType": "m6gd.xlarge", "Location": "apse4-az3" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.large", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.medium", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.metal", + "Location": "apse4-az3" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "apse4-az3" + }, { "InstanceType": "r5.12xlarge", "Location": "apse4-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json index 5609bab20e7a..491148e878c9 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json @@ -1047,6 +1047,42 @@ "InstanceType": "c6in.xlarge", "Location": "euc2-az2" }, + { + "InstanceType": "c7g.12xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.16xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.2xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.4xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.8xlarge", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.large", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.medium", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.metal", + "Location": "euc2-az2" + }, + { + "InstanceType": "c7g.xlarge", + "Location": "euc2-az2" + }, { "InstanceType": "d3.2xlarge", "Location": "euc2-az2" @@ -1951,6 +1987,42 @@ "InstanceType": "c6in.xlarge", "Location": "euc2-az3" }, + { + "InstanceType": "c7g.12xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.16xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.2xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.4xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.8xlarge", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.large", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.medium", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.metal", + "Location": "euc2-az3" + }, + { + "InstanceType": "c7g.xlarge", + "Location": "euc2-az3" + }, { "InstanceType": "d3.2xlarge", "Location": "euc2-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json index 35eba9a74ba7..1baf503cd535 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-2.json @@ -1243,6 +1243,54 @@ "InstanceType": "m7i.xlarge", "Location": "euw2-az1" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.large", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.medium", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "euw2-az1" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "euw2-az1" + }, { "InstanceType": "mac1.metal", "Location": "euw2-az1" @@ -3295,6 +3343,54 @@ "InstanceType": "m7i.xlarge", "Location": "euw2-az2" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.large", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.medium", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "euw2-az2" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "euw2-az2" + }, { "InstanceType": "mac1.metal", "Location": "euw2-az2" @@ -3315,6 +3411,10 @@ "InstanceType": "p5.48xlarge", "Location": "euw2-az2" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "euw2-az2" + }, { "InstanceType": "r4.16xlarge", "Location": "euw2-az2" @@ -5227,6 +5327,54 @@ "InstanceType": "m7i.xlarge", "Location": "euw2-az3" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.large", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.medium", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "euw2-az3" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "euw2-az3" + }, { "InstanceType": "p3.16xlarge", "Location": "euw2-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json index 67c9400347a2..a53afeb6195a 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/sa-east-1.json @@ -3195,6 +3195,10 @@ "InstanceType": "m7i.xlarge", "Location": "sae1-az2" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "sae1-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "sae1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json index 1fc33e540493..300a53bfe25d 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json @@ -8911,6 +8911,10 @@ "InstanceType": "p5.48xlarge", "Location": "usw2-az3" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "usw2-az3" + }, { "InstanceType": "r3.2xlarge", "Location": "usw2-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json index 4bb0a4b28b4e..8c5d7a0651f8 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json @@ -5327,6 +5327,46 @@ "InstanceType": "c6i.xlarge", "Location": "ap-northeast-2d" }, + { + "InstanceType": "c6in.12xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.16xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.24xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.2xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.32xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.4xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.8xlarge", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.large", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.metal", + "Location": "ap-northeast-2d" + }, + { + "InstanceType": "c6in.xlarge", + "Location": "ap-northeast-2d" + }, { "InstanceType": "c7g.12xlarge", "Location": "ap-northeast-2d" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json index 17de5de34ff3..f9ba916e03dc 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-3.json @@ -575,6 +575,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-northeast-3a" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-northeast-3a" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-northeast-3a" + }, { "InstanceType": "r4.16xlarge", "Location": "ap-northeast-3a" @@ -2343,6 +2379,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-northeast-3c" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-northeast-3c" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-northeast-3c" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-northeast-3c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json index 42de8b9a8c3c..4380d9cab016 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json @@ -6391,6 +6391,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-south-1c" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "ap-south-1c" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "ap-south-1c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json index e9d44b10dfcf..419a5cb94f16 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json @@ -4991,6 +4991,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-southeast-2b" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "ap-southeast-2b" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "ap-southeast-2b" @@ -7579,6 +7583,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-southeast-2c" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "ap-southeast-2c" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "ap-southeast-2c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json index aa2b7bd8b3c1..18b109410f1e 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-3.json @@ -579,6 +579,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-southeast-3a" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-3a" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-3a" + }, { "InstanceType": "m7i-flex.2xlarge", "Location": "ap-southeast-3a" @@ -643,6 +679,10 @@ "InstanceType": "m7i.xlarge", "Location": "ap-southeast-3a" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "ap-southeast-3a" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-3a" @@ -1591,6 +1631,10 @@ "InstanceType": "m7i.xlarge", "Location": "ap-southeast-3b" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-southeast-3b" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-3b" @@ -2443,6 +2487,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-southeast-3c" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-3c" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-3c" + }, { "InstanceType": "m7i-flex.2xlarge", "Location": "ap-southeast-3c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-4.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-4.json index b4e44d569586..28fa6b9ddc12 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-4.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-4.json @@ -387,6 +387,42 @@ "InstanceType": "m6gd.xlarge", "Location": "ap-southeast-4a" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-4a" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-4a" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-4a" @@ -943,6 +979,42 @@ "InstanceType": "m6gd.xlarge", "Location": "ap-southeast-4b" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-4b" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-4b" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-4b" @@ -1495,6 +1567,42 @@ "InstanceType": "m6gd.xlarge", "Location": "ap-southeast-4c" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-4c" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-4c" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-4c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json index b735ba82c9b1..78e41681a8a6 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json @@ -1047,6 +1047,42 @@ "InstanceType": "c6in.xlarge", "Location": "eu-central-2b" }, + { + "InstanceType": "c7g.12xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.16xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.2xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.4xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.8xlarge", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.large", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.medium", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.metal", + "Location": "eu-central-2b" + }, + { + "InstanceType": "c7g.xlarge", + "Location": "eu-central-2b" + }, { "InstanceType": "d3.2xlarge", "Location": "eu-central-2b" @@ -1951,6 +1987,42 @@ "InstanceType": "c6in.xlarge", "Location": "eu-central-2c" }, + { + "InstanceType": "c7g.12xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.16xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.2xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.4xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.8xlarge", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.large", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.medium", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.metal", + "Location": "eu-central-2c" + }, + { + "InstanceType": "c7g.xlarge", + "Location": "eu-central-2c" + }, { "InstanceType": "d3.2xlarge", "Location": "eu-central-2c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json index b4c685a5f419..af25d37ce11c 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-2.json @@ -1371,6 +1371,54 @@ "InstanceType": "m7i.xlarge", "Location": "eu-west-2a" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.large", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.medium", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eu-west-2a" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eu-west-2a" + }, { "InstanceType": "mac1.metal", "Location": "eu-west-2a" @@ -1391,6 +1439,10 @@ "InstanceType": "p5.48xlarge", "Location": "eu-west-2a" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "eu-west-2a" + }, { "InstanceType": "r4.16xlarge", "Location": "eu-west-2a" @@ -3303,6 +3355,54 @@ "InstanceType": "m7i.xlarge", "Location": "eu-west-2b" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.large", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.medium", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eu-west-2b" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eu-west-2b" + }, { "InstanceType": "p3.16xlarge", "Location": "eu-west-2b" @@ -5199,6 +5299,54 @@ "InstanceType": "m7i.xlarge", "Location": "eu-west-2c" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.large", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.medium", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eu-west-2c" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eu-west-2c" + }, { "InstanceType": "mac1.metal", "Location": "eu-west-2c" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json index 6a7276f6eb41..65209499e0a8 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/sa-east-1.json @@ -3195,6 +3195,10 @@ "InstanceType": "m7i.xlarge", "Location": "sa-east-1b" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "sa-east-1b" + }, { "InstanceType": "r5.12xlarge", "Location": "sa-east-1b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json index 605c2c309a78..cff8135e6c7f 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json @@ -8911,6 +8911,10 @@ "InstanceType": "p5.48xlarge", "Location": "us-west-2c" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "us-west-2c" + }, { "InstanceType": "r3.2xlarge", "Location": "us-west-2c" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json index ebc01903db8b..306f15f601ab 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-3.json @@ -647,6 +647,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-northeast-3" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-northeast-3" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-northeast-3" + }, { "InstanceType": "r4.16xlarge", "Location": "ap-northeast-3" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json index 4244b0df4af8..290c00d8acf7 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json @@ -2143,6 +2143,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-south-1" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "ap-south-1" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "ap-south-1" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json index ce28aebebdd0..c05b94ea97d4 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json @@ -2555,6 +2555,10 @@ "InstanceType": "t4g.xlarge", "Location": "ap-southeast-2" }, + { + "InstanceType": "trn1.32xlarge", + "Location": "ap-southeast-2" + }, { "InstanceType": "u-12tb1.112xlarge", "Location": "ap-southeast-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json index 54d624a49dbe..2eac2ee44d32 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-3.json @@ -579,6 +579,42 @@ "InstanceType": "m6i.xlarge", "Location": "ap-southeast-3" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-3" + }, { "InstanceType": "m7i-flex.2xlarge", "Location": "ap-southeast-3" @@ -643,6 +679,14 @@ "InstanceType": "m7i.xlarge", "Location": "ap-southeast-3" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "ap-southeast-3" + }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-southeast-3" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-3" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-4.json b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-4.json index d432c6e579c2..df3ae83d24b3 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-4.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-4.json @@ -387,6 +387,42 @@ "InstanceType": "m6gd.xlarge", "Location": "ap-southeast-4" }, + { + "InstanceType": "m7g.12xlarge", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.16xlarge", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.2xlarge", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.4xlarge", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.8xlarge", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.large", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.medium", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.metal", + "Location": "ap-southeast-4" + }, + { + "InstanceType": "m7g.xlarge", + "Location": "ap-southeast-4" + }, { "InstanceType": "r5.12xlarge", "Location": "ap-southeast-4" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json index a324c1322b2f..9050ced0d9e8 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json @@ -183,6 +183,42 @@ "InstanceType": "c6in.xlarge", "Location": "eu-central-2" }, + { + "InstanceType": "c7g.12xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.16xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.2xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.4xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.8xlarge", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.large", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.medium", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.metal", + "Location": "eu-central-2" + }, + { + "InstanceType": "c7g.xlarge", + "Location": "eu-central-2" + }, { "InstanceType": "d3.2xlarge", "Location": "eu-central-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json index 9ee4e38c0609..8235fab22d45 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-west-2.json @@ -1371,6 +1371,54 @@ "InstanceType": "m7i.xlarge", "Location": "eu-west-2" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.large", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.medium", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eu-west-2" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eu-west-2" + }, { "InstanceType": "mac1.metal", "Location": "eu-west-2" @@ -1391,6 +1439,10 @@ "InstanceType": "p5.48xlarge", "Location": "eu-west-2" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "eu-west-2" + }, { "InstanceType": "r4.16xlarge", "Location": "eu-west-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json b/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json index 4c93cc3a5e44..0e9d923bc69d 100644 --- a/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/sa-east-1.json @@ -1399,6 +1399,10 @@ "InstanceType": "p5.48xlarge", "Location": "sa-east-1" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "sa-east-1" + }, { "InstanceType": "r3.2xlarge", "Location": "sa-east-1" diff --git a/moto/ec2/resources/instance_type_offerings/region/us-west-2.json b/moto/ec2/resources/instance_type_offerings/region/us-west-2.json index 29a4230148d1..4fd5c146a97a 100644 --- a/moto/ec2/resources/instance_type_offerings/region/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/us-west-2.json @@ -2227,6 +2227,10 @@ "InstanceType": "p5.48xlarge", "Location": "us-west-2" }, + { + "InstanceType": "p5e.48xlarge", + "Location": "us-west-2" + }, { "InstanceType": "p5en.48xlarge", "Location": "us-west-2" From e58221d45f1727936e0f527b9cdcf749531e6f24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 11:15:56 -0100 Subject: [PATCH 061/103] chore: update SSM default parameters (#8599) --- moto/ssm/resources/regions.json | 129 ++++++++++++++++++++++++++++++ moto/ssm/resources/services.json | 131 ++++++++++++++++++++++++++++++- 2 files changed, 259 insertions(+), 1 deletion(-) diff --git a/moto/ssm/resources/regions.json b/moto/ssm/resources/regions.json index 5982ea9f11ba..601192c4dd17 100644 --- a/moto/ssm/resources/regions.json +++ b/moto/ssm/resources/regions.json @@ -2171,6 +2171,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-east-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -6959,6 +6965,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-northeast-2.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -9254,6 +9266,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-northeast-3.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -13251,6 +13269,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-south-2.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -14982,6 +15006,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-southeast-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -17724,6 +17754,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.ap-southeast-2.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -23280,6 +23316,15 @@ "Value": "HTTPS" } }, + "launch-wizard": { + "Value": "launch-wizard", + "endpoint": { + "Value": "launchwizard.ap-southeast-5.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "license-manager": { "Value": "license-manager", "endpoint": { @@ -24259,6 +24304,15 @@ "Value": "HTTPS" } }, + "securityhub": { + "Value": "securityhub", + "endpoint": { + "Value": "securityhub.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "service-quotas": { "Value": "service-quotas", "endpoint": { @@ -27476,6 +27530,15 @@ "Value": "HTTPS" } }, + "launch-wizard": { + "Value": "launch-wizard", + "endpoint": { + "Value": "launchwizard.ca-west-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "license-manager": { "Value": "license-manager", "endpoint": { @@ -31525,6 +31588,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.eu-central-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -40985,6 +41054,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.eu-west-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -46374,6 +46449,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.eu-west-3.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -48297,6 +48378,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.il-central-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -48705,6 +48792,15 @@ "Value": "HTTPS" } }, + "launch-wizard": { + "Value": "launch-wizard", + "endpoint": { + "Value": "launchwizard.il-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "license-manager": { "Value": "license-manager", "endpoint": { @@ -51278,6 +51374,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.me-south-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -53124,6 +53226,15 @@ "Value": "HTTPS" } }, + "securityhub": { + "Value": "securityhub", + "endpoint": { + "Value": "securityhub.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "service-quotas": { "Value": "service-quotas", "endpoint": { @@ -53764,6 +53875,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.sa-east-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -56209,6 +56326,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.us-east-1.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { @@ -59371,6 +59494,12 @@ "Value": "HTTPS" } }, + "controlcatalog": { + "Value": "controlcatalog", + "endpoint": { + "Value": "controlcatalog.us-east-2.amazonaws.com" + } + }, "controltower": { "Value": "controltower", "endpoint": { diff --git a/moto/ssm/resources/services.json b/moto/ssm/resources/services.json index 15b7096c2395..22430330d724 100644 --- a/moto/ssm/resources/services.json +++ b/moto/ssm/resources/services.json @@ -16565,18 +16565,54 @@ "Value": "controlcatalog.af-south-1.amazonaws.com" } }, + "ap-east-1": { + "Value": "ap-east-1", + "endpoint": { + "Value": "controlcatalog.ap-east-1.amazonaws.com" + } + }, "ap-northeast-1": { "Value": "ap-northeast-1", "endpoint": { "Value": "controlcatalog.ap-northeast-1.amazonaws.com" } }, + "ap-northeast-2": { + "Value": "ap-northeast-2", + "endpoint": { + "Value": "controlcatalog.ap-northeast-2.amazonaws.com" + } + }, + "ap-northeast-3": { + "Value": "ap-northeast-3", + "endpoint": { + "Value": "controlcatalog.ap-northeast-3.amazonaws.com" + } + }, "ap-south-1": { "Value": "ap-south-1", "endpoint": { "Value": "controlcatalog.ap-south-1.amazonaws.com" } }, + "ap-south-2": { + "Value": "ap-south-2", + "endpoint": { + "Value": "controlcatalog.ap-south-2.amazonaws.com" + } + }, + "ap-southeast-1": { + "Value": "ap-southeast-1", + "endpoint": { + "Value": "controlcatalog.ap-southeast-1.amazonaws.com" + } + }, + "ap-southeast-2": { + "Value": "ap-southeast-2", + "endpoint": { + "Value": "controlcatalog.ap-southeast-2.amazonaws.com" + } + }, "ap-southeast-3": { "Value": "ap-southeast-3", "endpoint": { @@ -16607,6 +16643,12 @@ "Value": "controlcatalog.ca-west-1.amazonaws.com" } }, + "eu-central-1": { + "Value": "eu-central-1", + "endpoint": { + "Value": "controlcatalog.eu-central-1.amazonaws.com" + } + }, "eu-central-2": { "Value": "eu-central-2", "endpoint": { @@ -16631,18 +16673,60 @@ "Value": "controlcatalog.eu-south-2.amazonaws.com" } }, + "eu-west-1": { + "Value": "eu-west-1", + "endpoint": { + "Value": "controlcatalog.eu-west-1.amazonaws.com" + } + }, "eu-west-2": { "Value": "eu-west-2", "endpoint": { "Value": "controlcatalog.eu-west-2.amazonaws.com" } }, + "eu-west-3": { + "Value": "eu-west-3", + "endpoint": { + "Value": "controlcatalog.eu-west-3.amazonaws.com" + } + }, + "il-central-1": { + "Value": "il-central-1", + "endpoint": { + "Value": "controlcatalog.il-central-1.amazonaws.com" + } + }, "me-central-1": { "Value": "me-central-1", "endpoint": { "Value": "controlcatalog.me-central-1.amazonaws.com" } }, + "me-south-1": { + "Value": "me-south-1", + "endpoint": { + "Value": "controlcatalog.me-south-1.amazonaws.com" + } + }, + "sa-east-1": { + "Value": "sa-east-1", + "endpoint": { + "Value": "controlcatalog.sa-east-1.amazonaws.com" + } + }, + "us-east-1": { + "Value": "us-east-1", + "endpoint": { + "Value": "controlcatalog.us-east-1.amazonaws.com" + } + }, + "us-east-2": { + "Value": "us-east-2", + "endpoint": { + "Value": "controlcatalog.us-east-2.amazonaws.com" + } + }, "us-gov-west-1": { "Value": "us-gov-west-1", "endpoint": { @@ -38644,6 +38728,15 @@ "Value": "HTTPS" } }, + "ap-southeast-5": { + "Value": "ap-southeast-5", + "endpoint": { + "Value": "launchwizard.ap-southeast-5.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { @@ -38653,6 +38746,15 @@ "Value": "HTTPS" } }, + "ca-west-1": { + "Value": "ca-west-1", + "endpoint": { + "Value": "launchwizard.ca-west-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "cn-north-1": { "Value": "cn-north-1", "endpoint": { @@ -38743,6 +38845,15 @@ "Value": "HTTPS" } }, + "il-central-1": { + "Value": "il-central-1", + "endpoint": { + "Value": "launchwizard.il-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "me-central-1": { "Value": "me-central-1", "endpoint": { @@ -60170,6 +60281,15 @@ "Value": "HTTPS" } }, + "ap-southeast-7": { + "Value": "ap-southeast-7", + "endpoint": { + "Value": "securityhub.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { @@ -60305,6 +60425,15 @@ "Value": "HTTPS" } }, + "mx-central-1": { + "Value": "mx-central-1", + "endpoint": { + "Value": "securityhub.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sa-east-1": { "Value": "sa-east-1", "endpoint": { @@ -65533,7 +65662,7 @@ "Value": "AWS Step Functions" }, "marketingHomeURL": { - "Value": "https://aws.amazon.com/step-functions/details/" + "Value": "https://aws.amazon.com/step-functions/" }, "regions": { "af-south-1": { From ac96a26d7a84f0ddb64c6618599b9c681ebc550c Mon Sep 17 00:00:00 2001 From: waddamski <61849414+waddamski@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:54:10 +0000 Subject: [PATCH 062/103] Allow non kms origin in create_key (#8574) --- moto/kms/models.py | 5 ++++- moto/kms/responses.py | 3 ++- tests/test_kms/test_kms_boto3.py | 4 ++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/moto/kms/models.py b/moto/kms/models.py index 03b834c37cee..61a95990cd8a 100644 --- a/moto/kms/models.py +++ b/moto/kms/models.py @@ -74,6 +74,7 @@ def __init__( account_id: str, region: str, multi_region: bool = False, + origin: str = "AWS_KMS", ): self.id = generate_key_id(multi_region) self.creation_date = unix_time() @@ -97,7 +98,7 @@ def __init__( self.key_rotation_status = False self.deletion_date: Optional[datetime] = None self.key_material = generate_master_key() - self.origin = "AWS_KMS" + self.origin = origin self.key_manager = "CUSTOMER" self.key_spec = key_spec or "SYMMETRIC_DEFAULT" self.private_key = generate_private_key(self.key_spec) @@ -317,6 +318,7 @@ def create_key( description: str, tags: Optional[List[Dict[str, str]]], multi_region: bool = False, + origin: str = "AWS_KMS", ) -> Key: """ The provided Policy currently does not need to be valid. If it is valid, Moto will perform authorization checks on key-related operations, just like AWS does. @@ -336,6 +338,7 @@ def create_key( self.account_id, self.region_name, multi_region, + origin, ) self.keys[key.id] = key if tags is not None and len(tags) > 0: diff --git a/moto/kms/responses.py b/moto/kms/responses.py index a5c90a268788..3a9c3aa0ca42 100644 --- a/moto/kms/responses.py +++ b/moto/kms/responses.py @@ -123,9 +123,10 @@ def create_key(self) -> str: description = self._get_param("Description") tags = self._get_param("Tags") multi_region = self._get_param("MultiRegion") + origin = self._get_param("Origin") or "AWS_KMS" key = self.kms_backend.create_key( - policy, key_usage, key_spec, description, tags, multi_region + policy, key_usage, key_spec, description, tags, multi_region, origin ) return json.dumps(key.to_dict()) diff --git a/tests/test_kms/test_kms_boto3.py b/tests/test_kms/test_kms_boto3.py index bafccb20fecc..11f84bc8025b 100644 --- a/tests/test_kms/test_kms_boto3.py +++ b/tests/test_kms/test_kms_boto3.py @@ -118,6 +118,10 @@ def test_create_key(): assert "EncryptionAlgorithms" not in key["KeyMetadata"] assert key["KeyMetadata"]["SigningAlgorithms"] == ["ECDSA_SHA_512"] + key = conn.create_key(Origin="EXTERNAL") + + assert key["KeyMetadata"]["Origin"] == "EXTERNAL" + @mock_aws def test_create_multi_region_key(): From 52e3e5f678c308e56a453ce74eb2e16dd827496f Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 10:39:31 -0800 Subject: [PATCH 063/103] RDS: Fix server test Engine `aurora-mysql` not valid for non-clustered db instance. --- tests/test_rds/test_server.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_rds/test_server.py b/tests/test_rds/test_server.py index 51f4104c06e5..2fdcf2edddb6 100644 --- a/tests/test_rds/test_server.py +++ b/tests/test_rds/test_server.py @@ -15,18 +15,16 @@ def test_list_databases(): def test_create_db_instance(): backend = server.create_backend_app("rds") test_client = backend.test_client() - params = { "Action": "CreateDBInstance", "DBInstanceIdentifier": "hi", "DBInstanceClass": "db.m4.large", - "Engine": "aurora-mysql", + "Engine": "postgres", "StorageType": "standard", - "Port": 3306, + "Port": 5432, } qs = urlencode(params) resp = test_client.post(f"/?{qs}") - response = resp.data.decode("utf-8") assert "" not in response assert "hi Date: Sun, 16 Feb 2025 10:44:30 -0800 Subject: [PATCH 064/103] RDS: Refactor conditional code into DBInstanceClustered subclass Encapsulate the attribute value variations when a DBInstance is part of a cluster. --- moto/rds/models.py | 374 ++++++++++++++++++++++------ tests/test_rds/test_rds_clusters.py | 35 +++ 2 files changed, 336 insertions(+), 73 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 9716a1aea1f6..95fff7b6573e 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -372,19 +372,21 @@ def __init__( backend: RDSBackend, db_cluster_identifier: str, engine: str, + allocated_storage: int = 1, engine_version: Optional[str] = None, master_username: Optional[str] = None, master_user_password: Optional[str] = None, - backup_retention_period: Optional[int] = 1, + backup_retention_period: int = 1, character_set_name: Optional[str] = None, copy_tags_to_snapshot: Optional[bool] = False, database_name: Optional[str] = None, db_cluster_parameter_group_name: Optional[str] = None, db_subnet_group_name: Optional[str] = None, + license_model: str = "general-public-license", port: Optional[int] = None, - preferred_backup_window: Optional[str] = "01:37-02:07", - preferred_maintenance_window: Optional[str] = "wed:02:40-wed:03:10", - storage_encrypted: Optional[bool] = False, + preferred_backup_window: str = "01:37-02:07", + preferred_maintenance_window: str = "wed:02:40-wed:03:10", + storage_encrypted: bool = False, tags: Optional[List[Dict[str, str]]] = None, vpc_security_group_ids: Optional[List[str]] = None, deletion_protection: Optional[bool] = False, @@ -411,6 +413,11 @@ def __init__( self.engine_version = engine_version or DBCluster.default_engine_version( self.engine ) + semantic = self.engine_version.split(".") + option_suffix = semantic[0] + if len(semantic) > 1: + option_suffix = option_suffix + "-" + semantic[1] + self.option_group_name = f"default:{self.engine}-{option_suffix}" self.engine_mode = kwargs.get("engine_mode") or "provisioned" self.iops = kwargs.get("iops") self.network_type = kwargs.get("network_type") or "IPV4" @@ -420,7 +427,7 @@ def __init__( self.storage_type = kwargs.get("storage_type") if self.storage_type is None: self.storage_type = DBCluster.default_storage_type(iops=self.iops) - self.allocated_storage = kwargs.get("allocated_storage") + self.allocated_storage = allocated_storage if self.allocated_storage is None: self.allocated_storage = DBCluster.default_allocated_storage( engine=self.engine, storage_type=self.storage_type @@ -467,7 +474,7 @@ def __init__( self.endpoint = f"{self.db_cluster_identifier}.cluster-{self.url_identifier}.{self.region}.rds.amazonaws.com" self.reader_endpoint = f"{self.db_cluster_identifier}.cluster-ro-{self.url_identifier}.{self.region}.rds.amazonaws.com" self.port = port or DBCluster.default_port(self.engine) - self.preferred_backup_window = preferred_backup_window or "01:37-02:07" + self.preferred_backup_window = preferred_backup_window self.preferred_maintenance_window = preferred_maintenance_window # This should default to the default security group self._vpc_security_group_ids = vpc_security_group_ids or [] @@ -502,10 +509,7 @@ def __init__( self.read_replica_identifiers: List[str] = list() self.is_writer: bool = False self.storage_encrypted = storage_encrypted - if self.storage_encrypted: - self.kms_key_id = kms_key_id or "default_kms_key_id" - else: - self.kms_key_id = kms_key_id # type: ignore[assignment] + self.kms_key_id = kms_key_id or "default_kms_key_id" if self.engine == "aurora-mysql" or self.engine == "aurora-postgresql": self._global_write_forwarding_requested = kwargs.get( "enable_global_write_forwarding" @@ -537,6 +541,7 @@ def __init__( raise InvalidParameterCombination( "IAM Authentication is currently not supported by Multi-AZ DB clusters." ) + self.license_model = license_model @property def resource_id(self) -> str: @@ -845,6 +850,7 @@ def resource_id(self) -> str: class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): + BOTOCORE_MODEL = "DBInstance" SUPPORTED_FILTERS = { "db-cluster-id": FilterDef(["db_cluster_identifier"], "DB Cluster Identifiers"), "db-instance-id": FilterDef( @@ -858,6 +864,7 @@ class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): default_engine_versions = { "MySQL": "5.6.21", "mysql": "5.6.21", + "oracle-se2": "11.2.0.4.v3", "oracle-se1": "11.2.0.4.v3", "oracle-se": "11.2.0.4.v3", "oracle-ee": "11.2.0.4.v3", @@ -963,16 +970,7 @@ def __init__( not in rds_backends[self.account_id][self.region].db_parameter_groups ): raise DBParameterGroupNotFoundError(self.db_parameter_group_name) - self.license_model = license_model self.ca_certificate_identifier = ca_certificate_identifier - self.option_group_name = option_group_name - self.option_group_supplied = self.option_group_name is not None - if ( - self.option_group_name - and self.option_group_name - not in rds_backends[self.account_id][self.region].option_groups - ): - raise OptionGroupNotFoundFaultError(self.option_group_name) self.enable_iam_database_authentication = kwargs.get( "enable_iam_database_authentication", False ) @@ -998,12 +996,13 @@ def __init__( if self.storage_encrypted: self.kms_key_id = kwargs.get("kms_key_id", "default_kms_key_id") else: - self.kms_key_id = kwargs.get("kms_key_id") + self.kms_key_id = None self.backup_retention_period = backup_retention_period self.character_set_name = character_set_name - self.engine_version = engine_version - if not self.engine_version and self.engine in self.default_engine_versions: - self.engine_version = self.default_engine_versions[self.engine] + self.engine_version = ( + engine_version or self.default_engine_versions[self.engine] + ) + self.license_model = license_model self.master_username = master_username self.master_user_password = master_user_password self.preferred_backup_window = preferred_backup_window @@ -1013,39 +1012,145 @@ def __init__( ) if msg: raise RDSClientError("InvalidParameterValue", msg) - else: - # TODO: Refactor this into a DBClusterInstance subclass - self.cluster = self.backend.clusters[self.db_cluster_identifier] - self.allocated_storage = self.cluster.allocated_storage or 1 - self.max_allocated_storage = ( - self.cluster.allocated_storage or self.allocated_storage - ) - self.storage_type = "aurora" - self.storage_encrypted = self.cluster.storage_encrypted or True - self.kms_key_id = self.cluster.kms_key_id - self.preferred_backup_window = self.cluster.preferred_backup_window - self.backup_retention_period = self.cluster.backup_retention_period or 1 - self.character_set_name = self.cluster.character_set_name - self.engine_version = self.cluster.engine_version - self.master_username = self.cluster.master_username - self.master_user_password = self.cluster.master_user_password - if self.db_name is None: - self.db_name = self.cluster.database_name - - self.default_option_groups = { - "MySQL": "default.mysql5.6", - "mysql": "default.mysql5.6", - "postgres": "default.postgres9.3", - } - if not self.option_group_name: + self.option_group_supplied = option_group_name is not None + if ( + option_group_name + and option_group_name + not in rds_backends[self.account_id][self.region].option_groups + ): + raise OptionGroupNotFoundFaultError(option_group_name) + self.default_option_groups = { + "MySQL": "default.mysql5.6", + "mysql": "default.mysql5.6", + "postgres": "default.postgres9.3", + } if self.engine and self.engine_version: semantic = self.engine_version.split(".") option_suffix = semantic[0] if len(semantic) > 1: option_suffix = option_suffix + "-" + semantic[1] - self.option_group_name = f"default:{self.engine}-{option_suffix}" - elif self.engine in self.default_option_groups: - self.option_group_name = self.default_option_groups[self.engine] + default_option_group_name = f"default:{self.engine}-{option_suffix}" + else: + default_option_group_name = self.default_option_groups[self.engine] + self.option_group_name = option_group_name or default_option_group_name + + @property + def allocated_storage(self) -> int: + return self._allocated_storage + + @allocated_storage.setter + def allocated_storage(self, value: int) -> None: + self._allocated_storage = value + + @property + def backup_retention_period(self) -> int: + return self._backup_retention_period + + @backup_retention_period.setter + def backup_retention_period(self, value: int) -> None: + self._backup_retention_period = value + + @property + def character_set_name(self) -> Optional[str]: + return self._character_set_name + + @character_set_name.setter + def character_set_name(self, value: Optional[str]) -> None: + self._character_set_name = value + + @property + def db_name(self) -> Optional[str]: + return self._db_name + + @db_name.setter + def db_name(self, value: Optional[str]) -> None: + self._db_name = value + + @property + def engine_version(self) -> str: + return self._engine_version + + @engine_version.setter + def engine_version(self, value: str) -> None: + self._engine_version = value + + @property + def kms_key_id(self) -> Optional[str]: + return self._kms_key_id + + @kms_key_id.setter + def kms_key_id(self, value: Optional[str]) -> None: + self._kms_key_id = value + + @property + def license_model(self) -> str: + return self._license_model + + @license_model.setter + def license_model(self, value: str) -> None: + self._license_model = value + + @property + def master_username(self) -> Optional[str]: + return self._master_username + + @master_username.setter + def master_username(self, value: Optional[str]) -> None: + self._master_username = value + + @property + def master_user_password(self) -> Optional[str]: + return self._master_user_password + + @master_user_password.setter + def master_user_password(self, value: Optional[str]) -> None: + self._master_user_password = value + + @property + def max_allocated_storage(self) -> Optional[int]: + if self._max_allocated_storage > self.allocated_storage: + return self._max_allocated_storage + return None + + @max_allocated_storage.setter + def max_allocated_storage(self, value: int) -> None: + if value < self.allocated_storage: + raise InvalidParameterCombination( + "Max storage size must be greater than storage size" + ) + self._max_allocated_storage = value + + @property + def option_group_name(self) -> str: + return self._option_group_name + + @option_group_name.setter + def option_group_name(self, value: str) -> None: + self._option_group_name = value + + @property + def preferred_backup_window(self) -> str: + return self._preferred_backup_window + + @preferred_backup_window.setter + def preferred_backup_window(self, value: str) -> None: + self._preferred_backup_window = value + + @property + def storage_encrypted(self) -> bool: + return self._storage_encrypted + + @storage_encrypted.setter + def storage_encrypted(self, value: bool) -> None: + self._storage_encrypted = value + + @property + def storage_type(self) -> str: + return self._storage_type + + @storage_type.setter + def storage_type(self, value: str) -> None: + self._storage_type = value @property def resource_id(self) -> str: @@ -1113,19 +1218,6 @@ def master_user_secret(self) -> Dict[str, Any] | None: # type: ignore[misc] } return secret_info if self.manage_master_user_password else None - @property - def max_allocated_storage(self) -> Optional[int]: - value: int = self._max_allocated_storage or 0 # type: ignore[has-type] - return value if value != self.allocated_storage else None - - @max_allocated_storage.setter - def max_allocated_storage(self, value: int) -> None: - if value < self.allocated_storage: - raise InvalidParameterCombination( - "Max storage size must be greater than storage size" - ) - self._max_allocated_storage = value - @property def address(self) -> str: return ( @@ -1360,6 +1452,132 @@ def save_automated_backup(self) -> None: self.add_event("DB_INSTANCE_BACKUP_FINISH") +class DBInstanceClustered(DBInstance): + def __init__(self, db_cluster_identifier: str, **kwargs: Any) -> None: + super().__init__(db_cluster_identifier=db_cluster_identifier, **kwargs) + self.cluster = self.backend.clusters[db_cluster_identifier] + self.db_cluster_identifier = db_cluster_identifier + + @property + def allocated_storage(self) -> int: + return self.cluster.allocated_storage + + @allocated_storage.setter + def allocated_storage(self, value: int) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def backup_retention_period(self) -> int: + return self.cluster.backup_retention_period + + @backup_retention_period.setter + def backup_retention_period(self, value: int) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def character_set_name(self) -> Optional[str]: + return self.cluster.character_set_name + + @character_set_name.setter + def character_set_name(self, value: Optional[str]) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + # TODO: Need to understand better how this works with Aurora instances. + # According to the boto3 documentation, `db_name` is valid: + # "The name of the database to create when the primary instance + # of the DB cluster is created. If this parameter isn't specified, + # no database is created in the DB instance." + # So does that mean the cluster.database_name and the instance.db_name + # can differ? + @property + def db_name(self) -> Optional[str]: + return self._db_name or self.cluster.database_name + + @db_name.setter + def db_name(self, value: Optional[str]) -> None: + self._db_name = value + + @property + def engine_version(self) -> str: + return self.cluster.engine_version + + @engine_version.setter + def engine_version(self, value: str) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def kms_key_id(self) -> Optional[str]: + return self.cluster.kms_key_id + + @kms_key_id.setter + def kms_key_id(self, value: Optional[str]) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def license_model(self) -> str: + return self.cluster.license_model + + @license_model.setter + def license_model(self, value: str) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def master_username(self) -> Optional[str]: + return self.cluster.master_username + + @master_username.setter + def master_username(self, value: Optional[str]) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def master_user_password(self) -> Optional[str]: + return self.cluster.master_user_password + + @master_user_password.setter + def master_user_password(self, value: Optional[str]) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def max_allocated_storage(self) -> Optional[int]: + return None + + @max_allocated_storage.setter + def max_allocated_storage(self, value: int) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def option_group_name(self) -> str: + return self.cluster.option_group_name + + @option_group_name.setter + def option_group_name(self, value: str) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def preferred_backup_window(self) -> str: + return self.cluster.preferred_backup_window + + @preferred_backup_window.setter + def preferred_backup_window(self, value: str) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def storage_encrypted(self) -> bool: + return self.cluster.storage_encrypted + + @storage_encrypted.setter + def storage_encrypted(self, value: bool) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + @property + def storage_type(self) -> str: + return "aurora" + + @storage_type.setter + def storage_type(self, value: str) -> None: + raise NotImplementedError("Not valid for clustered db instances.") + + class DBSnapshot(EventMixin, SnapshotAttributesMixin, RDSBaseModel): event_source_type = "db-snapshot" resource_type = "snapshot" @@ -1408,12 +1626,11 @@ def __init__( self.db_instance_identifier = database.db_instance_identifier self.engine = database.engine self.engine_version = database.engine_version - if kms_key_id is not None: - self.kms_key_id = kms_key_id - self.encrypted = self.database.storage_encrypted = True - else: - self.kms_key_id = database.kms_key_id - self.encrypted = database.storage_encrypted + self.kms_key_id = kms_key_id or database.kms_key_id + self.storage_encrypted = ( + self.kms_key_id is not None or database.storage_encrypted + ) + self.encrypted = self.kms_key_id is not None and self.storage_encrypted self.iam_database_authentication_enabled = ( database.enable_iam_database_authentication ) @@ -1916,7 +2133,10 @@ def create_db_instance(self, db_kwargs: Dict[str, Any]) -> DBInstance: if database_id in self.databases: raise DBInstanceAlreadyExists() self._validate_db_identifier(database_id) - database = DBInstance(self, **db_kwargs) + if db_kwargs.get("db_cluster_identifier") is None: + database = DBInstance(self, **db_kwargs) + else: + database = DBInstanceClustered(backend=self, **db_kwargs) cluster_id = database.db_cluster_identifier if cluster_id is not None: @@ -2177,12 +2397,17 @@ def restore_db_instance_from_db_snapshot( new_instance_props = {} for key, value in original_database.__dict__.items(): + if key.startswith("_"): + key = key[1:] if key not in [ "backend", "db_parameter_group_name", "vpc_security_group_ids", + "max_allocated_storage", ]: new_instance_props[key] = copy.copy(value) + new_instance_props["kms_key_id"] = snapshot.kms_key_id + new_instance_props["storage_encrypted"] = snapshot.encrypted if not original_database.option_group_supplied: # If the option group is not supplied originally, the 'option_group_name' will receive a default value # Force this reconstruction, and prevent any validation on the default value @@ -2210,11 +2435,14 @@ def restore_db_instance_to_point_in_time( new_instance_props = {} for key, value in db_instance.__dict__.items(): + if key.startswith("_"): + key = key[1:] # Remove backend / db subnet group as they cannot be copied # and are not used in the restored instance. - if key in ("backend", "db_subnet_group"): + if key in ("backend", "db_subnet_group", "max_allocated_storage"): continue new_instance_props[key] = copy.deepcopy(value) + new_instance_props["db_name"] = db_instance.db_name if not db_instance.option_group_supplied: # If the option group is not supplied originally, the 'option_group_name' will receive a default value @@ -2672,7 +2900,7 @@ def modify_db_cluster(self, kwargs: Dict[str, Any]) -> DBCluster: cluster_id = kwargs.get("new_db_cluster_identifier", cluster_id) self.clusters[cluster_id] = cluster - initial_state = copy.deepcopy(cluster) # Return status=creating + initial_state = copy.copy(cluster) # Return status=creating # Already set the final status in the background cluster.status = "available" diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 75a4fd3b71a4..5736895e5d11 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -404,6 +404,41 @@ def test_modify_db_cluster_serverless_v2_scaling_configuration(client): } +@mock_aws +def test_modify_db_cluster_engine_version(client): + cluster_id = create_db_cluster( + DBClusterIdentifier="cluster-id", + Engine="aurora-postgresql", + EngineVersion="9.6", + ) + cluster = client.describe_db_clusters(DBClusterIdentifier=cluster_id)["DBClusters"][ + 0 + ] + assert cluster["Engine"] == "aurora-postgresql" + assert cluster["EngineVersion"] == "9.6" + instance = create_db_instance( + DBInstanceIdentifier="clustered-instance", + DBClusterIdentifier=cluster["DBClusterIdentifier"], + Engine="aurora-postgresql", + ) + assert instance["Engine"] == cluster["Engine"] + assert instance["EngineVersion"] == cluster["EngineVersion"] + client.modify_db_cluster( + DBClusterIdentifier=cluster_id, + EngineVersion="10.2", + ) + cluster = client.describe_db_clusters(DBClusterIdentifier=cluster_id)["DBClusters"][ + 0 + ] + assert cluster["Engine"] == "aurora-postgresql" + assert cluster["EngineVersion"] == "10.2" + instance = client.describe_db_instances( + DBInstanceIdentifier=instance["DBInstanceIdentifier"] + )["DBInstances"][0] + assert instance["Engine"] == cluster["Engine"] + assert instance["EngineVersion"] == cluster["EngineVersion"] + + @mock_aws def test_describe_db_cluster_after_creation(client): client.create_db_cluster( From 08262ff575e0d4dc39c9ef8f3ba17cde0ecec464 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sun, 16 Feb 2025 17:46:35 -0100 Subject: [PATCH 065/103] Lambda EventSourceMapping: Support all properties (#8600) --- moto/awslambda/models.py | 80 ++++++++++- .../test_lambda_eventsourcemapping.py | 127 +++++++++++++++++- 2 files changed, 203 insertions(+), 4 deletions(-) diff --git a/moto/awslambda/models.py b/moto/awslambda/models.py index 59020c64e1a6..de8fc1f13e9d 100644 --- a/moto/awslambda/models.py +++ b/moto/awslambda/models.py @@ -1277,7 +1277,30 @@ def __init__(self, spec: Dict[str, Any]): self.batch_size = spec.get("BatchSize") # type: ignore[assignment] self.starting_position = spec.get("StartingPosition", "TRIM_HORIZON") self.enabled = spec.get("Enabled", True) - self.starting_position_timestamp = spec.get("StartingPositionTimestamp", None) + self.starting_position_timestamp = spec.get("StartingPositionTimestamp") + self.kafka_config = spec.get("AmazonManagedKafkaEventSourceConfig") + self.bisect_on_error = spec.get("BisectBatchOnFunctionError") + self.destination_config = spec.get("DestinationConfig") + self.document_db_config = spec.get("DocumentDBEventSourceConfig") + self.filter_criteria = spec.get("FilterCriteria") + self.function_response_types = spec.get("FunctionResponseTypes") + self.kms_key = spec.get("KMSKeyArn") + self.max_batch_window = spec.get("MaximumBatchingWindowInSeconds") + self.max_record_age = spec.get("MaximumRecordAgeInSeconds") + self.max_retry_attempts = spec.get("MaximumRetryAttempts") + self.metrics = spec.get("MetricsConfig") + self.parallelization_factor = spec.get("ParallelizationFactor") + self.poller_config = spec.get("ProvisionedPollerConfig") + self.queues = spec.get("Queues") + self.scaling_config = spec.get("ScalingConfig") + self.self_managed_event_source = spec.get("SelfManagedEventSource") + self.self_managed_kafka_event_source_config = spec.get( + "SelfManagedKafkaEventSourceConfig" + ) + self.source_access_config = spec.get("SourceAccessConfigurations") + self.tags = spec.get("Tags") + self.topics = spec.get("Topics") + self.tumbling_window = spec.get("TumblingWindowInSeconds") self.function_arn: str = spec["FunctionArn"] self.uuid = str(random.uuid4()) @@ -1329,7 +1352,7 @@ def batch_size(self, batch_size: Optional[int]) -> None: self._batch_size = int(batch_size) def get_configuration(self) -> Dict[str, Any]: - return { + response_dict = { "UUID": self.uuid, "BatchSize": self.batch_size, "EventSourceArn": self.event_source_arn, @@ -1339,7 +1362,30 @@ def get_configuration(self) -> Dict[str, Any]: "State": "Enabled" if self.enabled else "Disabled", "StateTransitionReason": "User initiated", "StartingPosition": self.starting_position, + "AmazonManagedKafkaEventSourceConfig": self.kafka_config, + "BisectBatchOnFunctionError": self.bisect_on_error, + "DestinationConfig": self.destination_config, + "DocumentDBEventSourceConfig": self.document_db_config, + "FilterCriteria": self.filter_criteria, + "FunctionResponseTypes": self.function_response_types, + "KMSKeyArn": self.kms_key, + "MaximumBatchingWindowInSeconds": self.max_batch_window, + "MaximumRecordAgeInSeconds": self.max_record_age, + "MaximumRetryAttempts": self.max_retry_attempts, + "MetricsConfig": self.metrics, + "ParallelizationFactor": self.parallelization_factor, + "ProvisionedPollerConfig": self.poller_config, + "Queues": self.queues, + "ScalingConfig": self.scaling_config, + "SelfManagedEventSource": self.self_managed_event_source, + "SelfManagedKafkaEventSourceConfig": self.self_managed_kafka_event_source_config, + "SourceAccessConfigurations": self.source_access_config, + "Tags": self.tags, + "Topics": self.topics, + "TumblingWindowInSeconds": self.tumbling_window, } + # Only return fields with a value - we don't want to return None for a boolean/int field + return {k: v for k, v in response_dict.items() if v is not None} def delete(self, account_id: str, region_name: str) -> None: lambda_backend = lambda_backends[account_id][region_name] @@ -2134,6 +2180,36 @@ def update_event_source_mapping( esm.batch_size = spec[key] elif key == "Enabled": esm.enabled = spec[key] + elif key == "FilterCriteria": + esm.filter_criteria = spec[key] + elif key == "MaximumBatchingWindowInSeconds": + esm.max_batch_window = spec[key] + elif key == "ParallelizationFactor": + esm.parallelization_factor = spec[key] + elif key == "DestinationConfig": + esm.destination_config = spec[key] + elif key == "MaximumRecordAgeInSeconds": + esm.max_record_age = spec[key] + elif key == "BisectBatchOnFunctionError": + esm.bisect_on_error = spec[key] + elif key == "MaximumRetryAttempts": + esm.max_retry_attempts = spec[key] + elif key == "TumblingWindowInSeconds": + esm.tumbling_window = spec[key] + elif key == "SourceAccessConfigurations": + esm.source_access_config = spec[key] + elif key == "FunctionResponseTypes": + esm.function_response_types = spec[key] + elif key == "ScalingConfig": + esm.scaling_config = spec[key] + elif key == "DocumentDBEventSourceConfig": + esm.document_db_config = spec[key] + elif key == "KMSKeyArn": + esm.kms_key = spec[key] + elif key == "MetricsConfig": + esm.metrics = spec[key] + elif key == "ProvisionedPollerConfig": + esm.poller_config = spec[key] esm.last_modified = time.mktime(utcnow().timetuple()) return esm diff --git a/tests/test_awslambda/test_lambda_eventsourcemapping.py b/tests/test_awslambda/test_lambda_eventsourcemapping.py index ce89445d9028..53858e9cc471 100644 --- a/tests/test_awslambda/test_lambda_eventsourcemapping.py +++ b/tests/test_awslambda/test_lambda_eventsourcemapping.py @@ -39,13 +39,83 @@ def test_create_event_source_mapping(): Publish=True, ) + destination_config = { + "OnSuccess": {"Destination": "s3"}, + "OnFailure": {"Destination": "s4"}, + } + doc_db_config = { + "DatabaseName": "db", + "CollectionName": "cn", + "FullDocument": "UpdateLookup", + } response = conn.create_event_source_mapping( - EventSourceArn=queue.attributes["QueueArn"], FunctionName=func["FunctionArn"] + EventSourceArn=queue.attributes["QueueArn"], + FunctionName=func["FunctionArn"], + BatchSize=1, + FilterCriteria={ + "Filters": [{"Pattern": r"asdf"}], + }, + MaximumBatchingWindowInSeconds=5, + ParallelizationFactor=4, + StartingPosition="AT_TIMESTAMP", + DestinationConfig=destination_config, + MaximumRecordAgeInSeconds=59, + BisectBatchOnFunctionError=True, + MaximumRetryAttempts=9000, + Tags={"k1": "v1"}, + TumblingWindowInSeconds=100, + Topics=["t1", "T2"], + Queues=["q1", "q2"], + SourceAccessConfigurations=[ + {"Type": "BASIC_AUTH", "URI": "http://auth.endpoint"}, + ], + SelfManagedEventSource={ + "Endpoints": { + "key": ["v1"], + }, + }, + FunctionResponseTypes=["ReportBatchItemFailures"], + AmazonManagedKafkaEventSourceConfig={"ConsumerGroupId": "cgid"}, + SelfManagedKafkaEventSourceConfig={"ConsumerGroupId": "cgid2"}, + ScalingConfig={"MaximumConcurrency": 100}, + DocumentDBEventSourceConfig=doc_db_config, + KMSKeyArn="arn:kms:key", + MetricsConfig={"Metrics": ["EventCount"]}, + ProvisionedPollerConfig={"MinimumPollers": 12, "MaximumPollers": 13}, ) assert response["EventSourceArn"] == queue.attributes["QueueArn"] assert response["FunctionArn"] == func["FunctionArn"] assert response["State"] == "Enabled" + assert response["BatchSize"] == 1 + assert response["StartingPosition"] == "AT_TIMESTAMP" + assert response["MaximumBatchingWindowInSeconds"] == 5 + assert response["ParallelizationFactor"] == 4 + assert response["FilterCriteria"] == {"Filters": [{"Pattern": "asdf"}]} + assert response["DestinationConfig"] == destination_config + assert response["Topics"] == ["t1", "T2"] + assert response["Queues"] == ["q1", "q2"] + assert response["SourceAccessConfigurations"] == [ + {"Type": "BASIC_AUTH", "URI": "http://auth.endpoint"} + ] + assert response["SelfManagedEventSource"] == {"Endpoints": {"key": ["v1"]}} + assert response["MaximumRecordAgeInSeconds"] == 59 + assert response["BisectBatchOnFunctionError"] is True + assert response["MaximumRetryAttempts"] == 9000 + assert response["TumblingWindowInSeconds"] == 100 + assert response["FunctionResponseTypes"] == ["ReportBatchItemFailures"] + assert response["AmazonManagedKafkaEventSourceConfig"] == { + "ConsumerGroupId": "cgid" + } + assert response["SelfManagedKafkaEventSourceConfig"] == {"ConsumerGroupId": "cgid2"} + assert response["ScalingConfig"] == {"MaximumConcurrency": 100} + assert response["DocumentDBEventSourceConfig"] == doc_db_config + assert response["KMSKeyArn"] == "arn:kms:key" + assert response["MetricsConfig"] == {"Metrics": ["EventCount"]} + assert response["ProvisionedPollerConfig"] == { + "MinimumPollers": 12, + "MaximumPollers": 13, + } @pytest.mark.network @@ -482,14 +552,67 @@ def test_update_event_source_mapping(): assert response["BatchSize"] == 10 assert response["State"] == "Enabled" + destination_config = { + "OnSuccess": {"Destination": "s3"}, + "OnFailure": {"Destination": "s4"}, + } + doc_db_config = { + "DatabaseName": "db", + "CollectionName": "cn", + "FullDocument": "UpdateLookup", + } + mapping = conn.update_event_source_mapping( - UUID=response["UUID"], Enabled=False, BatchSize=2, FunctionName="testFunction2" + UUID=response["UUID"], + Enabled=False, + BatchSize=2, + FunctionName="testFunction2", + FilterCriteria={ + "Filters": [{"Pattern": r"asdf"}], + }, + MaximumBatchingWindowInSeconds=5, + ParallelizationFactor=4, + DestinationConfig=destination_config, + MaximumRecordAgeInSeconds=59, + BisectBatchOnFunctionError=True, + MaximumRetryAttempts=9000, + TumblingWindowInSeconds=100, + SourceAccessConfigurations=[ + {"Type": "BASIC_AUTH", "URI": "http://auth.endpoint"}, + ], + FunctionResponseTypes=["ReportBatchItemFailures"], + ScalingConfig={"MaximumConcurrency": 100}, + DocumentDBEventSourceConfig=doc_db_config, + KMSKeyArn="arn:kms:key", + MetricsConfig={"Metrics": ["EventCount"]}, + ProvisionedPollerConfig={"MinimumPollers": 12, "MaximumPollers": 13}, ) assert mapping["UUID"] == response["UUID"] assert mapping["FunctionArn"] == func2["FunctionArn"] assert mapping["State"] == "Disabled" assert mapping["BatchSize"] == 2 + assert mapping["MaximumBatchingWindowInSeconds"] == 5 + assert mapping["ParallelizationFactor"] == 4 + assert mapping["FilterCriteria"] == {"Filters": [{"Pattern": "asdf"}]} + assert mapping["DestinationConfig"] == destination_config + assert mapping["SourceAccessConfigurations"] == [ + {"Type": "BASIC_AUTH", "URI": "http://auth.endpoint"} + ] + assert mapping["MaximumRecordAgeInSeconds"] == 59 + assert mapping["BisectBatchOnFunctionError"] is True + assert mapping["MaximumRetryAttempts"] == 9000 + assert mapping["TumblingWindowInSeconds"] == 100 + assert mapping["FunctionResponseTypes"] == ["ReportBatchItemFailures"] + assert mapping["ScalingConfig"] == {"MaximumConcurrency": 100} + assert mapping["DocumentDBEventSourceConfig"] == doc_db_config + assert mapping["KMSKeyArn"] == "arn:kms:key" + assert mapping["MetricsConfig"] == {"Metrics": ["EventCount"]} + assert mapping["ProvisionedPollerConfig"] == { + "MinimumPollers": 12, + "MaximumPollers": 13, + } + @mock_aws def test_delete_event_source_mapping(): From fc7bcea62bab384df68d996e24a52e90637303e9 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sun, 16 Feb 2025 19:10:45 -0100 Subject: [PATCH 066/103] AWSLambda: Make ListFunctions work for JS SDK (#8601) --- moto/core/responses.py | 5 +++++ other_langs/tests_js/lambda.test.js | 8 ++++++++ other_langs/tests_js/package.json | 7 ++++--- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 other_langs/tests_js/lambda.test.js diff --git a/moto/core/responses.py b/moto/core/responses.py index edd26019b4f6..246e4d3dfda6 100644 --- a/moto/core/responses.py +++ b/moto/core/responses.py @@ -92,6 +92,11 @@ def _get_method_urls(service_name: str, region: str) -> Dict[str, Dict[str, str] _method = op_model.http["method"] request_uri = op_model.http["requestUri"] if service_name == "route53" and request_uri.endswith("/rrset/"): + # Terraform 5.50 made a request to /rrset/ + # Terraform 5.51+ makes a request to /rrset - so we have to intercept both variants + request_uri += "?" + if service_name == "lambda" and request_uri.endswith("/functions/"): + # AWS JS SDK behaves differently from other SDK's, does not send a trailing slash request_uri += "?" uri_regexp = BaseResponse.uri_to_regexp(request_uri) method_urls[_method][uri_regexp] = op_model.name diff --git a/other_langs/tests_js/lambda.test.js b/other_langs/tests_js/lambda.test.js new file mode 100644 index 000000000000..af6ec80bff4f --- /dev/null +++ b/other_langs/tests_js/lambda.test.js @@ -0,0 +1,8 @@ +import { LambdaClient, ListFunctionsCommand } from '@aws-sdk/client-lambda' + +process.env['AWS_ACCESS_KEY_ID'] = 'test' +process.env['AWS_SECRET_ACCESS_KEY'] = 'test' + +const client_ = new LambdaClient({ endpoint: 'http://localhost:5000', region: 'us-east-1'}); + +await client_.send(new ListFunctionsCommand()); diff --git a/other_langs/tests_js/package.json b/other_langs/tests_js/package.json index 242dc288f7af..591798433555 100644 --- a/other_langs/tests_js/package.json +++ b/other_langs/tests_js/package.json @@ -3,9 +3,10 @@ "version": "1.0.0", "main": "index.js", "dependencies": { - "@aws-sdk/client-ec2": "^3.32.0", - "@aws-sdk/client-rds": "^3.32.0", - "@aws-sdk/client-s3": "^3.32.0" + "@aws-sdk/client-ec2": "^3.749.0", + "@aws-sdk/client-lambda": "^3.749.0", + "@aws-sdk/client-rds": "^3.749.0", + "@aws-sdk/client-s3": "^3.749.0" }, "type": "module", "scripts": { From 0a72bfccb4a6341eba640471227e387478026a0c Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 15:07:59 -0800 Subject: [PATCH 067/103] RDS: Refactor DescribeDBClusters to match AWS parameter names --- moto/rds/models.py | 14 +++++++------- moto/rds/responses.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 95fff7b6573e..e271f4f5a621 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -2991,15 +2991,15 @@ def delete_db_cluster_snapshot( return self.cluster_snapshots.pop(db_snapshot_identifier) def describe_db_clusters( - self, cluster_identifier: Optional[str] = None, filters: Any = None + self, db_cluster_identifier: Optional[str] = None, filters: Any = None ) -> List[DBCluster]: clusters = self.clusters - if cluster_identifier: - filters = merge_filters(filters, {"db-cluster-id": [cluster_identifier]}) + if db_cluster_identifier: + filters = merge_filters(filters, {"db-cluster-id": [db_cluster_identifier]}) if filters: clusters = self._filter_resources(clusters, filters, DBCluster) - if cluster_identifier and not clusters: - raise DBClusterNotFoundError(cluster_identifier) + if db_cluster_identifier and not clusters: + raise DBClusterNotFoundError(db_cluster_identifier) return list(clusters.values()) # type: ignore def describe_db_cluster_snapshots( @@ -3332,7 +3332,7 @@ def create_global_cluster( if not re.match(ARN_PARTITION_REGEX + ":rds", source_db_cluster_identifier): raise InvalidParameterValue("Malformed db cluster arn dbci") source_cluster = self.describe_db_clusters( - cluster_identifier=source_db_cluster_identifier + db_cluster_identifier=source_db_cluster_identifier )[0] # We should not specify an engine at the same time, as we'll take it from the source cluster if engine is not None: @@ -3374,7 +3374,7 @@ def remove_from_global_cluster( try: global_cluster = self.global_clusters[global_cluster_identifier] cluster = self.describe_db_clusters( - cluster_identifier=db_cluster_identifier + db_cluster_identifier=db_cluster_identifier )[0] global_cluster.members.remove(cluster) return global_cluster diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 46e389a07b3c..e94dc264b0ce 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -421,7 +421,7 @@ def describe_db_clusters(self) -> TYPE_RESPONSE: filters = self.parameters.get("Filters", []) filter_dict = {f["Name"]: f["Values"] for f in filters} clusters = self.backend.describe_db_clusters( - cluster_identifier=_id, filters=filter_dict + db_cluster_identifier=_id, filters=filter_dict ) result = {"DBClusters": clusters} return self.serialize(result) From c6ccedae2a91ac3981709d27e6576918834739f7 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 15:10:40 -0800 Subject: [PATCH 068/103] RDS: Set `is_cluster_writer` attribute on DBCluster members --- moto/rds/models.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index e271f4f5a621..b4c0416dae53 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -504,7 +504,7 @@ def __init__( self.serverless_v2_scaling_configuration = kwargs.get( "serverless_v2_scaling_configuration" ) - self.cluster_members: List[str] = list() + self.cluster_members: List[DBInstance] = list() self.replication_source_identifier = kwargs.get("replication_source_identifier") self.read_replica_identifiers: List[str] = list() self.is_writer: bool = False @@ -686,8 +686,8 @@ def global_write_forwarding_requested(self) -> bool: def db_cluster_members(self) -> List[Dict[str, Any]]: # type: ignore[misc] members = [ { - "DBInstanceIdentifier": member, - "IsClusterWriter": True, + "DBInstanceIdentifier": member.db_instance_identifier, + "IsClusterWriter": member.is_cluster_writer, "DBClusterParameterGroupStatus": "in-sync", "PromotionTier": 1, } @@ -1457,6 +1457,7 @@ def __init__(self, db_cluster_identifier: str, **kwargs: Any) -> None: super().__init__(db_cluster_identifier=db_cluster_identifier, **kwargs) self.cluster = self.backend.clusters[db_cluster_identifier] self.db_cluster_identifier = db_cluster_identifier + self.is_cluster_writer = True if not self.cluster.cluster_members else False @property def allocated_storage(self) -> int: @@ -2153,7 +2154,7 @@ def create_db_instance(self, db_kwargs: Dict[str, Any]) -> DBInstance: raise InvalidDBInstanceEngine( str(database.engine), str(cluster.engine) ) - cluster.cluster_members.append(database_id) + cluster.cluster_members.append(database) self.databases[database_id] = database database.add_event("DB_INSTANCE_CREATE") database.save_automated_backup() @@ -2527,7 +2528,7 @@ def delete_db_instance( primary.remove_replica(database) if database.db_cluster_identifier in self.clusters: self.clusters[database.db_cluster_identifier].cluster_members.remove( - db_instance_identifier + database ) automated_snapshots = self.describe_db_snapshots( db_instance_identifier, From a97308d121f192183eb11805dff1bacb030890e6 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 15:11:39 -0800 Subject: [PATCH 069/103] RDS: Refactor DBSubnetGroup attribute into property on DBCluster/DBInstance --- moto/rds/models.py | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index b4c0416dae53..c91adb17868a 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -467,7 +467,7 @@ def __init__( "default.neptune1.3" if self.engine == "neptune" else "default.aurora8.0" ) self.parameter_group = db_cluster_parameter_group_name or default_pg - self.db_subnet_group = db_subnet_group_name or "default" + self.db_subnet_group_name = db_subnet_group_name or "default" self.url_identifier = "".join( random.choice(string.ascii_lowercase + string.digits) for _ in range(12) ) @@ -543,6 +543,14 @@ def __init__( ) self.license_model = license_model + @property + def db_subnet_group(self) -> str: + # Despite the documentation saying this attribute returns: + # "Information about the subnet group associated with the DB cluster, + # including the name, description, and subnets in the subnet group." + # It just returns the name... + return self.db_subnet_group_name + @property def resource_id(self) -> str: return self.db_cluster_identifier @@ -949,11 +957,6 @@ def __init__( self.availability_zone = f"{self.region}a" self.multi_az = multi_az self.db_subnet_group_name = db_subnet_group_name - self.db_subnet_group = None - if self.db_subnet_group_name: - self.db_subnet_group = rds_backends[self.account_id][ - self.region - ].describe_db_subnet_groups(self.db_subnet_group_name)[0] self.db_security_groups = db_security_groups or [] self.vpc_security_group_ids = vpc_security_group_ids or [] if not self.vpc_security_group_ids: @@ -1034,6 +1037,18 @@ def __init__( default_option_group_name = self.default_option_groups[self.engine] self.option_group_name = option_group_name or default_option_group_name + @property + def db_subnet_group_name(self) -> Optional[str]: + return self._db_subnet_group_name + + @db_subnet_group_name.setter + def db_subnet_group_name(self, value: Optional[str]) -> None: + self._db_subnet_group_name = value + if self._db_subnet_group_name is not None: + self.db_subnet_group = rds_backends[self.account_id][ + self.region + ].describe_db_subnet_groups(self._db_subnet_group_name)[0] + @property def allocated_storage(self) -> int: return self._allocated_storage From 8f590fd140489c6f1f12b42bad5ed3a882a9802e Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 15:13:01 -0800 Subject: [PATCH 070/103] RDS: Use copy instead of deepcopy deepcopy fails under certain DBCluster configurations Long term, we'll provide a `__copy__` method on the class or just refactor this out completely. --- moto/rds/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index c91adb17868a..975f982adaed 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -3094,7 +3094,7 @@ def restore_db_cluster_from_snapshot( db_cluster_identifier=None, db_snapshot_identifier=from_snapshot_id )[0] original_cluster = snapshot.cluster - new_cluster_props = copy.deepcopy(original_cluster.get_cfg()) + new_cluster_props = copy.copy(original_cluster.get_cfg()) for key, value in overrides.items(): if value: new_cluster_props[key] = value From cfff33a3bd4e2b2d6fef70dd5be555334c9168a9 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 15:53:38 -0800 Subject: [PATCH 071/103] RDS: Implement RestoreDBClusterToPointInTime --- moto/rds/models.py | 28 ++++++++++++++++++++++++++++ moto/rds/responses.py | 5 +++++ tests/test_rds/test_rds_clusters.py | 22 ++++++++++++++++++++++ 3 files changed, 55 insertions(+) diff --git a/moto/rds/models.py b/moto/rds/models.py index 975f982adaed..6b288cc776ad 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1,6 +1,7 @@ from __future__ import annotations import copy +import datetime import math import os import re @@ -2478,6 +2479,33 @@ def restore_db_instance_to_point_in_time( return self.create_db_instance(new_instance_props) + def restore_db_cluster_to_point_in_time( + self, + db_cluster_identifier: str, + source_db_cluster_identifier: str, + restore_type: str = "full-copy", + restore_to_time: Optional[datetime.datetime] = None, + use_latest_restorable_time: bool = False, + **overrides: Dict[str, Any], + ) -> DBCluster: + db_cluster = self.describe_db_clusters( + db_cluster_identifier=source_db_cluster_identifier + )[0] + new_cluster_props = {} + for key, value in db_cluster.__dict__.items(): + if key.startswith("_"): + key = key[1:] + # Remove backend / db subnet group as they cannot be copied + # and are not used in the restored instance. + if key in ("backend", "db_subnet_group", "vpc_security_group_ids"): + continue + new_cluster_props[key] = copy.copy(value) + for key, value in overrides.items(): + if value: + new_cluster_props[key] = value + new_cluster_props["db_cluster_identifier"] = db_cluster_identifier + return self.create_db_cluster(new_cluster_props) + def stop_db_instance( self, db_instance_identifier: str, db_snapshot_identifier: Optional[str] = None ) -> DBInstance: diff --git a/moto/rds/responses.py b/moto/rds/responses.py index e94dc264b0ce..b9b40fcdeb1c 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -204,6 +204,11 @@ def restore_db_instance_to_point_in_time(self) -> TYPE_RESPONSE: result = {"DBInstance": new_instance} return self.serialize(result) + def restore_db_cluster_to_point_in_time(self) -> TYPE_RESPONSE: + cluster = self.backend.restore_db_cluster_to_point_in_time(**self.parameters) + result = {"DBCluster": cluster} + return self.serialize(result) + def list_tags_for_resource(self) -> TYPE_RESPONSE: arn = self.parameters.get("ResourceName") tags = self.backend.list_tags_for_resource(arn) diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 5736895e5d11..a40a1b0125aa 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -1668,3 +1668,25 @@ def test_copy_db_cluster_snapshot_tags_in_request(client): ResourceName=copied_snapshot["DBClusterSnapshotArn"] )["TagList"] assert tag_list == new_snapshot_tags + + +@mock_aws +def test_restore_db_instance_to_point_in_time(client): + details_source = client.create_db_cluster( + DBClusterIdentifier="cluster-1", + DatabaseName="db_name", + Engine="aurora-postgresql", + MasterUsername="root", + MasterUserPassword="password", + Port=1234, + CopyTagsToSnapshot=True, + )["DBCluster"] + details_target = client.restore_db_cluster_to_point_in_time( + SourceDBClusterIdentifier="cluster-1", + DBClusterIdentifier="pit-id", + UseLatestRestorableTime=True, + )["DBCluster"] + assert details_target["CopyTagsToSnapshot"] == details_source["CopyTagsToSnapshot"] + assert details_target["DatabaseName"] == details_source["DatabaseName"] + assert details_target["Port"] == details_source["Port"] + assert details_target["MasterUsername"] == details_source["MasterUsername"] From 56ca45b2b43d26864c1f4b2308d31c68b3c8361f Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 19:52:11 -0800 Subject: [PATCH 072/103] RDS: Implement FailoverDBCluster endpoint --- moto/rds/models.py | 73 ++++++++++++++++++++++++----- moto/rds/responses.py | 5 ++ tests/test_rds/test_rds_clusters.py | 38 +++++++++++++++ 3 files changed, 104 insertions(+), 12 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 6b288cc776ad..b1b16ed82eeb 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -505,7 +505,6 @@ def __init__( self.serverless_v2_scaling_configuration = kwargs.get( "serverless_v2_scaling_configuration" ) - self.cluster_members: List[DBInstance] = list() self.replication_source_identifier = kwargs.get("replication_source_identifier") self.read_replica_identifiers: List[str] = list() self.is_writer: bool = False @@ -652,6 +651,44 @@ def status(self) -> str: def status(self, value: str) -> None: self._status = value + @property + def _members(self) -> List[DBInstanceClustered]: + return [ + db_instance + for db_instance in self.backend.databases.values() + if isinstance(db_instance, DBInstanceClustered) + and db_instance.db_cluster_identifier == self.resource_id + ] + + @property + def writer(self) -> Optional[DBInstanceClustered]: + return next( + ( + db_instance + for db_instance in self._members + if db_instance.is_cluster_writer + ), + None, + ) + + @writer.setter + def writer(self, db_instance: DBInstanceClustered) -> None: + db_instance.is_cluster_writer = True + + @property + def members(self) -> List[DBInstanceClustered]: + self.designate_writer() + return self._members + + def designate_writer(self) -> None: + if self.writer or not self._members: + return + if len(self._members) == 1: + self.writer = self._members[0] + else: + promotion_list = sorted(self._members, key=lambda x: x.promotion_tier) + self.writer = promotion_list[0] + @property def associated_roles(self) -> List[Dict[str, Any]]: # type: ignore[misc] return [] @@ -698,9 +735,9 @@ def db_cluster_members(self) -> List[Dict[str, Any]]: # type: ignore[misc] "DBInstanceIdentifier": member.db_instance_identifier, "IsClusterWriter": member.is_cluster_writer, "DBClusterParameterGroupStatus": "in-sync", - "PromotionTier": 1, + "PromotionTier": member.promotion_tier, } - for member in self.cluster_members + for member in self.members ] return members @@ -756,6 +793,11 @@ def default_allocated_storage(engine: str, storage_type: str) -> int: "postgres": {"gp2": 20, "io1": 100, "standard": 5}, }[engine][storage_type] + def failover(self, target_instance: DBInstanceClustered) -> None: + if self.writer is not None: + self.writer.is_cluster_writer = False + self.writer = target_instance + def save_automated_backup(self) -> None: time_stamp = utcnow().strftime("%Y-%m-%d-%H-%M") snapshot_id = f"rds:{self.db_cluster_identifier}-{time_stamp}" @@ -1469,11 +1511,14 @@ def save_automated_backup(self) -> None: class DBInstanceClustered(DBInstance): - def __init__(self, db_cluster_identifier: str, **kwargs: Any) -> None: + def __init__( + self, db_cluster_identifier: str, promotion_tier: int = 1, **kwargs: Any + ) -> None: super().__init__(db_cluster_identifier=db_cluster_identifier, **kwargs) self.cluster = self.backend.clusters[db_cluster_identifier] - self.db_cluster_identifier = db_cluster_identifier - self.is_cluster_writer = True if not self.cluster.cluster_members else False + self.db_cluster_identifier: str = db_cluster_identifier + self.is_cluster_writer = True if not self.cluster.members else False + self.promotion_tier = promotion_tier @property def allocated_storage(self) -> int: @@ -2170,7 +2215,6 @@ def create_db_instance(self, db_kwargs: Dict[str, Any]) -> DBInstance: raise InvalidDBInstanceEngine( str(database.engine), str(cluster.engine) ) - cluster.cluster_members.append(database) self.databases[database_id] = database database.add_event("DB_INSTANCE_CREATE") database.save_automated_backup() @@ -2506,6 +2550,15 @@ def restore_db_cluster_to_point_in_time( new_cluster_props["db_cluster_identifier"] = db_cluster_identifier return self.create_db_cluster(new_cluster_props) + def failover_db_cluster( + self, db_cluster_identifier: str, target_db_instance_identifier: str + ) -> DBCluster: + cluster = self.clusters[db_cluster_identifier] + instance = self.databases[target_db_instance_identifier] + assert isinstance(instance, DBInstanceClustered) + cluster.failover(instance) + return cluster + def stop_db_instance( self, db_instance_identifier: str, db_snapshot_identifier: Optional[str] = None ) -> DBInstance: @@ -2569,10 +2622,6 @@ def delete_db_instance( if database.is_replica: primary = self.find_db_from_id(database.source_db_instance_identifier) # type: ignore primary.remove_replica(database) - if database.db_cluster_identifier in self.clusters: - self.clusters[database.db_cluster_identifier].cluster_members.remove( - database - ) automated_snapshots = self.describe_db_snapshots( db_instance_identifier, db_snapshot_identifier=None, @@ -3089,7 +3138,7 @@ def delete_db_cluster( raise InvalidParameterCombination( "Cannot delete protected Cluster, please disable deletion protection and try again." ) - if cluster.cluster_members: + if cluster.members: raise DBClusterToBeDeletedHasActiveMembers() global_id = cluster.global_cluster_identifier or "" if global_id in self.global_clusters: diff --git a/moto/rds/responses.py b/moto/rds/responses.py index b9b40fcdeb1c..2ea990ad06cd 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -209,6 +209,11 @@ def restore_db_cluster_to_point_in_time(self) -> TYPE_RESPONSE: result = {"DBCluster": cluster} return self.serialize(result) + def failover_db_cluster(self) -> TYPE_RESPONSE: + cluster = self.backend.failover_db_cluster(**self.parameters) + result = {"DBCluster": cluster} + return self.serialize(result) + def list_tags_for_resource(self) -> TYPE_RESPONSE: arn = self.parameters.get("ResourceName") tags = self.backend.list_tags_for_resource(arn) diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index a40a1b0125aa..f62a9c842f20 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -1690,3 +1690,41 @@ def test_restore_db_instance_to_point_in_time(client): assert details_target["DatabaseName"] == details_source["DatabaseName"] assert details_target["Port"] == details_source["Port"] assert details_target["MasterUsername"] == details_source["MasterUsername"] + + +@mock_aws +def test_failover_db_cluster(client): + cluster_identifier = "cluster-1" + create_db_cluster( + DBClusterIdentifier=cluster_identifier, + Engine="aurora-postgresql", + ) + create_db_instance( + DBInstanceIdentifier="test-instance-primary", + Engine="aurora-postgresql", + DBClusterIdentifier=cluster_identifier, + ) + create_db_instance( + DBInstanceIdentifier="test-instance-replica", + Engine="aurora-postgresql", + DBClusterIdentifier=cluster_identifier, + ) + cluster = client.describe_db_clusters(DBClusterIdentifier=cluster_identifier)[ + "DBClusters" + ][0] + cluster_members = cluster["DBClusterMembers"] + assert len(cluster_members) == 2 + assert cluster_members[0]["DBInstanceIdentifier"] == "test-instance-primary" + assert cluster_members[0]["IsClusterWriter"] is True + assert cluster_members[1]["DBInstanceIdentifier"] == "test-instance-replica" + assert cluster_members[1]["IsClusterWriter"] is False + cluster_failed_over = client.failover_db_cluster( + DBClusterIdentifier=cluster_identifier, + TargetDBInstanceIdentifier="test-instance-replica", + )["DBCluster"] + cluster_members = cluster_failed_over["DBClusterMembers"] + assert len(cluster_members) == 2 + assert cluster_members[0]["DBInstanceIdentifier"] == "test-instance-primary" + assert cluster_members[0]["IsClusterWriter"] is False + assert cluster_members[1]["DBInstanceIdentifier"] == "test-instance-replica" + assert cluster_members[1]["IsClusterWriter"] is True From 19c96fa156e0fc3c3f5466c6d23cdb5bed9a535b Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sun, 16 Feb 2025 23:37:53 -0800 Subject: [PATCH 073/103] RDS: Update DBCluster MultiAZ Property The documentation clearly states that a DBCluster is considered multi-az if it has DBInstances in multiple availability zones. I'm not sure if the existing check here was correct, but it is covered by tests that I don't want to break, so I'm just adding a new conditional for determining multi-az status. --- moto/rds/models.py | 16 ++++++++----- tests/test_rds/test_rds_clusters.py | 36 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 6 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index b1b16ed82eeb..37f7f66e11d8 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -557,10 +557,15 @@ def resource_id(self) -> str: @property def multi_az(self) -> bool: - return ( - len(self.read_replica_identifiers) > 0 - or self.replication_source_identifier is not None + availability_zones = list( + set([instance.availability_zone for instance in self._members]) ) + multi_az_conditions = [ + (len(self.read_replica_identifiers) > 0), + (self.replication_source_identifier is not None), + (len(availability_zones) > 1), + ] + return any(multi_az_conditions) @property def db_cluster_arn(self) -> str: @@ -964,6 +969,7 @@ def __init__( option_group_name: Optional[str] = None, enable_cloudwatch_logs_exports: Optional[List[str]] = None, ca_certificate_identifier: str = "rds-ca-default", + availability_zone: Optional[str] = None, **kwargs: Any, ) -> None: super().__init__(backend) @@ -995,9 +1001,7 @@ def __init__( self.instance_create_time = self.created self.publicly_accessible = publicly_accessible self.copy_tags_to_snapshot = copy_tags_to_snapshot - self.availability_zone = kwargs.get("availability_zone") - if not self.availability_zone: - self.availability_zone = f"{self.region}a" + self.availability_zone: str = availability_zone or f"{self.region}a" self.multi_az = multi_az self.db_subnet_group_name = db_subnet_group_name self.db_security_groups = db_security_groups or [] diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index f62a9c842f20..b23610054c45 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -1067,6 +1067,42 @@ def test_replicate_cluster(): assert replica["MultiAZ"] is False +@mock_aws +def test_db_cluster_multi_az(client): + ec2 = boto3.client("ec2", region_name=DEFAULT_REGION) + resp = ec2.describe_availability_zones() + zones = [z["ZoneName"] for z in resp["AvailabilityZones"]] + client.create_db_cluster( + DBClusterIdentifier="cluster-1", + DatabaseName="db_name", + Engine="aurora-postgresql", + MasterUsername="root", + MasterUserPassword="password", + ) + client.create_db_instance( + DBInstanceIdentifier="test-zone-a", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + AvailabilityZone=zones[0], + ) + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1")[ + "DBClusters" + ][0] + assert cluster["MultiAZ"] is False + client.create_db_instance( + DBInstanceIdentifier="test-zone-b", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + AvailabilityZone=zones[1], + ) + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1")[ + "DBClusters" + ][0] + assert cluster["MultiAZ"] is True + + @mock_aws def test_createdb_instance_engine_mismatch_fail(client): # Setup From dba5092ac448931691193dea963544a9aced8c3a Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Mon, 17 Feb 2025 00:04:01 -0800 Subject: [PATCH 074/103] RDS: Improve Code Coverage * add tests * remove dead code * refactor dead pass statements to raise NotImplemented --- moto/rds/models.py | 121 ++++++++-------------------- moto/rds/responses.py | 12 +-- tests/test_rds/test_rds_clusters.py | 105 ++++++++++++++++++------ 3 files changed, 118 insertions(+), 120 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 37f7f66e11d8..e3363a34fa31 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -127,7 +127,7 @@ class ResourceWithEvents(Protocol): @property def resource_id(self) -> str: - pass + raise NotImplementedError() class EventMixin: @@ -373,7 +373,7 @@ def __init__( backend: RDSBackend, db_cluster_identifier: str, engine: str, - allocated_storage: int = 1, + allocated_storage: Optional[int] = None, engine_version: Optional[str] = None, master_username: Optional[str] = None, master_user_password: Optional[str] = None, @@ -428,11 +428,12 @@ def __init__( self.storage_type = kwargs.get("storage_type") if self.storage_type is None: self.storage_type = DBCluster.default_storage_type(iops=self.iops) - self.allocated_storage = allocated_storage - if self.allocated_storage is None: - self.allocated_storage = DBCluster.default_allocated_storage( + self.allocated_storage = ( + allocated_storage + or DBCluster.default_allocated_storage( engine=self.engine, storage_type=self.storage_type ) + ) self.master_username = master_username self.character_set_name = character_set_name self.global_cluster_identifier = kwargs.get("global_cluster_identifier") @@ -534,8 +535,6 @@ def __init__( self.backtrack_window = 0 self.iam_auth = kwargs.get("enable_iam_database_authentication", False) - if self.iam_auth is None: - self.iam_auth = False if self.iam_auth: if not self.engine.startswith("aurora-"): raise InvalidParameterCombination( @@ -577,7 +576,7 @@ def latest_restorable_time(self) -> str: @property def master_user_password(self) -> str: - return self._master_user_password + raise NotImplementedError("Password not retrievable.") @master_user_password.setter def master_user_password(self, val: str) -> None: @@ -688,11 +687,8 @@ def members(self) -> List[DBInstanceClustered]: def designate_writer(self) -> None: if self.writer or not self._members: return - if len(self._members) == 1: - self.writer = self._members[0] - else: - promotion_list = sorted(self._members, key=lambda x: x.promotion_tier) - self.writer = promotion_list[0] + promotion_list = sorted(self._members, key=lambda x: x.promotion_tier) + self.writer = promotion_list[0] @property def associated_roles(self) -> List[Dict[str, Any]]: # type: ignore[misc] @@ -782,10 +778,7 @@ def default_port(engine: str) -> int: @staticmethod def default_storage_type(iops: Any) -> str: # type: ignore[misc] - if iops is None: - return "gp2" - else: - return "io1" + return "gp2" if iops is None else "io1" @staticmethod def default_allocated_storage(engine: str, storage_type: str) -> int: @@ -900,10 +893,6 @@ def __init__(self, name: str) -> None: self.last_written = int(unix_time()) self.size = 123 - @property - def resource_id(self) -> str: - return f"{self.log_file_name}-{self.last_written}-{self.size}" - class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): BOTOCORE_MODEL = "DBInstance" @@ -920,15 +909,15 @@ class DBInstance(EventMixin, CloudFormationModel, RDSBaseModel): default_engine_versions = { "MySQL": "5.6.21", "mysql": "5.6.21", - "oracle-se2": "11.2.0.4.v3", - "oracle-se1": "11.2.0.4.v3", - "oracle-se": "11.2.0.4.v3", "oracle-ee": "11.2.0.4.v3", + "oracle-se": "11.2.0.4.v3", + "oracle-se1": "11.2.0.4.v3", + "oracle-se2": "11.2.0.4.v3", + "postgres": "9.3.3", "sqlserver-ee": "11.00.2100.60.v1", - "sqlserver-se": "11.00.2100.60.v1", "sqlserver-ex": "11.00.2100.60.v1", + "sqlserver-se": "11.00.2100.60.v1", "sqlserver-web": "11.00.2100.60.v1", - "postgres": "9.3.3", } event_source_type = "db-instance" resource_type = "db" @@ -1024,8 +1013,6 @@ def __init__( self.enable_iam_database_authentication = kwargs.get( "enable_iam_database_authentication", False ) - if self.enable_iam_database_authentication is None: - self.enable_iam_database_authentication = False self.dbi_resource_id = "db-M5ENSHXFPU6XHZ4G4ZEI5QIO2U" self.tags = tags or [] self.deletion_protection = deletion_protection @@ -1069,24 +1056,17 @@ def __init__( not in rds_backends[self.account_id][self.region].option_groups ): raise OptionGroupNotFoundFaultError(option_group_name) - self.default_option_groups = { - "MySQL": "default.mysql5.6", - "mysql": "default.mysql5.6", - "postgres": "default.postgres9.3", - } - if self.engine and self.engine_version: - semantic = self.engine_version.split(".") - option_suffix = semantic[0] - if len(semantic) > 1: - option_suffix = option_suffix + "-" + semantic[1] - default_option_group_name = f"default:{self.engine}-{option_suffix}" - else: - default_option_group_name = self.default_option_groups[self.engine] + assert self.engine and self.engine_version + semantic = self.engine_version.split(".") + option_suffix = semantic[0] + if len(semantic) > 1: + option_suffix = option_suffix + "-" + semantic[1] + default_option_group_name = f"default:{self.engine}-{option_suffix}" self.option_group_name = option_group_name or default_option_group_name @property def db_subnet_group_name(self) -> Optional[str]: - return self._db_subnet_group_name + raise NotImplementedError("write only property") @db_subnet_group_name.setter def db_subnet_group_name(self, value: Optional[str]) -> None: @@ -1162,7 +1142,7 @@ def master_username(self, value: Optional[str]) -> None: @property def master_user_password(self) -> Optional[str]: - return self._master_user_password + raise NotImplementedError("Password is not retrievable.") @master_user_password.setter def master_user_password(self, value: Optional[str]) -> None: @@ -1261,9 +1241,7 @@ def is_default_parameter_group(self, param_group_name: str) -> bool: return param_group_name.startswith(f"default.{self.engine.lower()}") # type: ignore def default_db_parameter_group_details(self) -> Tuple[str, str]: - if not self.engine_version: - return "", "" - + assert self.engine and self.engine_version minor_engine_version = ".".join(str(self.engine_version).rsplit(".")[:-1]) db_family = f"{self.engine.lower()}{minor_engine_version}" # type: ignore @@ -1409,10 +1387,7 @@ def default_port(engine: str) -> int: @staticmethod def default_storage_type(iops: Any) -> str: # type: ignore[misc] - if iops is None: - return "gp2" - else: - return "io1" + return "gp2" if iops is None else "io1" @staticmethod def default_allocated_storage(engine: str, storage_type: str) -> int: @@ -1597,7 +1572,7 @@ def master_username(self, value: Optional[str]) -> None: @property def master_user_password(self) -> Optional[str]: - return self.cluster.master_user_password + raise NotImplementedError("Password is not retrievable.") @master_user_password.setter def master_user_password(self, value: Optional[str]) -> None: @@ -1680,10 +1655,10 @@ def __init__( self.original_snapshot_create_time = original_created_at or self.created # If tags are provided at creation, AWS does *not* copy tags from the # db_cluster (even if copy_tags_to_snapshot is True). - if tags is not None: + if tags: self.tags = tags - elif database.copy_tags_to_snapshot: - self.tags = database.tags or [] + elif database.copy_tags_to_snapshot and database.tags: + self.tags = database.tags else: self.tags = [] # Database attributes are captured at the time the snapshot is taken. @@ -1751,8 +1726,6 @@ def __init__(self, backend: RDSBackend, subscription_name: str, **kwargs: Any): self.event_categories = kwargs.get("event_categories", []) self.source_ids = kwargs.get("source_ids", []) self.enabled = kwargs.get("enabled", False) - if self.enabled is None: - self.enabled = False self.tags = kwargs.get("tags", []) self.status = "active" self.created_at = iso_8601_datetime_with_milliseconds() @@ -2119,14 +2092,11 @@ def _validate_kms_key(self, kms_key_id: str) -> str: def get_backend( self, service: Literal["kms"] | Literal["rds"], - region: Optional[str] = None, + region: str, account_id: Optional[str] = None, ) -> KmsBackend | RDSBackend: from moto.backends import get_backend as get_moto_backend - if region is None: - region = self.region_name - if account_id is None: account_id = self.account_id @@ -2238,19 +2208,16 @@ def create_auto_snapshot( def create_db_snapshot( self, - db_instance: Union[str, DBInstance], + db_instance_identifier: str, db_snapshot_identifier: str, snapshot_type: str = "manual", tags: Optional[List[Dict[str, str]]] = None, original_created_at: Optional[str] = None, kms_key_id: Optional[str] = None, ) -> DBSnapshot: - if isinstance(db_instance, str): - database = self.databases.get(db_instance) - if not database: - raise DBInstanceNotFoundError(db_instance) - else: - database = db_instance + database = self.databases.get(db_instance_identifier) + if not database: + raise DBInstanceNotFoundError(db_instance_identifier) if db_snapshot_identifier in self.database_snapshots: raise DBSnapshotAlreadyExistsError(db_snapshot_identifier) @@ -2258,10 +2225,6 @@ def create_db_snapshot( os.environ.get("MOTO_RDS_SNAPSHOT_LIMIT", "100") ): raise SnapshotQuotaExceededFault() - if tags is None: - tags = list() - if database.copy_tags_to_snapshot and not tags: - tags = database.get_tags() snapshot = DBSnapshot( self, database, @@ -2549,8 +2512,7 @@ def restore_db_cluster_to_point_in_time( continue new_cluster_props[key] = copy.copy(value) for key, value in overrides.items(): - if value: - new_cluster_props[key] = value + new_cluster_props[key] = value new_cluster_props["db_cluster_identifier"] = db_cluster_identifier return self.create_db_cluster(new_cluster_props) @@ -3327,15 +3289,6 @@ def _filter_resources(resources: Any, filters: Any, resource_class: Any) -> Any: except ValueError as e: raise InvalidParameterCombination(str(e)) - @staticmethod - def _merge_tags( # type: ignore[misc] - old_tags: List[Dict[str, Any]], new_tags: List[Dict[str, Any]] - ) -> List[Dict[str, Any]]: - tags_dict = dict() - tags_dict.update({d["Key"]: d["Value"] for d in old_tags}) - tags_dict.update({d["Key"]: d["Value"] for d in new_tags}) - return [{"Key": k, "Value": v} for k, v in tags_dict.items()] - @staticmethod def _validate_db_identifier(db_identifier: str) -> None: # https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html @@ -3888,9 +3841,5 @@ def __init__(self, event_type: str, resource: ResourceWithEvents) -> None: self.source_arn = resource.arn self.date = utcnow() - @property - def resource_id(self) -> str: - return f"{self.source_identifier}-{self.source_type}-{self.date}" - rds_backends = BackendDict(RDSBackend, "rds") diff --git a/moto/rds/responses.py b/moto/rds/responses.py index 2ea990ad06cd..8c5463c15efd 100644 --- a/moto/rds/responses.py +++ b/moto/rds/responses.py @@ -137,17 +137,11 @@ def reboot_db_instance(self) -> TYPE_RESPONSE: return self.serialize(result) def create_db_snapshot(self) -> TYPE_RESPONSE: - db_instance_identifier = self.parameters.get("DBInstanceIdentifier") - db_snapshot_identifier = self.parameters.get("DBSnapshotIdentifier") - tags = self.parameters.get("Tags", []) self.backend.validate_db_snapshot_identifier( - db_snapshot_identifier, parameter_name="DBSnapshotIdentifier" - ) - snapshot = self.backend.create_db_snapshot( - db_instance_identifier, - db_snapshot_identifier, - tags=tags, + self.parameters["DBSnapshotIdentifier"], + parameter_name="DBSnapshotIdentifier", ) + snapshot = self.backend.create_db_snapshot(**self.parameters) result = {"DBSnapshot": snapshot} return self.serialize(result) diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index b23610054c45..68b937da3a70 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -404,39 +404,46 @@ def test_modify_db_cluster_serverless_v2_scaling_configuration(client): } +@pytest.mark.parametrize( + "attr_info", + [ + ("BackupRetentionPeriod", 15, 32), + ("EngineVersion", "9.6", "10.2"), + ], + ids=[ + "BackupRetentionPeriod", + "EngineVersion", + ], +) @mock_aws -def test_modify_db_cluster_engine_version(client): - cluster_id = create_db_cluster( +def test_db_instance_in_cluster_gets_attributes_from_cluster(client, attr_info): + attribute, initial_value, modified_value = attr_info + cluster = client.create_db_cluster( DBClusterIdentifier="cluster-id", Engine="aurora-postgresql", - EngineVersion="9.6", - ) - cluster = client.describe_db_clusters(DBClusterIdentifier=cluster_id)["DBClusters"][ - 0 - ] - assert cluster["Engine"] == "aurora-postgresql" - assert cluster["EngineVersion"] == "9.6" + MasterUsername="root", + MasterUserPassword="", + **{attribute: initial_value}, + )["DBCluster"] instance = create_db_instance( DBInstanceIdentifier="clustered-instance", DBClusterIdentifier=cluster["DBClusterIdentifier"], Engine="aurora-postgresql", ) - assert instance["Engine"] == cluster["Engine"] - assert instance["EngineVersion"] == cluster["EngineVersion"] - client.modify_db_cluster( - DBClusterIdentifier=cluster_id, - EngineVersion="10.2", - ) - cluster = client.describe_db_clusters(DBClusterIdentifier=cluster_id)["DBClusters"][ - 0 - ] - assert cluster["Engine"] == "aurora-postgresql" - assert cluster["EngineVersion"] == "10.2" + assert instance["AllocatedStorage"] == cluster["AllocatedStorage"] + assert instance["MasterUsername"] == cluster["MasterUsername"] + assert instance["PreferredBackupWindow"] == cluster["PreferredBackupWindow"] + assert instance["StorageEncrypted"] == cluster["StorageEncrypted"] + assert instance[attribute] == cluster[attribute] == initial_value + cluster = client.modify_db_cluster( + DBClusterIdentifier=cluster["DBClusterIdentifier"], + ApplyImmediately=True, + **{attribute: modified_value}, + )["DBCluster"] instance = client.describe_db_instances( DBInstanceIdentifier=instance["DBInstanceIdentifier"] )["DBInstances"][0] - assert instance["Engine"] == cluster["Engine"] - assert instance["EngineVersion"] == cluster["EngineVersion"] + assert instance[attribute] == cluster[attribute] == modified_value @mock_aws @@ -1707,7 +1714,7 @@ def test_copy_db_cluster_snapshot_tags_in_request(client): @mock_aws -def test_restore_db_instance_to_point_in_time(client): +def test_restore_db_cluster_to_point_in_time(client): details_source = client.create_db_cluster( DBClusterIdentifier="cluster-1", DatabaseName="db_name", @@ -1721,11 +1728,19 @@ def test_restore_db_instance_to_point_in_time(client): SourceDBClusterIdentifier="cluster-1", DBClusterIdentifier="pit-id", UseLatestRestorableTime=True, + # Overrides + DeletionProtection=True, + CopyTagsToSnapshot=False, + Port=4321, )["DBCluster"] - assert details_target["CopyTagsToSnapshot"] == details_source["CopyTagsToSnapshot"] + assert details_target["CopyTagsToSnapshot"] != details_source["CopyTagsToSnapshot"] assert details_target["DatabaseName"] == details_source["DatabaseName"] - assert details_target["Port"] == details_source["Port"] + assert details_target["Port"] != details_source["Port"] assert details_target["MasterUsername"] == details_source["MasterUsername"] + # Overrides + assert details_target["CopyTagsToSnapshot"] is False + assert details_target["DeletionProtection"] is True + assert details_target["Port"] == 4321 @mock_aws @@ -1764,3 +1779,43 @@ def test_failover_db_cluster(client): assert cluster_members[0]["IsClusterWriter"] is False assert cluster_members[1]["DBInstanceIdentifier"] == "test-instance-replica" assert cluster_members[1]["IsClusterWriter"] is True + + +@mock_aws +def test_db_cluster_writer_promotion(client): + client.create_db_cluster( + DBClusterIdentifier="cluster-1", + DatabaseName="db_name", + Engine="aurora-postgresql", + MasterUsername="root", + MasterUserPassword="password", + ) + for i in range(3): + client.create_db_instance( + DBInstanceIdentifier=f"test-instance-{i}", + DBInstanceClass="db.m1.small", + Engine="aurora-postgresql", + DBClusterIdentifier="cluster-1", + PromotionTier=15 - i, + ) + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1")[ + "DBClusters" + ][0] + assert len(cluster["DBClusterMembers"]) == 3 + writer = next( + i["DBInstanceIdentifier"] + for i in cluster["DBClusterMembers"] + if i["IsClusterWriter"] + ) + assert writer == "test-instance-0" + client.delete_db_instance(DBInstanceIdentifier="test-instance-0") + cluster = client.describe_db_clusters(DBClusterIdentifier="cluster-1")[ + "DBClusters" + ][0] + assert len(cluster["DBClusterMembers"]) == 2 + writer = next( + i["DBInstanceIdentifier"] + for i in cluster["DBClusterMembers"] + if i["IsClusterWriter"] + ) + assert writer == "test-instance-2" From 1ea5163e7f19c6fda93e583c503612e86c6bfd63 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:06:41 +0100 Subject: [PATCH 075/103] Lambda: Determine Lambda image deterministically (#8603) --- moto/awslambda/models.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/moto/awslambda/models.py b/moto/awslambda/models.py index de8fc1f13e9d..b51676126112 100644 --- a/moto/awslambda/models.py +++ b/moto/awslambda/models.py @@ -1023,13 +1023,11 @@ def _invoke_lambda(self, event: Optional[str] = None) -> Tuple[str, bool, str]: # - lambci/lambda (the repo with older/outdated AWSLambda images # # We'll cycle through all of them - when we find the repo that contains our image, we use it - image_repos = set( - [ - settings.moto_lambda_image(), - "mlupin/docker-lambda", - "lambci/lambda", - ] - ) + image_repos = { # dict maintains insertion order + settings.moto_lambda_image(): None, + "mlupin/docker-lambda": None, + "lambci/lambda": None, + } for image_repo in image_repos: image_ref = ( image_repo From 8864c79be0586725cad9175efe0b6fd784b59260 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Mon, 17 Feb 2025 14:48:52 -0800 Subject: [PATCH 076/103] RDS: Increase Test Coverage Add/Modify tests to cover various exceptions. --- tests/test_rds/test_rds.py | 51 ++++++++++++++++++++++++++--- tests/test_rds/test_rds_clusters.py | 39 ++++++++++++++++++++++ 2 files changed, 86 insertions(+), 4 deletions(-) diff --git a/tests/test_rds/test_rds.py b/tests/test_rds/test_rds.py index 7ccfcb99c553..5763cc82208e 100644 --- a/tests/test_rds/test_rds.py +++ b/tests/test_rds/test_rds.py @@ -1060,11 +1060,11 @@ def test_delete_db_snapshot(client): client.create_db_snapshot( DBInstanceIdentifier="db-primary-1", DBSnapshotIdentifier="snapshot-1" ) - - client.describe_db_snapshots(DBSnapshotIdentifier="snapshot-1")["DBSnapshots"][0] client.delete_db_snapshot(DBSnapshotIdentifier="snapshot-1") - with pytest.raises(ClientError): - client.describe_db_snapshots(DBSnapshotIdentifier="snapshot-1") + with pytest.raises(ClientError) as exc: + client.delete_db_snapshot(DBSnapshotIdentifier="snapshot-1") + err = exc.value.response["Error"] + assert err["Code"] == "DBSnapshotNotFound" @pytest.mark.parametrize( @@ -3340,6 +3340,49 @@ def test_copy_db_snapshot_fails_when_limit_exceeded(client, monkeypatch): ) +@mock_aws +def test_copy_db_snapshot_fails_when_target_already_exists(client): + instance = create_db_instance() + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="snapshot-1", + ) + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="snapshot-2", + ) + with pytest.raises(ClientError) as exc: + client.copy_db_snapshot( + SourceDBSnapshotIdentifier="snapshot-2", + TargetDBSnapshotIdentifier="snapshot-1", + ) + err = exc.value.response["Error"] + assert err["Code"] == "DBSnapshotAlreadyExists" + assert "snapshot-1 already exists" in err["Message"] + + +@mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") +def test_create_db_snapshot_fails_when_limit_exceeded(client, monkeypatch): + instance = create_db_instance() + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="snapshot-1", + ) + with pytest.raises(ClientError) as exc: + monkeypatch.setenv("MOTO_RDS_SNAPSHOT_LIMIT", "1") + client.create_db_snapshot( + DBInstanceIdentifier=instance["DBInstanceIdentifier"], + DBSnapshotIdentifier="snapshot-2", + ) + err = exc.value.response["Error"] + assert err["Code"] == "SnapshotQuotaExceeded" + assert ( + err["Message"] + == "The request cannot be processed because it would exceed the maximum number of snapshots." + ) + + @mock_aws def test_copy_snapshot_fails_with_non_existent_kms_key_id(client): instance = create_db_instance() diff --git a/tests/test_rds/test_rds_clusters.py b/tests/test_rds/test_rds_clusters.py index 68b937da3a70..9f1885db89b3 100644 --- a/tests/test_rds/test_rds_clusters.py +++ b/tests/test_rds/test_rds_clusters.py @@ -814,6 +814,45 @@ def test_copy_db_cluster_snapshot_fails_for_existed_target_snapshot(client): ) +@mock_aws +def test_create_db_cluster_snapshot_fails_for_existing_snapshot_id(client): + db_cluster_identifier = create_db_cluster() + client.create_db_cluster_snapshot( + DBClusterIdentifier=db_cluster_identifier, + DBClusterSnapshotIdentifier="snapshot-1", + ) + with pytest.raises(ClientError) as exc: + client.create_db_cluster_snapshot( + DBClusterIdentifier=db_cluster_identifier, + DBClusterSnapshotIdentifier="snapshot-1", + ) + err = exc.value.response["Error"] + assert err["Code"] == "DBClusterSnapshotAlreadyExistsFault" + assert "snapshot-1 already exists." in err["Message"] + + +@mock_aws +@pytest.mark.skipif(settings.TEST_SERVER_MODE, reason="Cannot set env in server mode") +def test_create_db_cluster_snapshot_fails_when_limit_exceeded(client, monkeypatch): + db_cluster_identifier = create_db_cluster() + client.create_db_cluster_snapshot( + DBClusterIdentifier=db_cluster_identifier, + DBClusterSnapshotIdentifier="snapshot-1", + ) + with pytest.raises(ClientError) as exc: + monkeypatch.setenv("MOTO_RDS_SNAPSHOT_LIMIT", "1") + client.create_db_cluster_snapshot( + DBClusterIdentifier=db_cluster_identifier, + DBClusterSnapshotIdentifier="snapshot-2", + ) + err = exc.value.response["Error"] + assert err["Code"] == "SnapshotQuotaExceeded" + assert ( + err["Message"] + == "The request cannot be processed because it would exceed the maximum number of snapshots." + ) + + @mock_aws def test_describe_db_cluster_snapshots(client): db_cluster_identifier = create_db_cluster() From 66987e73bcc57063dd1c6ae9a3dc39eff4215967 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:47:56 +0000 Subject: [PATCH 077/103] Bump ruby/setup-ruby from 1.218.0 to 1.221.0 (#8605) --- .github/workflows/tests_sdk_ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests_sdk_ruby.yml b/.github/workflows/tests_sdk_ruby.yml index 6795c7062af2..b9036805c4f2 100644 --- a/.github/workflows/tests_sdk_ruby.yml +++ b/.github/workflows/tests_sdk_ruby.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Ruby ${{ matrix.ruby-version }} - uses: ruby/setup-ruby@d781c1b4ed31764801bfae177617bb0446f5ef8d + uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 with: ruby-version: ${{ matrix.ruby-version }} - name: Set up Python 3.8 From 9e8bc74f3610ed390e7fad4bb90af574b68dd1f1 Mon Sep 17 00:00:00 2001 From: Jim King Date: Mon, 17 Feb 2025 19:11:51 -0500 Subject: [PATCH 078/103] S3: Properly handle CopyObject with content length 0 (#8596) --- moto/s3/responses.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/moto/s3/responses.py b/moto/s3/responses.py index 310774c46727..3e629e8b58a6 100644 --- a/moto/s3/responses.py +++ b/moto/s3/responses.py @@ -188,7 +188,7 @@ def setup_class(self, request: Any, full_url: str, headers: Any) -> None: # typ and request.headers.get("Content-Encoding", "") == "aws-chunked" and hasattr(request, "input_stream") ): - self.body = request.input_stream.getvalue() + self.body = request.input_stream if ( self.request.headers.get("x-amz-content-sha256") == "STREAMING-UNSIGNED-PAYLOAD-TRAILER" @@ -1351,20 +1351,21 @@ def _handle_v4_chunk_signatures(self, body: bytes, content_length: int) -> bytes line = body_io.readline() return bytes(new_body) - def _handle_encoded_body(self, body: bytes) -> bytes: + def _handle_encoded_body(self, body: Union[io.BufferedIOBase, bytes]) -> bytes: decoded_body = b"" if not body: return decoded_body - body_io = io.BytesIO(body) + if isinstance(body, bytes): + body = io.BytesIO(body) # first line should equal '{content_length}\r\n' while the content_length is a hex number - content_length = int(body_io.readline().strip(), 16) + content_length = int(body.readline().strip(), 16) while content_length > 0: # read the content_length of the actual data - decoded_body += body_io.read(content_length) + decoded_body += body.read(content_length) # next is line with just '\r\n' so we skip it - body_io.readline() + body.readline() # read another line with '{content_length}\r\n' - content_length = int(body_io.readline().strip(), 16) + content_length = int(body.readline().strip(), 16) return decoded_body # last line should equal From 7fb8077dfb990464f44f8ae5fb38e7d04850499b Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Wed, 19 Feb 2025 12:17:14 -0800 Subject: [PATCH 079/103] RDS: Add GlobalCluster.Endpoint attribute (#8609) --- moto/rds/models.py | 8 +++++++- tests/test_rds/test_global_clusters.py | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index e3363a34fa31..fc23353d4e70 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -303,7 +303,8 @@ def __init__( ): super().__init__(backend) self.global_cluster_identifier = global_cluster_identifier - self.global_cluster_resource_id = "cluster-" + random.get_random_hex(8) + self.unique_identifier = random.get_random_hex(8) + self.global_cluster_resource_id = f"cluster-{self.unique_identifier}" self.engine = engine self.engine_version = engine_version or DBCluster.default_engine_version( self.engine @@ -326,6 +327,11 @@ def arn(self) -> str: # Global Clusters do not belong to a particular region. return super().arn.replace(self.region, "") + @property + def endpoint(self) -> str: + ep = f"{self.global_cluster_identifier}.global-{self.unique_identifier}.global.rds.amazonaws.com" + return ep + @property def global_cluster_arn(self) -> str: return self.arn diff --git a/tests/test_rds/test_global_clusters.py b/tests/test_rds/test_global_clusters.py index d61208b5ef07..df4e264127e7 100644 --- a/tests/test_rds/test_global_clusters.py +++ b/tests/test_rds/test_global_clusters.py @@ -38,6 +38,7 @@ def test_global_cluster_members(): == f"arn:aws:rds::{DEFAULT_ACCOUNT_ID}:global-cluster:gc1" ) assert global_cluster["Status"] == "available" + assert "Endpoint" in global_cluster assert global_cluster["Engine"] == "aurora-mysql" assert "mysql_aurora" in global_cluster["EngineVersion"] assert global_cluster["StorageEncrypted"] is False @@ -57,7 +58,7 @@ def test_global_cluster_members(): assert len(resp["GlobalClusters"]) == 1 global_cluster = resp["GlobalClusters"][0] assert global_cluster["GlobalClusterIdentifier"] == "gc1" - + assert "Endpoint" in global_cluster assert len(global_cluster["GlobalClusterMembers"]) == 1 assert global_cluster["GlobalClusterMembers"][0]["DBClusterArn"] == cluster_arn From d8a9bcce483bc3cb2b082195007e35d679597df8 Mon Sep 17 00:00:00 2001 From: Anisa Oshafi Date: Thu, 20 Feb 2025 14:58:59 +0100 Subject: [PATCH 080/103] EC2: Properly handle disableApiStop in instance lifecycle (#8610) --- moto/ec2/exceptions.py | 8 ++++ moto/ec2/models/instances.py | 5 ++- moto/ec2/responses/instances.py | 1 + tests/test_ec2/test_instances.py | 65 ++++++++++++++++++++++++++++++++ 4 files changed, 78 insertions(+), 1 deletion(-) diff --git a/moto/ec2/exceptions.py b/moto/ec2/exceptions.py index 40bf77d0f610..ecf4cc6a1454 100644 --- a/moto/ec2/exceptions.py +++ b/moto/ec2/exceptions.py @@ -689,6 +689,14 @@ def __init__(self, instance_id: str): ) +class OperationDisableApiStopNotPermitted(EC2ClientError): + def __init__(self, instance_id: str): + super().__init__( + "OperationNotPermitted", + f"The instance '{instance_id}' may not be terminated. Modify its 'disableApiStop' instance attribute and try again.", + ) + + # Raised when attempting to accept or reject a VPC peering connection request for a VPC not belonging to self class OperationNotPermitted5(EC2ClientError): def __init__(self, account_id: str, pcx_id: str, operation: str): diff --git a/moto/ec2/models/instances.py b/moto/ec2/models/instances.py index b44784b98367..1d055b036c38 100644 --- a/moto/ec2/models/instances.py +++ b/moto/ec2/models/instances.py @@ -27,6 +27,7 @@ InvalidParameterValueErrorUnknownAttribute, InvalidSecurityGroupNotFoundError, InvalidSubnetIdError, + OperationDisableApiStopNotPermitted, OperationNotPermitted4, ) from ..utils import ( @@ -143,7 +144,7 @@ def __init__( self.virtualization_type = ami.virtualization_type if ami else "paravirtual" self.architecture = ami.architecture if ami else "x86_64" self.root_device_name = ami.root_device_name if ami else None - self.disable_api_stop = False + self.disable_api_stop = kwargs.get("disable_api_stop", False) self.iam_instance_profile = kwargs.get("iam_instance_profile") # handle weird bug around user_data -- something grabs the repr(), so @@ -763,6 +764,8 @@ def stop_instances( ) -> List[Tuple[Instance, InstanceState]]: stopped_instances = [] for instance in self.get_multi_instances_by_id(instance_ids): + if instance.disable_api_stop == "true": + raise OperationDisableApiStopNotPermitted(instance.id) previous_state = instance.stop() stopped_instances.append((instance, previous_state)) diff --git a/moto/ec2/responses/instances.py b/moto/ec2/responses/instances.py index 472ffd904689..282cf94d980d 100644 --- a/moto/ec2/responses/instances.py +++ b/moto/ec2/responses/instances.py @@ -74,6 +74,7 @@ def run_instances(self) -> str: "associate_public_ip": self._get_param("AssociatePublicIpAddress"), "tags": self._parse_tag_specification(), "ebs_optimized": self._get_param("EbsOptimized") or False, + "disable_api_stop": self._get_param("DisableApiStop") or False, "instance_market_options": self._get_param( "InstanceMarketOptions.MarketType" ) diff --git a/tests/test_ec2/test_instances.py b/tests/test_ec2/test_instances.py index e63c0c819d88..006f9a2f6de6 100644 --- a/tests/test_ec2/test_instances.py +++ b/tests/test_ec2/test_instances.py @@ -2151,6 +2151,7 @@ def test_describe_instance_attribute(): "groupSet", "ebsOptimized", "sriovNetSupport", + "disableApiStop", ] for valid_instance_attribute in valid_instance_attributes: @@ -2292,6 +2293,70 @@ def test_instance_termination_protection(): assert instance["State"]["Name"] == "terminated" +@mock_aws +def test_instance_stop_protection(): + client = boto3.client("ec2", region_name="us-west-1") + + response = client.run_instances( + ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1, DisableApiStop=True + ) + instance_id = response["Instances"][0]["InstanceId"] + + response = client.describe_instance_attribute( + InstanceId=instance_id, Attribute="disableApiStop" + ) + assert response["DisableApiStop"]["Value"] is True + + # can't stop an instance with stop protection + with pytest.raises(ClientError) as ex: + client.stop_instances(InstanceIds=[instance_id]) + error = ex.value.response["Error"] + assert error["Code"] == "OperationNotPermitted" + + # stopping an instance without stop protection works + client.modify_instance_attribute( + InstanceId=instance_id, Attribute="disableApiStop", Value="false" + ) + response = client.stop_instances(InstanceIds=[instance_id]) + assert response["StoppingInstances"][0]["CurrentState"]["Name"] in [ + "stopping", + "stopped", + ] + + # Run instance without stop protection + response = client.run_instances(ImageId=EXAMPLE_AMI_ID, MinCount=1, MaxCount=1) + instance_id = response["Instances"][0]["InstanceId"] + + # Enable it afterwards + # Note that we're using the DisableApiStop here, instead of Attribute="disableApiStop", to verify both work + client.modify_instance_attribute( + InstanceId=instance_id, DisableApiStop={"Value": True} + ) + + # Verify it's set + response = client.describe_instance_attribute( + InstanceId=instance_id, Attribute="disableApiStop" + ) + assert response["DisableApiStop"]["Value"] is True + + with pytest.raises(ClientError) as ex: + client.stop_instances(InstanceIds=[instance_id]) + assert ex.value.response["Error"]["Code"] == "OperationNotPermitted" + + # Verify we can disable it + client.modify_instance_attribute( + InstanceId=instance_id, DisableApiStop={"Value": False} + ) + + # Verify it's set + response = client.describe_instance_attribute( + InstanceId=instance_id, Attribute="disableApiStop" + ) + assert response["DisableApiStop"]["Value"] is False + + client.stop_instances(InstanceIds=[instance_id]) + + @mock_aws def test_terminate_unknown_instances(): client = boto3.client("ec2", region_name="us-west-1") From d00aa025b6c3d37977508b5d5e81ecad4ca15159 Mon Sep 17 00:00:00 2001 From: jamarcelin <56656001+jamarcelin@users.noreply.github.com> Date: Thu, 20 Feb 2025 15:08:26 -0500 Subject: [PATCH 081/103] Lex v2 Models Support (#8533) --- moto/backend_index.py | 2 + moto/backends.py | 6 + moto/core/base_backend.py | 3 +- moto/lexv2models/__init__.py | 1 + moto/lexv2models/exceptions.py | 1 + moto/lexv2models/models.py | 397 ++++++++++++++++++++ moto/lexv2models/responses.py | 243 ++++++++++++ moto/lexv2models/urls.py | 18 + moto/resourcegroupstaggingapi/models.py | 28 ++ tests/test_lexv2models/__init__.py | 0 tests/test_lexv2models/test_lexv2models.py | 417 +++++++++++++++++++++ 11 files changed, 1115 insertions(+), 1 deletion(-) create mode 100644 moto/lexv2models/__init__.py create mode 100644 moto/lexv2models/exceptions.py create mode 100644 moto/lexv2models/models.py create mode 100644 moto/lexv2models/responses.py create mode 100644 moto/lexv2models/urls.py create mode 100644 tests/test_lexv2models/__init__.py create mode 100644 tests/test_lexv2models/test_lexv2models.py diff --git a/moto/backend_index.py b/moto/backend_index.py index e0d9e277fab3..c0480579c431 100644 --- a/moto/backend_index.py +++ b/moto/backend_index.py @@ -108,6 +108,8 @@ ), ("kms", re.compile("https?://kms\\.(.+)\\.amazonaws\\.com")), ("lakeformation", re.compile("https?://lakeformation\\.(.+)\\.amazonaws\\.com")), + ("lexv2models", re.compile("https?://lex\\.(.+)\\.amazonaws\\.com")), + ("lexv2models", re.compile("https?://models-v2-lex\\.(.+)\\.amazonaws\\.com")), ("logs", re.compile("https?://logs\\.(.+)\\.amazonaws\\.com")), ( "managedblockchain", diff --git a/moto/backends.py b/moto/backends.py index 0d918c6ed4c7..c54e2a7a0b48 100644 --- a/moto/backends.py +++ b/moto/backends.py @@ -87,6 +87,7 @@ from moto.kinesisvideoarchivedmedia.models import KinesisVideoArchivedMediaBackend from moto.kms.models import KmsBackend from moto.lakeformation.models import LakeFormationBackend + from moto.lexv2models.models import LexModelsV2Backend from moto.logs.models import LogsBackend from moto.managedblockchain.models import ManagedBlockchainBackend from moto.mediaconnect.models import MediaConnectBackend @@ -270,6 +271,7 @@ def get_service_from_url(url: str) -> Optional[str]: "Literal['kms']", "Literal['lakeformation']", "Literal['lambda']", + "Literal['lexv2models']", "Literal['logs']", "Literal['managedblockchain']", "Literal['mediaconnect']", @@ -558,6 +560,10 @@ def get_backend( @overload def get_backend(name: "Literal['lambda']") -> "BackendDict[LambdaBackend]": ... @overload +def get_backend( + name: "Literal['lexv2models']", +) -> "BackendDict[LexModelsV2Backend]": ... +@overload def get_backend(name: "Literal['logs']") -> "BackendDict[LogsBackend]": ... @overload def get_backend( diff --git a/moto/core/base_backend.py b/moto/core/base_backend.py index cc637e70b688..0d9e1605b6c4 100644 --- a/moto/core/base_backend.py +++ b/moto/core/base_backend.py @@ -67,7 +67,8 @@ def reset(self) -> None: @property def _url_module(self) -> Any: # type: ignore[misc] backend_module = self.__class__.__module__ - backend_urls_module_name = backend_module.replace("models", "urls") + # moto.service.models --> moto.service.urls + backend_urls_module_name = backend_module.rstrip("models") + "urls" backend_urls_module = __import__( backend_urls_module_name, fromlist=["url_bases", "url_paths"] ) diff --git a/moto/lexv2models/__init__.py b/moto/lexv2models/__init__.py new file mode 100644 index 000000000000..4fe28ab32bdb --- /dev/null +++ b/moto/lexv2models/__init__.py @@ -0,0 +1 @@ +from .models import lexv2models_backends # noqa: F401 diff --git a/moto/lexv2models/exceptions.py b/moto/lexv2models/exceptions.py new file mode 100644 index 000000000000..a96f035ae2f9 --- /dev/null +++ b/moto/lexv2models/exceptions.py @@ -0,0 +1 @@ +"""Exceptions raised by the lexv2models service.""" diff --git a/moto/lexv2models/models.py b/moto/lexv2models/models.py new file mode 100644 index 000000000000..db4e99212a93 --- /dev/null +++ b/moto/lexv2models/models.py @@ -0,0 +1,397 @@ +"""LexModelsV2Backend class with methods for supported APIs.""" + +import uuid +from datetime import datetime +from typing import Any, Dict, List, Optional, Tuple + +from moto.core.base_backend import BackendDict, BaseBackend + +from ..utilities.tagging_service import TaggingService + + +class FakeBot: + failure_reasons: List[str] + + def __init__( + self, + account_id: str, + region_name: str, + bot_name: str, + description: str, + role_arn: str, + data_privacy: Optional[Dict[str, Any]], + idle_session_ttl_in_seconds: int, + bot_type: str, + bot_members: Optional[Dict[str, Any]], + ): + self.account_id = account_id + self.region_name = region_name + + self.id = str(uuid.uuid4()) + self.bot_name = bot_name + self.description = description + self.role_arn = role_arn + self.data_privacy = data_privacy + self.idle_session_ttl_in_seconds = idle_session_ttl_in_seconds + self.bot_type = bot_type + self.bot_members = bot_members + self.status = "CREATING" + self.creation_date_time = datetime.now().isoformat() + self.last_updated_date_time = datetime.now().isoformat() + self.failure_reasons = [] + + self.arn = self._generate_arn() + + def _generate_arn(self) -> str: + return f"arn:aws:lex:{self.region_name}:{self.account_id}:bot/{self.id}" + + +class FakeBotAlias: + parent_bot_networks: List[str] + history_events: List[str] + + def __init__( + self, + account_id: str, + region_name: str, + bot_alias_name: str, + description: str, + bot_version: str, + bot_alias_locale_settings: Optional[Dict[str, Any]], + conversation_log_settings: Optional[Dict[str, Any]], + sentiment_analysis_settings: Optional[Dict[str, Any]], + bot_id: str, + ): + self.account_id = account_id + self.region_name = region_name + + self.id = str(uuid.uuid4()) + self.bot_alias_name = bot_alias_name + self.description = description + self.bot_version = bot_version + self.bot_alias_locale_settings = bot_alias_locale_settings + self.conversation_log_settings = conversation_log_settings + self.sentiment_analysis_settings = sentiment_analysis_settings + self.status = "CREATING" + self.bot_id = bot_id + self.creation_date_time = datetime.now().isoformat() + self.last_updated_date_time = datetime.now().isoformat() + self.parent_bot_networks = [] + self.history_events = [] + + self.arn = self._generate_arn() + + def _generate_arn(self) -> str: + return f"arn:aws:lex:{self.region_name}:{self.account_id}:bot-alias/${self.bot_id}/${self.id}" + + +class FakeResourcePolicy: + def __init__(self, resource_arn: str, policy: str): + self.resource_arn = resource_arn + self.policy = policy + self.revision_id = str(uuid.uuid4()) + + +class LexModelsV2Backend(BaseBackend): + """Implementation of LexModelsV2 APIs.""" + + def __init__(self, region_name: str, account_id: str): + super().__init__(region_name, account_id) + self.bots: Dict[str, FakeBot] = {} + self.bot_aliases: Dict[str, FakeBotAlias] = {} + self.resource_policies: Dict[str, FakeResourcePolicy] = {} + self.tagger = TaggingService() + + def create_bot( + self, + bot_name: str, + description: str, + role_arn: str, + data_privacy: Optional[Dict[str, Any]], + idle_session_ttl_in_seconds: int, + bot_tags: Optional[Dict[str, str]], + test_bot_alias_tags: Optional[Dict[str, str]], + bot_type: str, + bot_members: Optional[Dict[str, Any]], + ) -> Dict[str, Any]: + bot = FakeBot( + account_id=self.account_id, + region_name=self.region_name, + bot_name=bot_name, + description=description, + role_arn=role_arn, + data_privacy=data_privacy, + idle_session_ttl_in_seconds=idle_session_ttl_in_seconds, + bot_type=bot_type, + bot_members=bot_members, + ) + + self.bots[bot.id] = bot + + if bot_tags: + self.tag_resource(bot.arn, bot_tags) + + test_alias = FakeBotAlias( + account_id=self.account_id, + region_name=self.region_name, + bot_alias_name="test", + description="test", + bot_version="1", + bot_alias_locale_settings={}, + conversation_log_settings={}, + sentiment_analysis_settings={}, + bot_id=bot.id, + ) + self.bot_aliases[test_alias.id] = test_alias + + return { + "botId": bot.id, + "botName": bot.bot_name, + "description": bot.description, + "roleArn": bot.role_arn, + "dataPrivacy": bot.data_privacy, + "idleSessionTTLInSeconds": bot.idle_session_ttl_in_seconds, + "botStatus": bot.status, + "creationDateTime": bot.creation_date_time, + "botTags": self.list_tags_for_resource(bot.arn), + "testBotAliasTags": test_bot_alias_tags, + "botType": bot.bot_type, + "botMembers": bot.bot_members, + } + + def describe_bot(self, bot_id: str) -> Dict[str, Any]: + bot = self.bots[bot_id] + + return { + "botId": bot.id, + "botName": bot.bot_name, + "description": bot.description, + "roleArn": bot.role_arn, + "dataPrivacy": bot.data_privacy, + "idleSessionTTLInSeconds": bot.idle_session_ttl_in_seconds, + "botStatus": bot.status, + "creationDateTime": bot.creation_date_time, + "lastUpdatedDateTime": bot.last_updated_date_time, + "botType": bot.bot_type, + "botMembers": bot.bot_members, + "failureReasons": bot.failure_reasons, + } + + def update_bot( + self, + bot_id: str, + bot_name: str, + description: str, + role_arn: str, + data_privacy: Optional[Dict[str, Any]], + idle_session_ttl_in_seconds: int, + bot_type: str, + bot_members: Optional[Dict[str, Any]], + ) -> Dict[str, Any]: + bot = self.bots[bot_id] + + bot.bot_name = bot_name + bot.description = description + bot.role_arn = role_arn + bot.data_privacy = data_privacy + bot.idle_session_ttl_in_seconds = idle_session_ttl_in_seconds + bot.bot_type = bot_type + bot.bot_members = bot_members + bot.last_updated_date_time = datetime.now().isoformat() + + return { + "botId": bot.id, + "botName": bot.bot_name, + "description": bot.description, + "roleArn": bot.role_arn, + "dataPrivacy": bot.data_privacy, + "idleSessionTTLInSeconds": bot.idle_session_ttl_in_seconds, + "botStatus": bot.status, + "creationDateTime": bot.creation_date_time, + "lastUpdatedDateTime": bot.last_updated_date_time, + "botType": bot.bot_type, + "botMembers": bot.bot_members, + } + + def list_bots(self) -> List[Dict[str, Any]]: + bot_summaries = [ + { + "botId": bot.id, + "botName": bot.bot_name, + "description": bot.description, + "botStatus": bot.status, + "latestBotVersion": 1, + "lastUpdatedDateTime": bot.last_updated_date_time, + "botType": bot.bot_type, + } + for bot in self.bots.values() + ] + return bot_summaries + + def delete_bot( + self, bot_id: str, skip_resource_in_use_check: bool + ) -> Tuple[str, str]: + bot = self.bots.pop(bot_id) + return bot.id, bot.status + + def create_bot_alias( + self, + bot_alias_name: str, + description: str, + bot_version: str, + bot_alias_locale_settings: Optional[Dict[str, Any]], + conversation_log_settings: Optional[Dict[str, Any]], + sentiment_analysis_settings: Optional[Dict[str, Any]], + bot_id: str, + tags: Optional[Dict[str, str]], + ) -> Dict[str, Any]: + bot_alias = FakeBotAlias( + self.account_id, + self.region_name, + bot_alias_name, + description, + bot_version, + bot_alias_locale_settings, + conversation_log_settings, + sentiment_analysis_settings, + bot_id, + ) + + self.bot_aliases[bot_alias.id] = bot_alias + + if tags: + self.tag_resource(bot_alias.arn, tags) + + return { + "botAliasId": bot_alias.id, + "botAliasName": bot_alias.bot_alias_name, + "description": bot_alias.description, + "botVersion": bot_alias.bot_version, + "botAliasLocaleSettings": bot_alias.bot_alias_locale_settings, + "conversationLogSettings": bot_alias.conversation_log_settings, + "sentimentAnalysisSettings": bot_alias.sentiment_analysis_settings, + "botAliasStatus": bot_alias.status, + "creationDateTime": bot_alias.creation_date_time, + "botId": bot_alias.bot_id, + "tags": self.list_tags_for_resource(bot_alias.arn), + } + + def describe_bot_alias(self, bot_alias_id: str, bot_id: str) -> Dict[str, Any]: + ba = self.bot_aliases[bot_alias_id] + + return { + "botAliasId": ba.id, + "botAliasName": ba.bot_alias_name, + "description": ba.description, + "botVersion": ba.bot_version, + "botAliasLocaleSettings": ba.bot_alias_locale_settings, + "conversationLogSettings": ba.conversation_log_settings, + "sentimentAnalysisSettings": ba.sentiment_analysis_settings, + "botAliasHistoryEvents": ba.history_events, + "botAliasStatus": ba.status, + "botId": ba.bot_id, + "creationDateTime": ba.creation_date_time, + "lastUpdatedDateTime": ba.last_updated_date_time, + "parentBotNetworks": ba.parent_bot_networks, + } + + def update_bot_alias( + self, + bot_alias_id: str, + bot_alias_name: str, + description: str, + bot_version: str, + bot_alias_locale_settings: Optional[Dict[str, Any]], + conversation_log_settings: Optional[Dict[str, Any]], + sentiment_analysis_settings: Optional[Dict[str, Any]], + bot_id: str, + ) -> Dict[str, Any]: + ba = self.bot_aliases[bot_alias_id] + + ba.bot_alias_name = bot_alias_name + ba.description = description + ba.bot_version = bot_version + ba.bot_alias_locale_settings = bot_alias_locale_settings + ba.conversation_log_settings = conversation_log_settings + ba.sentiment_analysis_settings = sentiment_analysis_settings + ba.bot_id = bot_id + ba.last_updated_date_time = datetime.now().isoformat() + + return { + "botAliasId": ba.id, + "botAliasName": ba.bot_alias_name, + "description": ba.description, + "botVersion": ba.bot_version, + "botAliasLocaleSettings": ba.bot_alias_locale_settings, + "conversationLogSettings": ba.conversation_log_settings, + "sentimentAnalysisSettings": ba.sentiment_analysis_settings, + "botAliasStatus": ba.status, + "botId": ba.bot_id, + "creationDateTime": ba.creation_date_time, + "lastUpdatedDateTime": ba.last_updated_date_time, + } + + def list_bot_aliases( + self, bot_id: str, max_results: int + ) -> Tuple[List[Dict[str, Any]], Optional[str]]: + bot_alias_summaries = [ + { + "botAliasId": ba.id, + "botAliasName": ba.bot_alias_name, + "description": ba.description, + "botVersion": ba.bot_version, + "botAliasStatus": ba.status, + "creationDateTime": ba.creation_date_time, + "lastUpdatedDateTime": ba.last_updated_date_time, + } + for ba in self.bot_aliases.values() + ] + + return bot_alias_summaries, bot_id + + def delete_bot_alias( + self, bot_alias_id: str, bot_id: str, skip_resource_in_use_check: bool + ) -> Tuple[str, str, str]: + ba = self.bot_aliases.pop(bot_alias_id) + return ba.id, ba.bot_id, ba.status + + def create_resource_policy(self, resource_arn: str, policy: str) -> Tuple[str, str]: + rp = FakeResourcePolicy(resource_arn, policy) + self.resource_policies[rp.resource_arn] = rp + return rp.resource_arn, rp.revision_id + + def describe_resource_policy(self, resource_arn: str) -> Tuple[str, str, str]: + rp = self.resource_policies[resource_arn] + return rp.resource_arn, rp.policy, rp.revision_id + + def update_resource_policy( + self, resource_arn: str, policy: str, expected_revision_id: str + ) -> Tuple[str, str]: + rp = self.resource_policies[resource_arn] + if expected_revision_id != rp.revision_id: + raise Exception("Revision ID mismatch") + rp.policy = policy + rp.revision_id = str(uuid.uuid4()) + return rp.resource_arn, rp.revision_id + + def delete_resource_policy( + self, resource_arn: str, expected_revision_id: str + ) -> Tuple[str, str]: + rp = self.resource_policies[resource_arn] + if expected_revision_id != rp.revision_id: + raise Exception("Revision ID mismatch") + rp = self.resource_policies.pop(resource_arn) + return rp.resource_arn, rp.revision_id + + def tag_resource(self, resource_arn: str, tags: Dict[str, str]) -> None: + tags_list = [{"Key": k, "Value": v} for k, v in tags.items()] + self.tagger.tag_resource(resource_arn, tags_list) + + def untag_resource(self, resource_arn: str, tag_keys: List[str]) -> None: + self.tagger.untag_resource_using_names(resource_arn, tag_keys) + + def list_tags_for_resource(self, resource_arn: str) -> Dict[str, str]: + return self.tagger.get_tag_dict_for_resource(resource_arn) + + +lexv2models_backends = BackendDict(LexModelsV2Backend, "lexv2-models") diff --git a/moto/lexv2models/responses.py b/moto/lexv2models/responses.py new file mode 100644 index 000000000000..3a5aa7ec65f3 --- /dev/null +++ b/moto/lexv2models/responses.py @@ -0,0 +1,243 @@ +"""Handles incoming lexv2models requests, invokes methods, returns responses.""" + +import json +from urllib.parse import unquote + +from moto.core.responses import BaseResponse + +from .models import LexModelsV2Backend, lexv2models_backends + + +class LexModelsV2Response(BaseResponse): + """Handler for LexModelsV2 requests and responses.""" + + def __init__(self) -> None: + super().__init__(service_name="lexv2-models") + + @property + def lexv2models_backend(self) -> LexModelsV2Backend: + """Return backend instance specific for this region.""" + # lexv2models_backends is not yet typed + # Please modify moto/backends.py to add the appropriate type annotations for this service + return lexv2models_backends[self.current_account][self.region] + + def create_bot(self) -> str: + bot_name = self._get_param("botName") + description = self._get_param("description") + role_arn = self._get_param("roleArn") + data_privacy = self._get_param("dataPrivacy") + idle_session_ttl_in_seconds = self._get_param("idleSessionTTLInSeconds") + bot_tags = self._get_param("botTags") + test_bot_alias_tags = self._get_param("testBotAliasTags") + bot_type = self._get_param("botType") + bot_members = self._get_param("botMembers") + + resp = self.lexv2models_backend.create_bot( + bot_name=bot_name, + description=description, + role_arn=role_arn, + data_privacy=data_privacy, + idle_session_ttl_in_seconds=idle_session_ttl_in_seconds, + bot_tags=bot_tags, + test_bot_alias_tags=test_bot_alias_tags, + bot_type=bot_type, + bot_members=bot_members, + ) + + return json.dumps(resp) + + def describe_bot(self) -> str: + bot_id = self._get_param("botId") + + return json.dumps( + self.lexv2models_backend.describe_bot( + bot_id=bot_id, + ) + ) + + def update_bot(self) -> str: + bot_id = self._get_param("botId") + bot_name = self._get_param("botName") + description = self._get_param("description") + role_arn = self._get_param("roleArn") + data_privacy = self._get_param("dataPrivacy") + idle_session_ttl_in_seconds = self._get_param("idleSessionTTLInSeconds") + bot_type = self._get_param("botType") + bot_members = self._get_param("botMembers") + + return json.dumps( + self.lexv2models_backend.update_bot( + bot_id=bot_id, + bot_name=bot_name, + description=description, + role_arn=role_arn, + data_privacy=data_privacy, + idle_session_ttl_in_seconds=idle_session_ttl_in_seconds, + bot_type=bot_type, + bot_members=bot_members, + ) + ) + + def list_bots(self) -> str: + bot_summaries = self.lexv2models_backend.list_bots() + return json.dumps(dict(botSummaries=bot_summaries, nextToken=None)) + + def delete_bot(self) -> str: + bot_id = self._get_param("botId") + skip_resource_in_use_check = self._get_param("skipResourceInUseCheck") + bot_id, bot_status = self.lexv2models_backend.delete_bot( + bot_id=bot_id, + skip_resource_in_use_check=skip_resource_in_use_check, + ) + return json.dumps(dict(botId=bot_id, botStatus=bot_status)) + + def create_bot_alias(self) -> str: + bot_alias_name = self._get_param("botAliasName") + description = self._get_param("description") + bot_version = self._get_param("botVersion") + bot_alias_locale_settings = self._get_param("botAliasLocaleSettings") + conversation_log_settings = self._get_param("conversationLogSettings") + sentiment_analysis_settings = self._get_param("sentimentAnalysisSettings") + bot_id = self._get_param("botId") + tags = self._get_param("tags") + + return json.dumps( + self.lexv2models_backend.create_bot_alias( + bot_alias_name=bot_alias_name, + description=description, + bot_version=bot_version, + bot_alias_locale_settings=bot_alias_locale_settings, + conversation_log_settings=conversation_log_settings, + sentiment_analysis_settings=sentiment_analysis_settings, + bot_id=bot_id, + tags=tags, + ) + ) + + def describe_bot_alias(self) -> str: + bot_alias_id = self._get_param("botAliasId") + bot_id = self._get_param("botId") + + return json.dumps( + self.lexv2models_backend.describe_bot_alias( + bot_alias_id=bot_alias_id, + bot_id=bot_id, + ) + ) + + def update_bot_alias(self) -> str: + bot_alias_id = self._get_param("botAliasId") + bot_alias_name = self._get_param("botAliasName") + description = self._get_param("description") + bot_version = self._get_param("botVersion") + bot_alias_locale_settings = self._get_param("botAliasLocaleSettings") + conversation_log_settings = self._get_param("conversationLogSettings") + sentiment_analysis_settings = self._get_param("sentimentAnalysisSettings") + bot_id = self._get_param("botId") + + return json.dumps( + self.lexv2models_backend.update_bot_alias( + bot_alias_id=bot_alias_id, + bot_alias_name=bot_alias_name, + description=description, + bot_version=bot_version, + bot_alias_locale_settings=bot_alias_locale_settings, + conversation_log_settings=conversation_log_settings, + sentiment_analysis_settings=sentiment_analysis_settings, + bot_id=bot_id, + ) + ) + + def list_bot_aliases(self) -> str: + bot_id = self._get_param("botId") + max_results = self._get_param("maxResults") + bot_alias_summaries, bot_id = self.lexv2models_backend.list_bot_aliases( + bot_id=bot_id, max_results=max_results + ) + return json.dumps( + dict( + botAliasSummaries=bot_alias_summaries, + nextToken=None, + botId=bot_id, + ) + ) + + def delete_bot_alias(self) -> str: + bot_alias_id = self._get_param("botAliasId") + bot_id = self._get_param("botId") + skip_resource_in_use_check = self._get_param("skipResourceInUseCheck") + bot_alias_id, bot_id, bot_alias_status = ( + self.lexv2models_backend.delete_bot_alias( + bot_alias_id=bot_alias_id, + bot_id=bot_id, + skip_resource_in_use_check=skip_resource_in_use_check, + ) + ) + return json.dumps( + dict(botAliasId=bot_alias_id, botId=bot_id, botAliasStatus=bot_alias_status) + ) + + def create_resource_policy(self) -> str: + resource_arn = self._get_param("resourceArn") + policy = self._get_param("policy") + resource_arn, revision_id = self.lexv2models_backend.create_resource_policy( + resource_arn=resource_arn, + policy=policy, + ) + return json.dumps(dict(resourceArn=resource_arn, revisionId=revision_id)) + + def describe_resource_policy(self) -> str: + resource_arn = self._get_param("resourceArn") + resource_arn, policy, revision_id = ( + self.lexv2models_backend.describe_resource_policy( + resource_arn=resource_arn, + ) + ) + return json.dumps( + dict(resourceArn=resource_arn, policy=policy, revisionId=revision_id) + ) + + def update_resource_policy(self) -> str: + resource_arn = self._get_param("resourceArn") + policy = self._get_param("policy") + expected_revision_id = self._get_param("expectedRevisionId") + resource_arn, revision_id = self.lexv2models_backend.update_resource_policy( + resource_arn=resource_arn, + policy=policy, + expected_revision_id=expected_revision_id, + ) + return json.dumps(dict(resourceArn=resource_arn, revisionId=revision_id)) + + def delete_resource_policy(self) -> str: + resource_arn = self._get_param("resourceArn") + expected_revision_id = self._get_param("expectedRevisionId") + resource_arn, revision_id = self.lexv2models_backend.delete_resource_policy( + resource_arn=resource_arn, + expected_revision_id=expected_revision_id, + ) + return json.dumps(dict(resourceArn=resource_arn, revisionId=revision_id)) + + def tag_resource(self) -> str: + resource_arn = unquote(self.parsed_url.path.split("/tags/")[-1]) + tags = self._get_param("tags") + self.lexv2models_backend.tag_resource( + resource_arn=resource_arn, + tags=tags, + ) + return json.dumps(dict()) + + def untag_resource(self) -> str: + resource_arn = unquote(self.parsed_url.path.split("/tags/")[-1]) + tag_keys = self.__dict__["data"]["tagKeys"] + self.lexv2models_backend.untag_resource( + resource_arn=resource_arn, + tag_keys=tag_keys, + ) + return json.dumps(dict()) + + def list_tags_for_resource(self) -> str: + resource_arn = unquote(self.parsed_url.path.split("/tags/")[-1]) + tags = self.lexv2models_backend.list_tags_for_resource( + resource_arn=resource_arn, + ) + return json.dumps(dict(tags=tags)) diff --git a/moto/lexv2models/urls.py b/moto/lexv2models/urls.py new file mode 100644 index 000000000000..b44742bac80b --- /dev/null +++ b/moto/lexv2models/urls.py @@ -0,0 +1,18 @@ +"""lexv2models base URL and path.""" + +from .responses import LexModelsV2Response + +url_bases = [ + r"https?://lex\.(.+)\.amazonaws\.com", + r"https?://models-v2-lex\.(.+)\.amazonaws\.com", +] + +url_paths = { + "{0}/bots/$": LexModelsV2Response.dispatch, + "{0}/bots/(?P[^/]+)/$": LexModelsV2Response.dispatch, + "{0}/bots/(?P[^/]+)/botaliases/$": LexModelsV2Response.dispatch, + "{0}/bots/(?P[^/]+)/botaliases/(?P[^/]+)/$": LexModelsV2Response.dispatch, + "{0}/policy/(?P[^/]+)/$": LexModelsV2Response.dispatch, + "{0}/tags/(?P[^/]+)$": LexModelsV2Response.dispatch, + "{0}/tags/(?P[^/]+)/(?P[^/]+)$": LexModelsV2Response.dispatch, +} diff --git a/moto/resourcegroupstaggingapi/models.py b/moto/resourcegroupstaggingapi/models.py index f056af7d16be..f9d66234e488 100644 --- a/moto/resourcegroupstaggingapi/models.py +++ b/moto/resourcegroupstaggingapi/models.py @@ -17,6 +17,7 @@ from moto.kafka.models import KafkaBackend, kafka_backends from moto.kinesis.models import KinesisBackend, kinesis_backends from moto.kms.models import KmsBackend, kms_backends +from moto.lexv2models.models import LexModelsV2Backend, lexv2models_backends from moto.logs.models import LogsBackend, logs_backends from moto.moto_api._internal import mock_random from moto.rds.models import RDSBackend, rds_backends @@ -163,6 +164,12 @@ def kafka_backend(self) -> KafkaBackend: def sagemaker_backend(self) -> SageMakerModelBackend: return sagemaker_backends[self.account_id][self.region_name] + @property + def lexv2_backend(self) -> Optional[LexModelsV2Backend]: + if self.region_name in lexv2models_backends[self.account_id].regions: + return lexv2models_backends[self.account_id][self.region_name] + return None + def _get_resources_generator( self, tag_filters: Optional[List[Dict[str, Any]]] = None, @@ -455,6 +462,27 @@ def format_tag_keys( yield {"ResourceARN": f"{kms_key.arn}", "Tags": tags} + # LexV2 + if self.lexv2_backend: + lex_v2_resource_map: Dict[str, Dict[str, Any]] = { + "lexv2:bot": self.lexv2_backend.bots, + "lexv2:bot-alias": self.lexv2_backend.bot_aliases, + } + for resource_type, resource_source in lex_v2_resource_map.items(): + if ( + not resource_type_filters + or "lexv2" in resource_type_filters + or resource_type in resource_type_filters + ): + for resource in resource_source.values(): + tags = format_tags(resource.tags) + if not tags or not tag_filter(tags): + continue + yield { + "ResourceARN": resource.arn, + "Tags": tags, + } + # LOGS if ( not resource_type_filters diff --git a/tests/test_lexv2models/__init__.py b/tests/test_lexv2models/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/tests/test_lexv2models/test_lexv2models.py b/tests/test_lexv2models/test_lexv2models.py new file mode 100644 index 000000000000..2359429afc0c --- /dev/null +++ b/tests/test_lexv2models/test_lexv2models.py @@ -0,0 +1,417 @@ +"""Unit tests for lexv2models-supported APIs.""" + +import boto3 + +from moto import mock_aws + +# See our Development Tips on writing tests for hints on how to write good tests: +# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html + + +@mock_aws +def test_create_bot(): + client = boto3.client("lexv2-models", region_name="ap-southeast-1") + resp = client.create_bot( + botName="test_bot", + description="test_bot_description", + roleArn="arn:aws:iam::123456789012:role/lex-role", + dataPrivacy={"childDirected": False}, + idleSessionTTLInSeconds=300, + botTags={"test_key": "test_value"}, + testBotAliasTags={"test_key": "test_value"}, + botType="test_bot_type", + botMembers=[ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + assert resp.get("botId") + assert resp["botName"] == "test_bot" + assert resp["description"] == "test_bot_description" + assert resp["roleArn"] == "arn:aws:iam::123456789012:role/lex-role" + assert resp["dataPrivacy"] == {"childDirected": False} + assert resp["idleSessionTTLInSeconds"] == 300 + assert resp["botStatus"] == "CREATING" + assert resp.get("creationDateTime") + assert resp["botTags"] == {"test_key": "test_value"} + assert resp["testBotAliasTags"] == {"test_key": "test_value"} + assert resp["botType"] == "test_bot_type" + assert resp["botMembers"] == [ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + } + ] + assert resp.get("creationDateTime") + + +@mock_aws +def test_describe_bot(): + client = boto3.client("lexv2-models", region_name="eu-west-1") + bot = client.create_bot( + botName="test_bot", + description="test_bot_description", + roleArn="arn:aws:iam::123456789012:role/lex-role", + dataPrivacy={"childDirected": False}, + idleSessionTTLInSeconds=300, + botTags={"test_key": "test_value"}, + testBotAliasTags={"test_key": "test_value"}, + botType="test_bot_type", + botMembers=[ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + resp = client.describe_bot(botId=bot["botId"]) + + assert resp["botId"] == bot["botId"] + assert resp["botName"] == "test_bot" + assert resp["description"] == "test_bot_description" + assert resp["roleArn"] == "arn:aws:iam::123456789012:role/lex-role" + assert resp["dataPrivacy"] == {"childDirected": False} + assert resp["idleSessionTTLInSeconds"] == 300 + assert resp["botStatus"] == "CREATING" + assert resp.get("creationDateTime") + assert resp.get("lastUpdatedDateTime") + assert resp["botType"] == "test_bot_type" + assert resp["botMembers"] == [ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + } + ] + assert resp["failureReasons"] == [] + + +@mock_aws +def test_update_bot(): + client = boto3.client("lexv2-models", region_name="ap-southeast-1") + bot = client.create_bot( + botName="test_bot", + description="test_bot_description", + roleArn="arn:aws:iam::123456789012:role/lex-role", + dataPrivacy={"childDirected": False}, + idleSessionTTLInSeconds=300, + botTags={"test_key": "test_value"}, + testBotAliasTags={"test_key": "test_value"}, + botType="test_bot_type", + botMembers=[ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + resp = client.update_bot( + botId=bot["botId"], + botName="test_bot_updated", + description="test_bot_description_updated", + roleArn="arn:aws:iam::123456789012:role/lex-role-updated", + dataPrivacy={"childDirected": True}, + idleSessionTTLInSeconds=600, + botType="test_bot_type_updated", + botMembers=[ + { + "botMemberId": "test_bot_member_id_updated", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id_updated", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + assert resp["botId"] == bot["botId"] + assert resp["botName"] == "test_bot_updated" + assert resp["description"] == "test_bot_description_updated" + assert resp["roleArn"] == "arn:aws:iam::123456789012:role/lex-role-updated" + assert resp["dataPrivacy"] == {"childDirected": True} + assert resp["idleSessionTTLInSeconds"] == 600 + assert resp["botStatus"] == "CREATING" + assert resp.get("creationDateTime") + assert resp.get("lastUpdatedDateTime") + assert resp.get("lastUpdatedDateTime") != resp.get("creationDateTime") + assert resp["botType"] == "test_bot_type_updated" + assert resp["botMembers"] == [ + { + "botMemberId": "test_bot_member_id_updated", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id_updated", + "botMemberAliasName": "string", + "botMemberVersion": "string", + } + ] + + +@mock_aws +def test_list_bots(): + client = boto3.client("lexv2-models", region_name="ap-southeast-1") + bot = client.create_bot( + botName="test_bot", + description="test_bot_description", + roleArn="arn:aws:iam::123456789012:role/lex-role", + dataPrivacy={"childDirected": False}, + idleSessionTTLInSeconds=300, + botTags={"test_key": "test_value"}, + testBotAliasTags={"test_key": "test_value"}, + botType="test_bot_type", + botMembers=[ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + resp = client.list_bots()["botSummaries"] + assert len(resp) == 1 + assert resp[0]["botId"] == bot["botId"] + assert resp[0]["botName"] == "test_bot" + assert resp[0]["description"] == "test_bot_description" + assert resp[0]["botStatus"] == "CREATING" + assert resp[0]["latestBotVersion"] == 1 + assert resp[0]["lastUpdatedDateTime"] + assert resp[0]["botType"] == "test_bot_type" + + client.delete_bot(botId=bot["botId"], skipResourceInUseCheck=True) + resp = client.list_bots()["botSummaries"] + assert len(resp) == 0 + + +@mock_aws +def test_bot_alias(): + client = boto3.client("lexv2-models", region_name="ap-southeast-1") + resp = client.create_bot_alias( + botAliasName="test_bot_alias", + description="test_bot_alias_description", + botVersion="1", + botAliasLocaleSettings={"en-US": {"enabled": True}}, + conversationLogSettings={ + "textLogSettings": [ + { + "enabled": True, + "destination": { + "cloudWatch": { + "cloudWatchLogGroupArn": "test_log_group_arn", + "logPrefix": "test_log_prefix", + } + }, + } + ] + }, + sentimentAnalysisSettings={"detectSentiment": True}, + botId="test_bot_id", + tags={"test_key": "test_value"}, + ) + + assert resp.get("botAliasId") + assert resp["botAliasName"] == "test_bot_alias" + assert resp["description"] == "test_bot_alias_description" + assert resp["botVersion"] == "1" + assert resp["botAliasLocaleSettings"] == {"en-US": {"enabled": True}} + assert resp["conversationLogSettings"] == { + "textLogSettings": [ + { + "enabled": True, + "destination": { + "cloudWatch": { + "cloudWatchLogGroupArn": "test_log_group_arn", + "logPrefix": "test_log_prefix", + } + }, + } + ] + } + assert resp["sentimentAnalysisSettings"] == {"detectSentiment": True} + assert resp["botAliasStatus"] == "CREATING" + assert resp["botId"] == "test_bot_id" + assert resp.get("creationDateTime") + assert resp["tags"] == {"test_key": "test_value"} + + desc_resp = client.describe_bot_alias( + botAliasId=resp["botAliasId"], botId="test_bot_id" + ) + + assert desc_resp["botAliasId"] == resp["botAliasId"] + assert desc_resp["botAliasName"] == "test_bot_alias" + assert desc_resp["description"] == "test_bot_alias_description" + assert desc_resp["botVersion"] == "1" + assert desc_resp["botAliasLocaleSettings"] == {"en-US": {"enabled": True}} + assert desc_resp["conversationLogSettings"] == { + "textLogSettings": [ + { + "enabled": True, + "destination": { + "cloudWatch": { + "cloudWatchLogGroupArn": "test_log_group_arn", + "logPrefix": "test_log_prefix", + } + }, + } + ] + } + assert desc_resp["sentimentAnalysisSettings"] == {"detectSentiment": True} + assert desc_resp["botAliasHistoryEvents"] == [] + assert desc_resp["botAliasStatus"] == "CREATING" + assert desc_resp["botId"] == "test_bot_id" + assert desc_resp.get("creationDateTime") + assert desc_resp.get("lastUpdatedDateTime") + assert desc_resp["parentBotNetworks"] == [] + + list_resp = client.list_bot_aliases(botId="test_bot_id")["botAliasSummaries"] + + assert len(list_resp) == 1 + assert list_resp[0]["botAliasId"] == resp["botAliasId"] + assert list_resp[0]["botAliasName"] == "test_bot_alias" + assert list_resp[0]["description"] == "test_bot_alias_description" + assert list_resp[0]["botVersion"] == "1" + assert list_resp[0]["botAliasStatus"] == "CREATING" + assert list_resp[0]["creationDateTime"] == resp["creationDateTime"] + + update_resp = client.update_bot_alias( + botAliasId=resp["botAliasId"], + botId="test_bot_id", + botAliasName="test_bot_alias_updated", + description="test_bot_alias_description_updated", + botVersion="1", + botAliasLocaleSettings={"en-US": {"enabled": True}}, + conversationLogSettings={ + "textLogSettings": [ + { + "enabled": True, + "destination": { + "cloudWatch": { + "cloudWatchLogGroupArn": "test_log_group_arn_updated", + "logPrefix": "test_log_prefix_updated", + } + }, + } + ] + }, + sentimentAnalysisSettings={"detectSentiment": False}, + ) + assert update_resp["botAliasId"] == resp["botAliasId"] + assert update_resp["botAliasName"] == "test_bot_alias_updated" + assert update_resp["description"] == "test_bot_alias_description_updated" + assert update_resp["botVersion"] == "1" + assert update_resp["botAliasLocaleSettings"] == {"en-US": {"enabled": True}} + assert update_resp["conversationLogSettings"] == { + "textLogSettings": [ + { + "enabled": True, + "destination": { + "cloudWatch": { + "cloudWatchLogGroupArn": "test_log_group_arn_updated", + "logPrefix": "test_log_prefix_updated", + } + }, + } + ] + } + assert update_resp["sentimentAnalysisSettings"] == {"detectSentiment": False} + assert update_resp["botAliasStatus"] == "CREATING" + assert update_resp["botId"] == "test_bot_id" + assert update_resp.get("lastUpdatedDateTime") != resp.get("creationDateTime") + + client.delete_bot_alias(botAliasId=resp["botAliasId"], botId="test_bot_id") + list_resp = client.list_bot_aliases(botId="test_bot_id")["botAliasSummaries"] + assert len(list_resp) == 0 + + +@mock_aws +def test_resource_policy(): + client = boto3.client("lexv2-models", region_name="eu-west-1") + resp = client.create_resource_policy( + resourceArn="test_resource_arn", + policy="test_resource_policy", + ) + assert resp["resourceArn"] == "test_resource_arn" + assert resp.get("revisionId") + + desc_resp = client.describe_resource_policy( + resourceArn="test_resource_arn", + ) + assert desc_resp["resourceArn"] == "test_resource_arn" + assert desc_resp["policy"] == "test_resource_policy" + assert desc_resp.get("revisionId") + + update_resp = client.update_resource_policy( + resourceArn="test_resource_arn", + policy="test_resource_policy_updated", + expectedRevisionId=resp["revisionId"], + ) + + assert update_resp["resourceArn"] == "test_resource_arn" + assert update_resp["revisionId"] != resp["revisionId"] + + delete_resp = client.delete_resource_policy( + resourceArn="test_resource_arn", + expectedRevisionId=update_resp["revisionId"], + ) + assert delete_resp["resourceArn"] == "test_resource_arn" + + +@mock_aws +def test_tag_resource(): + sts = boto3.client("sts") + account_id = sts.get_caller_identity()["Account"] + region_name = "eu-west-1" + + client = boto3.client("lexv2-models", region_name="eu-west-1") + cr_resp = client.create_bot( + botName="test_bot", + description="test_bot_description", + roleArn="arn:aws:iam::123456789012:role/lex-role", + dataPrivacy={"childDirected": False}, + idleSessionTTLInSeconds=300, + botTags={"test_key": "test_value"}, + testBotAliasTags={"test_key": "test_value"}, + botType="test_bot_type", + botMembers=[ + { + "botMemberId": "test_bot_member_id", + "botMemberName": "string", + "botMemberAliasId": "test_bot_member_alias_id", + "botMemberAliasName": "string", + "botMemberVersion": "string", + }, + ], + ) + + arn = f"arn:aws:lex:{region_name}:{account_id}:bot/{cr_resp['botId']}" + + resp = client.list_tags_for_resource(resourceARN=arn) + assert resp["tags"] == {"test_key": "test_value"} + + client.tag_resource(resourceARN=arn, tags={"new_key": "new_value"}) + resp = client.list_tags_for_resource(resourceARN=arn) + assert resp["tags"] == {"test_key": "test_value", "new_key": "new_value"} + + client.untag_resource(resourceARN=arn, tagKeys=["new_key"]) + resp = client.list_tags_for_resource(resourceARN=arn) + assert resp["tags"] == {"test_key": "test_value"} From e1ddea8a0257bd069c2c1e564327d8543e4eaed5 Mon Sep 17 00:00:00 2001 From: archinksagar <68829863+archinksagar@users.noreply.github.com> Date: Sat, 22 Feb 2025 05:48:38 -0500 Subject: [PATCH 082/103] Logs: Add new methods (#8608) --- IMPLEMENTATION_COVERAGE.md | 39 +-- docs/docs/services/logs.rst | 30 +-- moto/logs/exceptions.py | 12 + moto/logs/models.py | 409 +++++++++++++++++++++++++++++ moto/logs/responses.py | 126 +++++++++ tests/test_logs/test_logs.py | 491 +++++++++++++++++++++++++++++++++++ 6 files changed, 1075 insertions(+), 32 deletions(-) diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index 68d5289fc598..35182915684c 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -995,7 +995,7 @@ ## cloudformation
-39% implemented +37% implemented - [ ] activate_organizations_access - [ ] activate_type @@ -1006,6 +1006,7 @@ - [ ] create_generated_template - [X] create_stack - [X] create_stack_instances +- [ ] create_stack_refactor - [X] create_stack_set - [ ] deactivate_organizations_access - [ ] deactivate_type @@ -1025,6 +1026,7 @@ - [ ] describe_stack_drift_detection_status - [X] describe_stack_events - [X] describe_stack_instance +- [ ] describe_stack_refactor - [X] describe_stack_resource - [ ] describe_stack_resource_drifts - [X] describe_stack_resources @@ -1038,6 +1040,7 @@ - [ ] detect_stack_set_drift - [ ] estimate_template_cost - [X] execute_change_set +- [ ] execute_stack_refactor - [ ] get_generated_template - [X] get_stack_policy - [X] get_template @@ -1053,6 +1056,8 @@ - [ ] list_resource_scans - [ ] list_stack_instance_resource_drifts - [X] list_stack_instances +- [ ] list_stack_refactor_actions +- [ ] list_stack_refactors - [X] list_stack_resources - [ ] list_stack_set_auto_deployment_targets - [X] list_stack_set_operation_results @@ -5309,21 +5314,21 @@ ## logs
-40% implemented +57% implemented - [ ] associate_kms_key - [X] cancel_export_task -- [ ] create_delivery +- [X] create_delivery - [X] create_export_task - [ ] create_log_anomaly_detector - [X] create_log_group - [X] create_log_stream - [ ] delete_account_policy - [ ] delete_data_protection_policy -- [ ] delete_delivery -- [ ] delete_delivery_destination -- [ ] delete_delivery_destination_policy -- [ ] delete_delivery_source +- [X] delete_delivery +- [X] delete_delivery_destination +- [X] delete_delivery_destination_policy +- [X] delete_delivery_source - [X] delete_destination - [ ] delete_index_policy - [ ] delete_integration @@ -5338,9 +5343,9 @@ - [ ] delete_transformer - [ ] describe_account_policies - [ ] describe_configuration_templates -- [ ] describe_deliveries -- [ ] describe_delivery_destinations -- [ ] describe_delivery_sources +- [X] describe_deliveries +- [X] describe_delivery_destinations +- [X] describe_delivery_sources - [X] describe_destinations - [X] describe_export_tasks - [ ] describe_field_indexes @@ -5355,10 +5360,10 @@ - [ ] disassociate_kms_key - [X] filter_log_events - [ ] get_data_protection_policy -- [ ] get_delivery -- [ ] get_delivery_destination -- [ ] get_delivery_destination_policy -- [ ] get_delivery_source +- [X] get_delivery +- [X] get_delivery_destination +- [X] get_delivery_destination_policy +- [X] get_delivery_source - [ ] get_integration - [ ] get_log_anomaly_detector - [X] get_log_events @@ -5374,9 +5379,9 @@ - [X] list_tags_log_group - [ ] put_account_policy - [ ] put_data_protection_policy -- [ ] put_delivery_destination -- [ ] put_delivery_destination_policy -- [ ] put_delivery_source +- [X] put_delivery_destination +- [X] put_delivery_destination_policy +- [X] put_delivery_source - [X] put_destination - [X] put_destination_policy - [ ] put_index_policy diff --git a/docs/docs/services/logs.rst b/docs/docs/services/logs.rst index b26cbcdaae07..114ad3d64037 100644 --- a/docs/docs/services/logs.rst +++ b/docs/docs/services/logs.rst @@ -16,17 +16,17 @@ logs - [ ] associate_kms_key - [X] cancel_export_task -- [ ] create_delivery +- [X] create_delivery - [X] create_export_task - [ ] create_log_anomaly_detector - [X] create_log_group - [X] create_log_stream - [ ] delete_account_policy - [ ] delete_data_protection_policy -- [ ] delete_delivery -- [ ] delete_delivery_destination -- [ ] delete_delivery_destination_policy -- [ ] delete_delivery_source +- [X] delete_delivery +- [X] delete_delivery_destination +- [X] delete_delivery_destination_policy +- [X] delete_delivery_source - [X] delete_destination - [ ] delete_index_policy - [ ] delete_integration @@ -45,9 +45,9 @@ logs - [ ] delete_transformer - [ ] describe_account_policies - [ ] describe_configuration_templates -- [ ] describe_deliveries -- [ ] describe_delivery_destinations -- [ ] describe_delivery_sources +- [X] describe_deliveries +- [X] describe_delivery_destinations +- [X] describe_delivery_sources - [X] describe_destinations - [X] describe_export_tasks @@ -83,10 +83,10 @@ logs - [ ] get_data_protection_policy -- [ ] get_delivery -- [ ] get_delivery_destination -- [ ] get_delivery_destination_policy -- [ ] get_delivery_source +- [X] get_delivery +- [X] get_delivery_destination +- [X] get_delivery_destination_policy +- [X] get_delivery_source - [ ] get_integration - [ ] get_log_anomaly_detector - [X] get_log_events @@ -106,9 +106,9 @@ logs - [X] list_tags_log_group - [ ] put_account_policy - [ ] put_data_protection_policy -- [ ] put_delivery_destination -- [ ] put_delivery_destination_policy -- [ ] put_delivery_source +- [X] put_delivery_destination +- [X] put_delivery_destination_policy +- [X] put_delivery_source - [X] put_destination - [X] put_destination_policy - [ ] put_index_policy diff --git a/moto/logs/exceptions.py b/moto/logs/exceptions.py index 4aea395c504b..c34d74d0475a 100644 --- a/moto/logs/exceptions.py +++ b/moto/logs/exceptions.py @@ -44,3 +44,15 @@ class LimitExceededException(LogsClientError): def __init__(self) -> None: self.code = 400 super().__init__("LimitExceededException", "Resource limit exceeded.") + + +class ValidationException(LogsClientError): + def __init__(self, msg: str) -> None: + self.code = 400 + super().__init__("ValidationException", msg) + + +class ConflictException(LogsClientError): + def __init__(self, msg: str) -> None: + self.code = 400 + super().__init__("ConflictException", msg) diff --git a/moto/logs/models.py b/moto/logs/models.py index 018b2fc55e5d..3fc541c121bc 100644 --- a/moto/logs/models.py +++ b/moto/logs/models.py @@ -7,10 +7,12 @@ from moto.core.common_models import BaseModel, CloudFormationModel from moto.core.utils import unix_time_millis, utcnow from moto.logs.exceptions import ( + ConflictException, InvalidParameterException, LimitExceededException, ResourceAlreadyExistsException, ResourceNotFoundException, + ValidationException, ) from moto.logs.logs_query import execute_query from moto.logs.metric_filters import MetricFilters @@ -760,6 +762,162 @@ def to_json(self) -> Dict[str, Any]: } +class DeliveryDestination(BaseModel): + def __init__( + self, + account_id: str, + region: str, + name: str, + output_format: Optional[str], + delivery_destination_configuration: Dict[str, str], + tags: Optional[Dict[str, str]], + policy: Optional[str] = None, + ): + self.name = name + self.output_format = output_format + self.arn = f"arn:aws:logs:{region}:{account_id}:delivery-destination:{name}" + destination_type = delivery_destination_configuration[ + "destinationResourceArn" + ].split(":")[2] + if destination_type == "s3": + self.delivery_destination_type = "S3" + elif destination_type == "logs": + self.delivery_destination_type = "CWL" + elif destination_type == "firehose": + self.delivery_destination_type = "FH" + self.delivery_destination_configuration = delivery_destination_configuration + self.tags = tags + self.policy = policy + + def to_dict(self) -> Dict[str, Any]: + dct = { + "name": self.name, + "arn": self.arn, + "deliveryDestinationType": self.delivery_destination_type, + "outputFormat": self.output_format, + "deliveryDestinationConfiguration": self.delivery_destination_configuration, + "tags": self.tags, + } + dct_items = {k: v for k, v in dct.items() if v} + return dct_items + + +class DeliverySource(BaseModel): + def __init__( + self, + account_id: str, + region: str, + name: str, + resource_arn: str, + log_type: str, + tags: Optional[Dict[str, str]], + ): + res_arns = [] + res_arns.append(resource_arn) + self.name = name + self.arn = f"arn:aws:logs:{region}:{account_id}:delivery-source:{name}" + self.resource_arns = res_arns + self.service = resource_arn.split(":")[2] + self.log_type = log_type + self.tags = tags + + def to_dict(self) -> Dict[str, Any]: + dct = { + "name": self.name, + "arn": self.arn, + "resourceArns": self.resource_arns, + "service": self.service, + "logType": self.log_type, + "tags": self.tags, + } + dct_items = {k: v for k, v in dct.items() if v} + return dct_items + + +class Delivery(BaseModel): + def __init__( + self, + account_id: str, + region: str, + delivery_source_name: str, + delivery_destination_arn: str, + destination_type: str, + record_fields: Optional[List[str]], + field_delimiter: Optional[str], + s3_delivery_configuration: Optional[Dict[str, Any]], + tags: Optional[Dict[str, str]], + ): + self.id = mock_random.get_random_string(length=16) + self.arn = f"arn:aws:logs:{region}:{account_id}:delivery:{self.id}" + self.delivery_source_name = delivery_source_name + self.delivery_destination_arn = delivery_destination_arn + self.destination_type = destination_type + # Default record fields + default_record_fields = [ + "date", + "time", + "x-edge-location", + "sc-bytes", + "c-ip", + "cs-method", + "cs(Host)", + "cs-uri-stem", + "sc-status", + "cs(Referer)", + "cs(User-Agent)", + "cs-uri-query", + "cs(Cookie)", + "x-edge-result-type", + "x-edge-request-id", + "x-host-header", + "cs-protocol", + "cs-bytes", + "time-taken", + "x-forwarded-for", + "ssl-protocol", + "ssl-cipher", + "x-edge-response-result-type", + "cs-protocol-version", + "fle-status", + "fle-encrypted-fields", + "c-port", + "time-to-first-byte", + "x-edge-detailed-result-type", + "sc-content-type", + "sc-content-len", + "sc-range-start", + "sc-range-end", + ] + self.record_fields = record_fields or default_record_fields + self.field_delimiter = field_delimiter + default_s3_configuration = {} + if destination_type == "S3": + # Default s3 configuration + default_s3_configuration = { + "suffixPath": "AWSLogs/{account-id}/CloudFront/", + "enableHiveCompatiblePath": False, + } + self.s3_delivery_configuration = ( + s3_delivery_configuration or default_s3_configuration + ) + self.tags = tags + + def to_dict(self) -> Dict[str, Any]: + dct = { + "id": self.id, + "arn": self.arn, + "deliverySourceName": self.delivery_source_name, + "deliveryDestinationArn": self.delivery_destination_arn, + "deliveryDestinationType": self.destination_type, + "recordFields": self.record_fields, + "fieldDelimiter": self.field_delimiter, + "s3DeliveryConfiguration": self.s3_delivery_configuration, + "tags": self.tags, + } + dct_items = {k: v for k, v in dct.items() if v} + return dct_items + + class LogsBackend(BaseBackend): def __init__(self, region_name: str, account_id: str): super().__init__(region_name, account_id) @@ -770,6 +928,9 @@ def __init__(self, region_name: str, account_id: str): self.destinations: Dict[str, Destination] = dict() self.tagger = TaggingService() self.export_tasks: Dict[str, ExportTask] = dict() + self.delivery_destinations: Dict[str, DeliveryDestination] = dict() + self.delivery_sources: Dict[str, DeliverySource] = dict() + self.deliveries: Dict[str, Delivery] = dict() def create_log_group( self, log_group_name: str, tags: Dict[str, str], **kwargs: Any @@ -1346,5 +1507,253 @@ def _find_log_group(self, log_group_id: str, log_group_name: str) -> LogGroup: raise ResourceNotFoundException() return log_group + def put_delivery_destination( + self, + name: str, + output_format: Optional[str], + delivery_destination_configuration: Dict[str, str], + tags: Optional[Dict[str, str]], + ) -> DeliveryDestination: + if output_format and output_format not in [ + "w3c", + "raw", + "json", + "plain", + "parquet", + ]: + msg = f"1 validation error detected: Value '{output_format}' at 'outputFormat' failed to satisfy constraint: Member must satisfy enum value set: [w3c, raw, json, plain, parquet]" + raise ValidationException(msg) + if name in self.delivery_destinations: + if tags: + raise ConflictException( + msg="Tags can only be provided when a resource is being created, not updated." + ) + if ( + output_format + and self.delivery_destinations[name].output_format != output_format + ): + msg = "Update to existing Delivery Destination with new Output Format is not allowed. Please create a new Delivery Destination instead." + raise ValidationException(msg) + delivery_destination = DeliveryDestination( + account_id=self.account_id, + region=self.region_name, + name=name, + output_format=output_format, + delivery_destination_configuration=delivery_destination_configuration, + tags=tags, + policy=None, + ) + self.delivery_destinations[name] = delivery_destination + if tags: + self.tag_resource(delivery_destination.arn, tags) + return delivery_destination + + def get_delivery_destination(self, name: str) -> DeliveryDestination: + if name not in self.delivery_destinations: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + delivery_destination = self.delivery_destinations[name] + return delivery_destination + + def describe_delivery_destinations(self) -> List[DeliveryDestination]: + # Pagination not yet implemented + delivery_destinations = list(self.delivery_destinations.values()) + return delivery_destinations + + def put_delivery_destination_policy( + self, delivery_destination_name: str, delivery_destination_policy: str + ) -> Dict[str, str]: + if delivery_destination_name not in self.delivery_destinations: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + dd = self.delivery_destinations[delivery_destination_name] + dd.policy = delivery_destination_policy + return {"deliveryDestinationPolicy": delivery_destination_policy} + + def get_delivery_destination_policy( + self, delivery_destination_name: str + ) -> Dict[str, Any]: + if delivery_destination_name not in self.delivery_destinations: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + policy = self.delivery_destinations[delivery_destination_name].policy + return {"deliveryDestinationPolicy": policy} + + def put_delivery_source( + self, name: str, resource_arn: str, log_type: str, tags: Dict[str, str] + ) -> DeliverySource: + log_types = { + "cloudfront": "ACCESS_LOGS", + "bedrock": "APPLICATION_LOGS", + "codewhisperer": "EVENT_LOGS", + "mediapackage": ["EGRESS_ACCESS_LOGS", "INGRESS_ACCESS_LOGS"], + "mediatailor": [ + "AD_DECISION_SERVER_LOGS", + "MANIFEST_SERVICE_LOGS", + "TRANSCODE_LOGS", + ], + "sso": "ERROR_LOGS", + "qdeveloper": "EVENT_LOGS", + "ses": "APPLICATION_LOG", + "workmail": [ + "ACCESS_CONTROL_LOGS", + "AUTHENTICATION_LOGS", + "WORKMAIL_AVAILABILITY_PROVIDER_LOGS", + "WORKMAIL_MAILBOX_ACCESS_LOGS", + "WORKMAIL_PERSONAL_ACCESS_TOKEN_LOGS", + ], + } + resource_type = resource_arn.split(":")[2] + + if resource_type not in log_types: + raise ResourceNotFoundException(msg="Cannot access provided service.") + + if log_type not in log_types[resource_type]: + raise ValidationException( + msg=" This service is not allowed for this LogSource." + ) + + if name in self.delivery_sources: + if tags: + raise ConflictException( + msg="Tags can only be provided when a resource is being created, not updated." + ) + if resource_arn not in self.delivery_sources[name].resource_arns: + raise ConflictException( + msg="Update to existing Delivery Source with new ResourceId is not allowed. Please create a new Delivery Source instead." + ) + delivery_source = DeliverySource( + account_id=self.account_id, + region=self.region_name, + name=name, + resource_arn=resource_arn, + log_type=log_type, + tags=tags, + ) + self.delivery_sources[name] = delivery_source + if tags: + self.tag_resource(delivery_source.arn, tags) + return delivery_source + + def describe_delivery_sources(self) -> List[DeliverySource]: + # Pagination not yet implemented + delivery_sources = list(self.delivery_sources.values()) + return delivery_sources + + def get_delivery_source(self, name: str) -> DeliverySource: + if name not in self.delivery_sources: + raise ResourceNotFoundException( + msg="Requested Delivery Source does not exist in this account.." + ) + delivery_source = self.delivery_sources[name] + return delivery_source + + def create_delivery( + self, + delivery_source_name: str, + delivery_destination_arn: str, + record_fields: Optional[List[str]], + field_delimiter: Optional[str], + s3_delivery_configuration: Optional[Dict[str, Any]], + tags: Optional[Dict[str, str]], + ) -> Delivery: + if delivery_source_name not in self.delivery_sources: + raise ResourceNotFoundException( + msg="Requested Delivery Source does not exist in this account." + ) + if delivery_destination_arn not in [ + dd.arn for dd in self.delivery_destinations.values() + ]: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + + for delivery in self.deliveries.values(): + if ( + delivery.delivery_source_name == delivery_source_name + and delivery.delivery_destination_arn == delivery_destination_arn + ): + raise ConflictException(msg="The specified Delivery already exists") + if delivery.delivery_source_name == delivery_source_name: + for dd in self.delivery_destinations.values(): + if ( + dd.arn == delivery_destination_arn + and delivery.destination_type == dd.delivery_destination_type + ): + raise ConflictException( + msg="Delivery already exists for this Delivery Source with the same Delivery Destination Type." + ) + + for dd in list(self.delivery_destinations.values()): + if dd.arn == delivery_destination_arn: + destination_type = dd.delivery_destination_type + + delivery = Delivery( + account_id=self.account_id, + region=self.region_name, + delivery_source_name=delivery_source_name, + delivery_destination_arn=delivery_destination_arn, + destination_type=destination_type, + record_fields=record_fields, + field_delimiter=field_delimiter, + s3_delivery_configuration=s3_delivery_configuration, + tags=tags, + ) + self.deliveries[delivery.id] = delivery + if tags: + self.tag_resource(delivery.arn, tags) + return delivery + + def describe_deliveries(self) -> List[Delivery]: + # Pagination not yet implemented + deliveries = list(self.deliveries.values()) + return deliveries + + def get_delivery(self, id: str) -> Delivery: + if id not in self.deliveries: + raise ResourceNotFoundException( + msg="Requested Delivery does not exist in this account." + ) + delivery = self.deliveries[id] + return delivery + + def delete_delivery(self, id: str) -> None: + if id not in self.deliveries: + raise ResourceNotFoundException( + msg="Requested Delivery does not exist in this account." + ) + self.deliveries.pop(id) + return + + def delete_delivery_destination(self, name: str) -> None: + if name not in self.delivery_destinations: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + self.delivery_destinations.pop(name) + return + + def delete_delivery_destination_policy( + self, delivery_destination_name: str + ) -> None: + delivery_destination = self.delivery_destinations.get(delivery_destination_name) + if not delivery_destination: + raise ResourceNotFoundException( + msg="Requested Delivery Destination does not exist in this account." + ) + delivery_destination.policy = None + return + + def delete_delivery_source(self, name: str) -> None: + if name not in self.delivery_sources: + raise ResourceNotFoundException( + msg="Requested Delivery Source does not exist in this account." + ) + self.delivery_sources.pop(name) + return + logs_backends = BackendDict(LogsBackend, "logs") diff --git a/moto/logs/responses.py b/moto/logs/responses.py index b6522f4d76c9..e374ebd6252f 100644 --- a/moto/logs/responses.py +++ b/moto/logs/responses.py @@ -474,3 +474,129 @@ def untag_resource(self) -> str: tag_keys = self._get_param("tagKeys") self.logs_backend.untag_resource(resource_arn, tag_keys) return "{}" + + def put_delivery_destination(self) -> str: + name = self._get_param("name") + output_format = self._get_param("outputFormat") + delivery_destination_configuration = self._get_param( + "deliveryDestinationConfiguration" + ) + tags = self._get_param("tags") + delivery_destination = self.logs_backend.put_delivery_destination( + name=name, + output_format=output_format, + delivery_destination_configuration=delivery_destination_configuration, + tags=tags, + ) + return json.dumps(dict(deliveryDestination=delivery_destination.to_dict())) + + def get_delivery_destination(self) -> str: + name = self._get_param("name") + delivery_destination = self.logs_backend.get_delivery_destination( + name=name, + ) + return json.dumps(dict(deliveryDestination=delivery_destination.to_dict())) + + def describe_delivery_destinations(self) -> str: + delivery_destinations = self.logs_backend.describe_delivery_destinations() + return json.dumps( + dict(deliveryDestinations=[dd.to_dict() for dd in delivery_destinations]) + ) + + def put_delivery_destination_policy(self) -> str: + delivery_destination_name = self._get_param("deliveryDestinationName") + delivery_destination_policy = self._get_param("deliveryDestinationPolicy") + policy = self.logs_backend.put_delivery_destination_policy( + delivery_destination_name=delivery_destination_name, + delivery_destination_policy=delivery_destination_policy, + ) + return json.dumps(dict(policy=policy)) + + def get_delivery_destination_policy(self) -> str: + delivery_destination_name = self._get_param("deliveryDestinationName") + policy = self.logs_backend.get_delivery_destination_policy( + delivery_destination_name=delivery_destination_name, + ) + return json.dumps(dict(policy=policy)) + + def put_delivery_source(self) -> str: + name = self._get_param("name") + resource_arn = self._get_param("resourceArn") + log_type = self._get_param("logType") + tags = self._get_param("tags") + delivery_source = self.logs_backend.put_delivery_source( + name=name, + resource_arn=resource_arn, + log_type=log_type, + tags=tags, + ) + return json.dumps(dict(deliverySource=delivery_source.to_dict())) + + def describe_delivery_sources(self) -> str: + delivery_sources = self.logs_backend.describe_delivery_sources() + return json.dumps( + dict(deliverySources=[ds.to_dict() for ds in delivery_sources]) + ) + + def get_delivery_source(self) -> str: + name = self._get_param("name") + delivery_source = self.logs_backend.get_delivery_source( + name=name, + ) + return json.dumps(dict(deliverySource=delivery_source.to_dict())) + + def create_delivery(self) -> str: + delivery_source_name = self._get_param("deliverySourceName") + delivery_destination_arn = self._get_param("deliveryDestinationArn") + record_fields = self._get_param("recordFields") + field_delimiter = self._get_param("fieldDelimiter") + s3_delivery_configuration = self._get_param("s3DeliveryConfiguration") + tags = self._get_param("tags") + delivery = self.logs_backend.create_delivery( + delivery_source_name=delivery_source_name, + delivery_destination_arn=delivery_destination_arn, + record_fields=record_fields, + field_delimiter=field_delimiter, + s3_delivery_configuration=s3_delivery_configuration, + tags=tags, + ) + return json.dumps(dict(delivery=delivery.to_dict())) + + def describe_deliveries(self) -> str: + deliveries = self.logs_backend.describe_deliveries() + return json.dumps(dict(deliveries=[d.to_dict() for d in deliveries])) + + def get_delivery(self) -> str: + id = self._get_param("id") + delivery = self.logs_backend.get_delivery( + id=id, + ) + return json.dumps(dict(delivery=delivery.to_dict())) + + def delete_delivery(self) -> str: + id = self._get_param("id") + self.logs_backend.delete_delivery( + id=id, + ) + return "" + + def delete_delivery_destination(self) -> str: + name = self._get_param("name") + self.logs_backend.delete_delivery_destination( + name=name, + ) + return "" + + def delete_delivery_destination_policy(self) -> str: + delivery_destination_name = self._get_param("deliveryDestinationName") + self.logs_backend.delete_delivery_destination_policy( + delivery_destination_name=delivery_destination_name, + ) + return "" + + def delete_delivery_source(self) -> str: + name = self._get_param("name") + self.logs_backend.delete_delivery_source( + name=name, + ) + return "" diff --git a/tests/test_logs/test_logs.py b/tests/test_logs/test_logs.py index cec52981c563..d686fe6eafa6 100644 --- a/tests/test_logs/test_logs.py +++ b/tests/test_logs/test_logs.py @@ -48,6 +48,25 @@ } ) +delivery_destination_policy = json.dumps( + { + "Version": "2012-10-17", + "Statement": [ + { + "Sid": "AllowLogDeliveryActions", + "Effect": "Allow", + "Principal": {"AWS": "arn:aws:iam::123456789012:root"}, + "Action": "logs:CreateDelivery", + "Resource": [ + f"arn:aws:logs:{TEST_REGION}:123456789012:delivery-source:*", + f"arn:aws:logs:{TEST_REGION}:123456789012:delivery:*", + f"arn:aws:logs:{TEST_REGION}:123456789012:delivery-destination:*", + ], + } + ], + } +) + @pytest.fixture(name="log_group_name") def create_log_group(): @@ -1165,3 +1184,475 @@ def test_describe_log_streams_no_prefix(): err = ex.value.response["Error"] assert err["Code"] == "InvalidParameterException" assert err["Message"] == "Cannot order by LastEventTime with a logStreamNamePrefix." + + +@mock_aws +def test_put_delivery_destination(): + client = boto3.client("logs", "us-east-1") + resp = client.put_delivery_destination( + name="test-delivery-destination", + outputFormat="json", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + tags={"key1": "value1"}, + ) + delivery_destination = resp["deliveryDestination"] + assert delivery_destination["name"] == "test-delivery-destination" + assert delivery_destination["outputFormat"] == "json" + assert delivery_destination["deliveryDestinationConfiguration"] == { + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + } + assert delivery_destination["tags"] == {"key1": "value1"} + + # Invalid OutputFormat + with pytest.raises(ClientError) as ex: + client.put_delivery_destination( + name="test-dd", + outputFormat="foobar", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + err = ex.value.response["Error"] + assert err["Code"] == "ValidationException" + + # Cannot update OutoutFormat + with pytest.raises(ClientError) as ex: + client.put_delivery_destination( + name="test-delivery-destination", + outputFormat="plain", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + err = ex.value.response["Error"] + assert err["Code"] == "ValidationException" + + +@mock_aws +def test_put_delivery_destination_update(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + # Update destination resource + resp = client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket-2" + }, + ) + delivery_destination = resp["deliveryDestination"] + assert delivery_destination["deliveryDestinationConfiguration"] == { + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket-2" + } + + +@mock_aws +def test_get_delivery_destination(): + client = boto3.client("logs", "us-east-1") + for i in range(1, 3): + client.put_delivery_destination( + name=f"test-delivery-destination-{i}", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + resp = client.get_delivery_destination(name="test-delivery-destination-1") + assert "deliveryDestination" in resp + assert resp["deliveryDestination"]["name"] == "test-delivery-destination-1" + + # Invalid name for delivery destination + with pytest.raises(ClientError) as ex: + client.get_delivery_destination( + name="foobar", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_describe_delivery_destinations(): + client = boto3.client("logs", "us-east-1") + for i in range(1, 3): + client.put_delivery_destination( + name=f"test-delivery-destination-{i}", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + resp = client.describe_delivery_destinations() + assert len(resp["deliveryDestinations"]) == 2 + + +@mock_aws +def test_put_delivery_destination_policy(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + resp = client.put_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination", + deliveryDestinationPolicy=delivery_destination_policy, + ) + assert "policy" in resp + + # Invalid name for destination policy + with pytest.raises(ClientError) as ex: + client.put_delivery_destination_policy( + deliveryDestinationName="foobar", + deliveryDestinationPolicy=delivery_destination_policy, + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_get_delivery_destination_policy(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + client.put_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination", + deliveryDestinationPolicy=delivery_destination_policy, + ) + resp = client.get_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination" + ) + assert "deliveryDestinationPolicy" in resp["policy"] + + # Invalide name for destination policy + with pytest.raises(ClientError) as ex: + client.get_delivery_destination_policy( + deliveryDestinationName="foobar", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_put_delivery_source(): + client = boto3.client("logs", "us-east-1") + resp = client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E1Q5F5862X9VJ5", + logType="ACCESS_LOGS", + tags={"key1": "value1"}, + ) + assert "deliverySource" in resp + assert "name" in resp["deliverySource"] + assert "arn" in resp["deliverySource"] + assert "resourceArns" in resp["deliverySource"] + assert "service" in resp["deliverySource"] + assert "logType" in resp["deliverySource"] + assert "tags" in resp["deliverySource"] + + # Invalid resource source. + with pytest.raises(ClientError) as ex: + client.put_delivery_source( + name="test-ds", + resourceArn="arn:aws:s3:::test-s3-bucket", # S3 cannot be a source + logType="ACCESS_LOGS", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + # Invalid Log type + with pytest.raises(ClientError) as ex: + client.put_delivery_source( + name="test-ds", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E1Q5F5862X9VJ5", + logType="EVENT_LOGS", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ValidationException" + + # Cannot update resource source with a differen resourceArn + with pytest.raises(ClientError) as ex: + client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ConflictException" + + +@mock_aws +def test_describe_delivery_sources(): + client = boto3.client("logs", "us-east-1") + for i in range(1, 3): + client.put_delivery_source( + name=f"test-delivery-source-{i}", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + resp = client.describe_delivery_sources() + assert len(resp["deliverySources"]) == 2 + + +@mock_aws +def test_get_delivery_source(): + client = boto3.client("logs", "us-east-1") + for i in range(1, 3): + client.put_delivery_source( + name=f"test-delivery-source-{i}", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + resp = client.get_delivery_source(name="test-delivery-source-1") + assert "deliverySource" in resp + assert resp["deliverySource"]["name"] == "test-delivery-source-1" + + # Invalid name for delivery source + with pytest.raises(ClientError) as ex: + client.get_delivery_source( + name="foobar", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_create_delivery(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + resp = client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination", + recordFields=[ + "date", + ], + fieldDelimiter=",", + s3DeliveryConfiguration={ + "suffixPath": "AWSLogs/123456789012/CloudFront/", + "enableHiveCompatiblePath": True, + }, + tags={"key1": "value1"}, + ) + assert "delivery" in resp + assert "id" in resp["delivery"] + assert "arn" in resp["delivery"] + assert "deliverySourceName" in resp["delivery"] + assert "deliveryDestinationArn" in resp["delivery"] + assert "deliveryDestinationType" in resp["delivery"] + assert "recordFields" in resp["delivery"] + assert "fieldDelimiter" in resp["delivery"] + assert "s3DeliveryConfiguration" in resp["delivery"] + assert "tags" in resp["delivery"] + + # Invalid delivery source + with pytest.raises(ClientError) as ex: + client.create_delivery( + deliverySourceName="foobar", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination", + ) + err = ex.value.response["Error"] + + # Invalid Delivery destination + with pytest.raises(ClientError) as ex: + client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:foobar", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + # Delivery already exists + with pytest.raises(ClientError) as ex: + client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination", + ) + err = ex.value.response["Error"] + assert err["Code"] == "ConflictException" + + +@mock_aws +def test_describe_deliveries(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + client.put_delivery_destination( + name="test-delivery-destination-1", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + client.put_delivery_destination( + name="test-delivery-destination-2", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:firehose:us-east-1:123456789012:deliverystream/test-delivery-stream" + }, + ) + for i in range(1, 3): + client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn=f"arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination-{i}", + ) + resp = client.describe_deliveries() + assert len(resp["deliveries"]) == 2 + + +@mock_aws +def test_get_delivery(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + delivery = client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination", + ) + delivery_id = delivery["delivery"]["id"] + resp = client.get_delivery(id=delivery_id) + assert "delivery" in resp + assert resp["delivery"]["id"] == delivery_id + + # Invalid delivery id + with pytest.raises(ClientError) as ex: + client.get_delivery(id="foobar") + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_delete_delivery(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E19DL18TOXN9JU", + logType="ACCESS_LOGS", + ) + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + delivery = client.create_delivery( + deliverySourceName="test-delivery-source", + deliveryDestinationArn="arn:aws:logs:us-east-1:123456789012:delivery-destination:test-delivery-destination", + ) + delivery_id = delivery["delivery"]["id"] + resp = client.describe_deliveries() + assert len(resp["deliveries"]) == 1 + client.delete_delivery(id=delivery_id) + resp = client.describe_deliveries() + assert len(resp["deliveries"]) == 0 + + # invalid delivery id + with pytest.raises(ClientError) as ex: + client.delete_delivery(id="foobar") + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_delete_delivery_destination(): + client = boto3.client("logs", "us-east-1") + resp = client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + delivery_destination = resp["deliveryDestination"] + resp = client.describe_delivery_destinations() + assert len(resp["deliveryDestinations"]) == 1 + resp = client.delete_delivery_destination(name=delivery_destination["name"]) + resp = client.describe_delivery_destinations() + assert len(resp["deliveryDestinations"]) == 0 + + # Invalid name for delivery destination + with pytest.raises(ClientError) as ex: + client.delete_delivery_destination(name="foobar") + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_delete_delivery_destination_policy(): + client = boto3.client("logs", "us-east-1") + client.put_delivery_destination( + name="test-delivery-destination", + deliveryDestinationConfiguration={ + "destinationResourceArn": "arn:aws:s3:::test-s3-bucket" + }, + ) + client.put_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination", + deliveryDestinationPolicy=delivery_destination_policy, + ) + resp = client.get_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination" + ) + policy = resp["policy"] + assert "deliveryDestinationPolicy" in policy + client.delete_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination" + ) + resp = client.get_delivery_destination_policy( + deliveryDestinationName="test-delivery-destination" + ) + assert resp["policy"] == {} + + # Invalid name for delivery destination policy + with pytest.raises(ClientError) as ex: + client.delete_delivery_destination_policy(deliveryDestinationName="test") + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" + + +@mock_aws +def test_delete_delivery_source(): + client = boto3.client("logs", "us-east-1") + resp = client.put_delivery_source( + name="test-delivery-source", + resourceArn="arn:aws:cloudfront::123456789012:distribution/E1Q5F5862X9VJ5", + logType="ACCESS_LOGS", + ) + delivery_source = resp["deliverySource"] + resp = client.describe_delivery_sources() + assert len(resp["deliverySources"]) == 1 + client.delete_delivery_source(name=delivery_source["name"]) + resp = client.describe_delivery_sources() + assert len(resp["deliverySources"]) == 0 + + # Invalid name for delivery source + with pytest.raises(ClientError) as ex: + client.delete_delivery_source(name="foobar") + err = ex.value.response["Error"] + assert err["Code"] == "ResourceNotFoundException" From c2d61ae6d6e5bfac7b51c8e86059f67e28cb5b0a Mon Sep 17 00:00:00 2001 From: Aman Date: Sat, 22 Feb 2025 08:12:33 -0500 Subject: [PATCH 083/103] CloudHSMv2 Integration (#8532) --- IMPLEMENTATION_COVERAGE.md | 25 +- docs/docs/services/cloudhsmv2.rst | 37 +++ moto/backend_index.py | 2 + moto/cloudhsmv2/__init__.py | 1 + moto/cloudhsmv2/exceptions.py | 24 ++ moto/cloudhsmv2/models.py | 300 +++++++++++++++++++++ moto/cloudhsmv2/responses.py | 160 ++++++++++++ moto/cloudhsmv2/urls.py | 12 + tests/test_cloudhsmv2/__init__.py | 0 tests/test_cloudhsmv2/test_cloudhsmv2.py | 317 +++++++++++++++++++++++ 10 files changed, 877 insertions(+), 1 deletion(-) create mode 100644 docs/docs/services/cloudhsmv2.rst create mode 100644 moto/cloudhsmv2/__init__.py create mode 100644 moto/cloudhsmv2/exceptions.py create mode 100644 moto/cloudhsmv2/models.py create mode 100644 moto/cloudhsmv2/responses.py create mode 100644 moto/cloudhsmv2/urls.py create mode 100644 tests/test_cloudhsmv2/__init__.py create mode 100644 tests/test_cloudhsmv2/test_cloudhsmv2.py diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index 35182915684c..2bbb9454f83b 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -1215,6 +1215,30 @@ - [ ] update_vpc_origin
+## cloudhsmv2 +
+50% implemented + +- [ ] copy_backup_to_region +- [X] create_cluster +- [ ] create_hsm +- [ ] delete_backup +- [X] delete_cluster +- [ ] delete_hsm +- [ ] delete_resource_policy +- [X] describe_backups +- [X] describe_clusters +- [X] get_resource_policy +- [ ] initialize_cluster +- [X] list_tags +- [ ] modify_backup_attributes +- [ ] modify_cluster +- [X] put_resource_policy +- [ ] restore_backup +- [X] tag_resource +- [X] untag_resource +
+ ## cloudtrail
28% implemented @@ -9537,7 +9561,6 @@ - clouddirectory - cloudfront-keyvaluestore - cloudhsm -- cloudhsmv2 - cloudsearch - cloudsearchdomain - cloudtrail-data diff --git a/docs/docs/services/cloudhsmv2.rst b/docs/docs/services/cloudhsmv2.rst new file mode 100644 index 000000000000..273b16c7156d --- /dev/null +++ b/docs/docs/services/cloudhsmv2.rst @@ -0,0 +1,37 @@ +.. _implementedservice_cloudhsmv2: + +.. |start-h3| raw:: html + +

+ +.. |end-h3| raw:: html + +

+ +========== +cloudhsmv2 +========== + +.. autoclass:: moto.cloudhsmv2.models.CloudHSMV2Backend + +|start-h3| Implemented features for this service |end-h3| + +- [ ] copy_backup_to_region +- [X] create_cluster +- [ ] create_hsm +- [ ] delete_backup +- [X] delete_cluster +- [ ] delete_hsm +- [ ] delete_resource_policy +- [X] describe_backups +- [X] describe_clusters +- [X] get_resource_policy +- [ ] initialize_cluster +- [X] list_tags +- [ ] modify_backup_attributes +- [ ] modify_cluster +- [X] put_resource_policy +- [ ] restore_backup +- [X] tag_resource +- [X] untag_resource + diff --git a/moto/backend_index.py b/moto/backend_index.py index c0480579c431..81bc73472c9f 100644 --- a/moto/backend_index.py +++ b/moto/backend_index.py @@ -29,6 +29,8 @@ ("cloudformation", re.compile("https?://cloudformation\\.(.+)\\.amazonaws\\.com")), ("cloudfront", re.compile("https?://cloudfront\\.amazonaws\\.com")), ("cloudfront", re.compile("https?://cloudfront\\.(.+)\\.amazonaws\\.com")), + ("cloudhsmv2", re.compile("https?://cloudhsm\\.(.+)\\.amazonaws\\.com")), + ("cloudhsmv2", re.compile("https?://cloudhsmv2\\.(.+)\\.amazonaws\\.com")), ("cloudtrail", re.compile("https?://cloudtrail\\.(.+)\\.amazonaws\\.com")), ("cloudwatch", re.compile("https?://monitoring\\.(.+)\\.amazonaws.com")), ("codebuild", re.compile("https?://codebuild\\.(.+)\\.amazonaws\\.com")), diff --git a/moto/cloudhsmv2/__init__.py b/moto/cloudhsmv2/__init__.py new file mode 100644 index 000000000000..f64d2192ad66 --- /dev/null +++ b/moto/cloudhsmv2/__init__.py @@ -0,0 +1 @@ +from .models import cloudhsmv2_backends # noqa: F401 diff --git a/moto/cloudhsmv2/exceptions.py b/moto/cloudhsmv2/exceptions.py new file mode 100644 index 000000000000..02e7271abd0a --- /dev/null +++ b/moto/cloudhsmv2/exceptions.py @@ -0,0 +1,24 @@ +"""Exceptions raised by the cloudhsmv2 service.""" + +from moto.core.exceptions import JsonRESTError + + +class CloudHSMv2ClientError(JsonRESTError): + """Base class for CloudHSMv2 errors.""" + + code = 400 + + +class ResourceNotFoundException(CloudHSMv2ClientError): + def __init__(self, message: str): + super().__init__("ResourceNotFoundException", message) + + +class InvalidRequestException(CloudHSMv2ClientError): + def __init__(self, message: str): + super().__init__("InvalidRequestException", message) + + +class ClientError(CloudHSMv2ClientError): + def __init__(self, error_type: str, message: str): + super().__init__(error_type, message) diff --git a/moto/cloudhsmv2/models.py b/moto/cloudhsmv2/models.py new file mode 100644 index 000000000000..ffcda110d4a3 --- /dev/null +++ b/moto/cloudhsmv2/models.py @@ -0,0 +1,300 @@ +"""CloudHSMV2Backend class with methods for supported APIs.""" + +import uuid +from typing import Any, Dict, List, Optional, Tuple + +from moto.core.base_backend import BackendDict, BaseBackend +from moto.core.utils import utcnow +from moto.utilities.paginator import Paginator, paginate + +from .exceptions import ResourceNotFoundException + + +class Cluster: + def __init__( + self, + backup_retention_policy: Optional[Dict[str, str]], + hsm_type: str, + source_backup_id: Optional[str], + subnet_ids: List[str], + network_type: str = "IPV4", + tag_list: Optional[List[Dict[str, str]]] = None, + mode: str = "DEFAULT", + region_name: str = "us-east-1", + ): + self.cluster_id = str(uuid.uuid4()) + self.backup_policy = "DEFAULT" + self.backup_retention_policy = backup_retention_policy + self.create_timestamp = utcnow() + self.hsms: List[Dict[str, Any]] = [] + self.hsm_type = hsm_type + self.source_backup_id = source_backup_id + self.state = "ACTIVE" + self.state_message = "The cluster is ready for use." + self.subnet_mapping = {subnet_id: region_name for subnet_id in subnet_ids} + self.vpc_id = "vpc-" + str(uuid.uuid4())[:8] + self.network_type = network_type + self.certificates = { + "ClusterCsr": "", + "HsmCertificate": "", + "AwsHardwareCertificate": "", + "ManufacturerHardwareCertificate": "", + "ClusterCertificate": "", + } + self.tag_list = tag_list or [] + self.mode = mode + + def to_dict(self) -> Dict[str, Any]: + return { + "BackupPolicy": self.backup_policy, + "BackupRetentionPolicy": self.backup_retention_policy, + "ClusterId": self.cluster_id, + "CreateTimestamp": self.create_timestamp, + "Hsms": self.hsms, + "HsmType": self.hsm_type, + "SourceBackupId": self.source_backup_id, + "State": self.state, + "StateMessage": self.state_message, + "SubnetMapping": self.subnet_mapping, + "VpcId": self.vpc_id, + "NetworkType": self.network_type, + "Certificates": self.certificates, + "TagList": self.tag_list, + "Mode": self.mode, + } + + +class Backup: + def __init__( + self, + cluster_id: str, + hsm_type: str, + mode: str, + tag_list: Optional[List[Dict[str, str]]], + source_backup: Optional[str] = None, + source_cluster: Optional[str] = None, + source_region: Optional[str] = None, + never_expires: bool = False, + region_name: str = "us-east-1", + ): + self.backup_id = str(uuid.uuid4()) + self.backup_arn = ( + f"arn:aws:cloudhsm:{region_name}:123456789012:backup/{self.backup_id}" + ) + self.backup_state = "READY" + self.cluster_id = cluster_id + self.create_timestamp = utcnow() + self.copy_timestamp = utcnow() if source_backup else None + self.never_expires = never_expires + self.source_region = source_region + self.source_backup = source_backup + self.source_cluster = source_cluster + self.delete_timestamp = None + self.tag_list = tag_list or [] + self.hsm_type = hsm_type + self.mode = mode + + def to_dict(self) -> Dict[str, Any]: + result = { + "BackupId": self.backup_id, + "BackupArn": self.backup_arn, + "BackupState": self.backup_state, + "ClusterId": self.cluster_id, + "CreateTimestamp": self.create_timestamp, + "NeverExpires": self.never_expires, + "TagList": self.tag_list, + "HsmType": self.hsm_type, + "Mode": self.mode, + } + + if self.copy_timestamp: + result["CopyTimestamp"] = self.copy_timestamp + if self.source_region: + result["SourceRegion"] = self.source_region + if self.source_backup: + result["SourceBackup"] = self.source_backup + if self.source_cluster: + result["SourceCluster"] = self.source_cluster + if self.delete_timestamp: + result["DeleteTimestamp"] = self.delete_timestamp + + return result + + +class CloudHSMV2Backend(BaseBackend): + """Implementation of CloudHSMV2 APIs.""" + + PAGINATION_MODEL = { + "describe_clusters": { + "input_token": "next_token", + "limit_key": "max_results", + "limit_default": 100, + "unique_attribute": "ClusterId", + "fail_on_invalid_token": False, + } + } + + def __init__(self, region_name: str, account_id: str) -> None: + super().__init__(region_name, account_id) + self.tags: Dict[str, List[Dict[str, str]]] = {} + self.clusters: Dict[str, Cluster] = {} + self.resource_policies: Dict[str, str] = {} + self.backups: Dict[str, Backup] = {} + + def list_tags( + self, resource_id: str, next_token: str, max_results: int + ) -> Tuple[List[Dict[str, str]], Optional[str]]: + """NEED TO IMPLEMENT PAGINATION""" + if resource_id not in self.tags: + return [], None + + tags = sorted(self.tags.get(resource_id, []), key=lambda x: x["Key"]) + + return tags, None + + def tag_resource( + self, resource_id: str, tag_list: List[Dict[str, str]] + ) -> Dict[str, Any]: + if resource_id not in self.tags: + self.tags[resource_id] = [] + + for new_tag in tag_list: + tag_exists = False + for existing_tag in self.tags[resource_id]: + if existing_tag["Key"] == new_tag["Key"]: + existing_tag["Value"] = new_tag["Value"] + tag_exists = True + break + if not tag_exists: + self.tags[resource_id].append(new_tag) + + return {} + + def untag_resource( + self, resource_id: str, tag_key_list: List[str] + ) -> Dict[str, Any]: + if resource_id in self.tags: + self.tags[resource_id] = [ + tag for tag in self.tags[resource_id] if tag["Key"] not in tag_key_list + ] + + return {} + + def create_cluster( + self, + backup_retention_policy: Optional[Dict[str, str]], + hsm_type: str, + source_backup_id: Optional[str], + subnet_ids: List[str], + network_type: Optional[str], + tag_list: Optional[List[Dict[str, str]]], + mode: Optional[str], + ) -> Dict[str, Any]: + cluster = Cluster( + backup_retention_policy=backup_retention_policy, + hsm_type=hsm_type, + source_backup_id=source_backup_id, + subnet_ids=subnet_ids, + network_type=network_type or "IPV4", + tag_list=tag_list, + mode=mode or "DEFAULT", + region_name=self.region_name, + ) + self.clusters[cluster.cluster_id] = cluster + + backup = Backup( + cluster_id=cluster.cluster_id, + hsm_type=hsm_type, + mode=mode or "DEFAULT", + tag_list=tag_list, + region_name=self.region_name, + ) + self.backups[backup.backup_id] = backup + + return cluster.to_dict() + + def delete_cluster(self, cluster_id: str) -> Dict[str, Any]: + if cluster_id not in self.clusters: + raise ResourceNotFoundException(f"Cluster {cluster_id} not found") + + cluster = self.clusters[cluster_id] + cluster.state = "DELETED" + cluster.state_message = "Cluster deleted" + del self.clusters[cluster_id] + return cluster.to_dict() + + @paginate(pagination_model=PAGINATION_MODEL) + def describe_clusters( + self, filters: Optional[Dict[str, List[str]]] = None + ) -> List[Dict[str, str]]: + """List all clusters with optional filtering. + + Args: + filters: Optional dictionary of filters to apply + + Returns: + List of cluster dictionaries + """ + clusters = list(self.clusters.values()) + + if filters: + for key, values in filters.items(): + if key == "clusterIds": + clusters = [c for c in clusters if c.cluster_id in values] + elif key == "states": + clusters = [c for c in clusters if c.state in values] + elif key == "vpcIds": + clusters = [c for c in clusters if c.vpc_id in values] + + clusters = sorted(clusters, key=lambda x: x.create_timestamp) + return [c.to_dict() for c in clusters] + + def get_resource_policy(self, resource_arn: str) -> Optional[str]: + return self.resource_policies.get(resource_arn) + + def describe_backups( + self, + next_token: Optional[str], + max_results: Optional[int], + filters: Optional[Dict[str, List[str]]], + shared: Optional[bool], + sort_ascending: Optional[bool], + ) -> Tuple[List[Dict[str, Any]], Optional[str]]: + backups = list(self.backups.values()) + + if filters: + for key, values in filters.items(): + if key == "backupIds": + backups = [b for b in backups if b.backup_id in values] + elif key == "sourceBackupIds": + backups = [b for b in backups if b.source_backup in values] + elif key == "clusterIds": + backups = [b for b in backups if b.cluster_id in values] + elif key == "states": + backups = [b for b in backups if b.backup_state in values] + elif key == "neverExpires": + never_expires = values[0].lower() == "true" + backups = [b for b in backups if b.never_expires == never_expires] + + backups.sort( + key=lambda x: x.create_timestamp, + reverse=not sort_ascending if sort_ascending is not None else True, + ) + if not max_results: + return [b.to_dict() for b in backups], None + + paginator = Paginator( + max_results=max_results, + unique_attribute="BackupId", + starting_token=next_token, + fail_on_invalid_token=False, + ) + results, token = paginator.paginate([b.to_dict() for b in backups]) + return results, token + + def put_resource_policy(self, resource_arn: str, policy: str) -> Dict[str, str]: + self.resource_policies[resource_arn] = policy + return {"ResourceArn": resource_arn, "Policy": policy} + + +cloudhsmv2_backends = BackendDict(CloudHSMV2Backend, "cloudhsmv2") diff --git a/moto/cloudhsmv2/responses.py b/moto/cloudhsmv2/responses.py new file mode 100644 index 000000000000..016fdc43357a --- /dev/null +++ b/moto/cloudhsmv2/responses.py @@ -0,0 +1,160 @@ +"""Handles incoming cloudhsmv2 requests, invokes methods, returns responses.""" + +import json +from datetime import datetime +from typing import Any + +from moto.core.responses import BaseResponse + +from .models import CloudHSMV2Backend, cloudhsmv2_backends + + +class DateTimeEncoder(json.JSONEncoder): + def default(self, o: Any) -> Any: + if isinstance(o, datetime): + return o.isoformat() + + return super().default(o) + + +class CloudHSMV2Response(BaseResponse): + """Handler for CloudHSMV2 requests and responses.""" + + def __init__(self) -> None: + super().__init__(service_name="cloudhsmv2") + + @property + def cloudhsmv2_backend(self) -> CloudHSMV2Backend: + """Return backend instance specific for this region.""" + return cloudhsmv2_backends[self.current_account][self.region] + + def list_tags(self) -> str: + params = json.loads(self.body) + + resource_id = params.get("ResourceId") + next_token = params.get("NextToken") + max_results = params.get("MaxResults") + + tag_list, next_token = self.cloudhsmv2_backend.list_tags( + resource_id=resource_id, + next_token=next_token, + max_results=max_results, + ) + + return json.dumps({"TagList": tag_list, "NextToken": next_token}) + + def tag_resource(self) -> str: + params = json.loads(self.body) + + resource_id = params.get("ResourceId") + tag_list = params.get("TagList") + + self.cloudhsmv2_backend.tag_resource( + resource_id=resource_id, + tag_list=tag_list, + ) + return json.dumps(dict()) + + def untag_resource(self) -> str: + params = json.loads(self.body) + + resource_id = params.get("ResourceId") + tag_key_list = params.get("TagKeyList") + self.cloudhsmv2_backend.untag_resource( + resource_id=resource_id, + tag_key_list=tag_key_list, + ) + return json.dumps(dict()) + + def create_cluster(self) -> str: + backup_retention_policy = self._get_param("BackupRetentionPolicy", {}) + hsm_type = self._get_param("HsmType") + source_backup_id = self._get_param("SourceBackupId") + subnet_ids = self._get_param("SubnetIds", []) + network_type = self._get_param("NetworkType") + tag_list = self._get_param("TagList") + mode = self._get_param("Mode") + + cluster = self.cloudhsmv2_backend.create_cluster( + backup_retention_policy=backup_retention_policy, + hsm_type=hsm_type, + source_backup_id=source_backup_id, + subnet_ids=subnet_ids, + network_type=network_type, + tag_list=tag_list, + mode=mode, + ) + return json.dumps({"Cluster": cluster}, cls=DateTimeEncoder) + + def delete_cluster(self) -> str: + params = json.loads(self.body) + + cluster_id = params.get("ClusterId") + + cluster = self.cloudhsmv2_backend.delete_cluster(cluster_id=cluster_id) + return json.dumps({"Cluster": cluster}, cls=DateTimeEncoder) + + def describe_clusters(self) -> str: + params = json.loads(self.body) + + filters = params.get("Filters", {}) + next_token = params.get("NextToken") + max_results = params.get("MaxResults") + + clusters, next_token = self.cloudhsmv2_backend.describe_clusters( + filters=filters, + next_token=next_token, + max_results=max_results, + ) + + response = {"Clusters": clusters} + if next_token: + response["NextToken"] = next_token + + return json.dumps(response, cls=DateTimeEncoder) + + def get_resource_policy(self) -> str: + params = json.loads(self.body) + resource_arn = params.get("ResourceArn") + policy = self.cloudhsmv2_backend.get_resource_policy( + resource_arn=resource_arn, + ) + return json.dumps({"Policy": policy}) + + def describe_backups(self) -> str: + params = json.loads(self.body) + + next_token = params.get("NextToken") + max_results = params.get("MaxResults") + filters_raw = params.get("Filters", {}) + filters = ( + json.loads(filters_raw) if isinstance(filters_raw, str) else filters_raw + ) + shared = params.get("Shared") + sort_ascending = params.get("SortAscending") + + backups, next_token = self.cloudhsmv2_backend.describe_backups( + next_token=next_token, + max_results=max_results, + filters=filters, + shared=shared, + sort_ascending=sort_ascending, + ) + + response = {"Backups": backups} + if next_token: + response["NextToken"] = next_token + + return json.dumps(response, cls=DateTimeEncoder) + + def put_resource_policy(self) -> str: + params = json.loads(self.body) + + resource_arn = params.get("ResourceArn") + policy = params.get("Policy") + + result = self.cloudhsmv2_backend.put_resource_policy( + resource_arn=resource_arn, + policy=policy, + ) + return json.dumps(result) diff --git a/moto/cloudhsmv2/urls.py b/moto/cloudhsmv2/urls.py new file mode 100644 index 000000000000..d94cdd12a28a --- /dev/null +++ b/moto/cloudhsmv2/urls.py @@ -0,0 +1,12 @@ +"""cloudhsmv2 base URL and path.""" + +from .responses import CloudHSMV2Response + +url_bases = [ + r"https?://cloudhsm\.(.+)\.amazonaws\.com", + r"https?://cloudhsmv2\.(.+)\.amazonaws\.com", +] + +url_paths = { + "{0}/$": CloudHSMV2Response.dispatch, +} diff --git a/tests/test_cloudhsmv2/__init__.py b/tests/test_cloudhsmv2/__init__.py new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/tests/test_cloudhsmv2/test_cloudhsmv2.py b/tests/test_cloudhsmv2/test_cloudhsmv2.py new file mode 100644 index 000000000000..16cb4d8be51b --- /dev/null +++ b/tests/test_cloudhsmv2/test_cloudhsmv2.py @@ -0,0 +1,317 @@ +"""Unit tests for cloudhsmv2-supported APIs.""" + +import json +from datetime import datetime + +import boto3 + +from moto import mock_aws + +# See our Development Tips on writing tests for hints on how to write good tests: +# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html + + +@mock_aws +def test_list_tags(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + resource_id = "cluster-1234" + client.tag_resource( + ResourceId=resource_id, + TagList=[ + {"Key": "Environment", "Value": "Production"}, + {"Key": "Project", "Value": "Security"}, + ], + ) + + response = client.list_tags(ResourceId=resource_id) + assert len(response["TagList"]) == 2 + assert {"Key": "Environment", "Value": "Production"} in response["TagList"] + assert {"Key": "Project", "Value": "Security"} in response["TagList"] + assert "NextToken" not in response + + +@mock_aws +def test_tag_resource(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + resource_id = "cluster-1234" + + response = client.tag_resource( + ResourceId=resource_id, + TagList=[ + {"Key": "Environment", "Value": "Production"}, + {"Key": "Project", "Value": "Security"}, + ], + ) + + tags = client.list_tags(ResourceId=resource_id)["TagList"] + assert len(tags) == 2 + assert {"Key": "Environment", "Value": "Production"} in tags + assert {"Key": "Project", "Value": "Security"} in tags + + response = client.tag_resource( + ResourceId=resource_id, + TagList=[{"Key": "Environment", "Value": "Development"}], + ) + + assert "ResponseMetadata" in response + + tags = client.list_tags(ResourceId=resource_id)["TagList"] + assert len(tags) == 2 + assert {"Key": "Environment", "Value": "Development"} in tags + assert {"Key": "Project", "Value": "Security"} in tags + + +@mock_aws +def test_list_tags_empty_resource(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + response = client.list_tags(ResourceId="non-existent-resource") + assert response["TagList"] == [] + assert "NextToken" not in response + + +@mock_aws +def test_untag_resource(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + resource_id = "cluster-1234" + + client.tag_resource( + ResourceId=resource_id, + TagList=[ + {"Key": "Environment", "Value": "Production"}, + {"Key": "Project", "Value": "Security"}, + {"Key": "Team", "Value": "DevOps"}, + ], + ) + + initial_tags = client.list_tags(ResourceId=resource_id)["TagList"] + assert len(initial_tags) == 3 + + response = client.untag_resource( + ResourceId=resource_id, TagKeyList=["Environment", "Team"] + ) + assert "ResponseMetadata" in response + + remaining_tags = client.list_tags(ResourceId=resource_id)["TagList"] + assert len(remaining_tags) == 1 + assert {"Key": "Project", "Value": "Security"} in remaining_tags + + +@mock_aws +def test_create_cluster(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + response = client.create_cluster( + BackupRetentionPolicy={"Type": "DAYS", "Value": "7"}, + HsmType="hsm1.medium", + SubnetIds=["subnet-12345678"], + TagList=[{"Key": "Environment", "Value": "Production"}], + ) + + cluster = response["Cluster"] + assert cluster["BackupPolicy"] == "DEFAULT" + assert cluster["BackupRetentionPolicy"] == {"Type": "DAYS", "Value": "7"} + assert "ClusterId" in cluster + assert isinstance(cluster["CreateTimestamp"], datetime) + assert cluster["HsmType"] == "hsm1.medium" + assert cluster["State"] == "ACTIVE" + assert cluster["SubnetMapping"] == {"subnet-12345678": "us-east-1"} + assert cluster["TagList"] == [{"Key": "Environment", "Value": "Production"}] + assert "VpcId" in cluster + + clusters = client.describe_clusters()["Clusters"] + assert len(clusters) == 1 + assert clusters[0]["ClusterId"] == cluster["ClusterId"] + + +@mock_aws +def test_delete_cluster(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + response = client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=["subnet-12345678"], + NetworkType="IPV4", + Mode="FIPS", + ) + cluster_id = response["Cluster"]["ClusterId"] + + delete_response = client.delete_cluster(ClusterId=cluster_id) + + deleted_cluster = delete_response["Cluster"] + assert deleted_cluster["ClusterId"] == cluster_id + assert deleted_cluster["State"] == "DELETED" + assert deleted_cluster["StateMessage"] == "Cluster deleted" + + clusters = client.describe_clusters()["Clusters"] + assert len(clusters) == 0 + + +@mock_aws +def test_describe_clusters_no_clusters(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + response = client.describe_clusters() + + assert response["Clusters"] == [] + assert "NextToken" not in response + + +@mock_aws +def test_describe_clusters_with_filters(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + cluster1 = client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=["subnet-12345678"], + NetworkType="IPV4", + Mode="FIPS", + ) + + client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=["subnet-87654321"], + NetworkType="IPV4", + Mode="FIPS", + ) + + response = client.describe_clusters( + Filters={"clusterIds": [cluster1["Cluster"]["ClusterId"]]} + ) + assert len(response["Clusters"]) == 1 + assert response["Clusters"][0]["ClusterId"] == cluster1["Cluster"]["ClusterId"] + + # Test filtering by state + response = client.describe_clusters(Filters={"states": ["ACTIVE"]}) + assert len(response["Clusters"]) == 2 + + +@mock_aws +def test_describe_clusters_pagination(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + for i in range(3): + client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=[f"subnet-{i}"], + NetworkType="IPV4", + Mode="FIPS", + ) + + response = client.describe_clusters(MaxResults=2) + assert len(response["Clusters"]) == 2 + assert "NextToken" in response + + # Get remaining clusters using NextToken + response2 = client.describe_clusters(MaxResults=2, NextToken=response["NextToken"]) + assert len(response2["Clusters"]) == 1 + assert "NextToken" not in response2 + + +@mock_aws +def test_get_resource_policy(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + client.create_cluster(HsmType="hsm1.medium", SubnetIds=["subnet-12345678"]) + + backup_response = client.describe_backups() + backup_arn = backup_response["Backups"][0]["BackupArn"] + + policy = { + "Version": "2012-10-17", + "Statement": [ + { + "Sid": "EnableSharing", + "Effect": "Allow", + "Principal": {"AWS": "arn:aws:iam::123456789012:root"}, + "Action": ["cloudhsmv2:DescribeBackups"], + "Resource": backup_arn, + } + ], + } + + client.put_resource_policy(ResourceArn=backup_arn, Policy=json.dumps(policy)) + response = client.get_resource_policy(ResourceArn=backup_arn) + + assert "Policy" in response + assert json.loads(response["Policy"]) == policy + + +@mock_aws +def test_describe_backups(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + cluster = client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=["subnet-12345678"], + ) + cluster_id = cluster["Cluster"]["ClusterId"] + + response = client.describe_backups() + assert "Backups" in response + assert len(response["Backups"]) == 1 + + backup = response["Backups"][0] + assert backup["ClusterId"] == cluster_id + assert backup["HsmType"] == "hsm1.medium" + assert backup["BackupState"] == "READY" + + filtered_response = client.describe_backups(Filters={"clusterIds": [cluster_id]}) + assert len(filtered_response["Backups"]) == 1 + assert filtered_response["Backups"][0]["ClusterId"] == cluster_id + + +@mock_aws +def test_put_resource_policy(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + client.create_cluster(HsmType="hsm1.medium", SubnetIds=["subnet-12345678"]) + + backup_response = client.describe_backups() + backup_arn = backup_response["Backups"][0]["BackupArn"] + + policy = { + "Version": "2012-10-17", + "Statement": [ + { + "Sid": "EnableSharing", + "Effect": "Allow", + "Principal": {"AWS": "arn:aws:iam::123456789012:root"}, + "Action": ["cloudhsmv2:DescribeBackups"], + "Resource": backup_arn, + } + ], + } + + response = client.put_resource_policy( + ResourceArn=backup_arn, Policy=json.dumps(policy) + ) + + assert "ResourceArn" in response + assert "Policy" in response + assert response["ResourceArn"] == backup_arn + assert json.loads(response["Policy"]) == policy + + +@mock_aws +def test_describe_backups_pagination(): + client = boto3.client("cloudhsmv2", region_name="us-east-1") + + # Create a cluster which will automatically create a backup + for i in range(3): + client.create_cluster( + HsmType="hsm1.medium", + SubnetIds=[f"subnet-{i}"], + NetworkType="IPV4", + Mode="FIPS", + ) + + # Test pagination with MaxResults + response = client.describe_backups(MaxResults=2) + assert len(response["Backups"]) == 2 + assert "NextToken" in response + + # Get remaining backups using NextToken + response2 = client.describe_backups(MaxResults=2, NextToken=response["NextToken"]) + assert len(response2["Backups"]) == 1 + assert "NextToken" not in response2 From 23fdc96711867b85cd0ad545301bcb4513cc168a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 23 Feb 2025 11:17:05 -0100 Subject: [PATCH 084/103] chore: update SSM default parameters (#8616) --- moto/ssm/resources/regions.json | 108 +++++++++++++++++++++++++------ moto/ssm/resources/services.json | 108 +++++++++++++++++++++++++------ 2 files changed, 180 insertions(+), 36 deletions(-) diff --git a/moto/ssm/resources/regions.json b/moto/ssm/resources/regions.json index 601192c4dd17..4a2d8b998bab 100644 --- a/moto/ssm/resources/regions.json +++ b/moto/ssm/resources/regions.json @@ -9104,6 +9104,24 @@ "Value": "HTTPS" } }, + "bedrock": { + "Value": "bedrock", + "endpoint": { + "Value": "bedrock.ap-northeast-3.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, + "bedrock-runtime": { + "Value": "bedrock-runtime", + "endpoint": { + "Value": "bedrock-runtime.ap-northeast-3.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "chatbot": { "Value": "chatbot" }, @@ -13140,6 +13158,24 @@ "Value": "HTTPS" } }, + "bedrock": { + "Value": "bedrock", + "endpoint": { + "Value": "bedrock.ap-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, + "bedrock-runtime": { + "Value": "bedrock-runtime", + "endpoint": { + "Value": "bedrock-runtime.ap-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "chatbot": { "Value": "chatbot" }, @@ -23869,6 +23905,15 @@ "Value": "HTTPS" } }, + "cloudcontrolapi": { + "Value": "cloudcontrolapi", + "endpoint": { + "Value": "cloudcontrolapi.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "cloudformation": { "Value": "cloudformation", "endpoint": { @@ -24088,6 +24133,15 @@ "fargate": { "Value": "fargate" }, + "firehose": { + "Value": "firehose", + "endpoint": { + "Value": "firehose.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "iam": { "Value": "iam", "endpoint": { @@ -29298,15 +29352,6 @@ "Value": "HTTPS" } }, - "snowball": { - "Value": "snowball", - "endpoint": { - "Value": "snowball.cn-north-1.amazonaws.com.cn" - }, - "protocols": { - "Value": "HTTPS" - } - }, "sns": { "Value": "sns", "endpoint": { @@ -30691,15 +30736,6 @@ "Value": "HTTPS" } }, - "snowball": { - "Value": "snowball", - "endpoint": { - "Value": "snowball.cn-northwest-1.amazonaws.com.cn" - }, - "protocols": { - "Value": "HTTPS" - } - }, "sns": { "Value": "sns", "endpoint": { @@ -39937,6 +39973,15 @@ "Value": "HTTPS" } }, + "polly": { + "Value": "polly", + "endpoint": { + "Value": "polly.eu-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "privatelink": { "Value": "privatelink" }, @@ -52800,6 +52845,15 @@ "Value": "HTTPS" } }, + "cloudcontrolapi": { + "Value": "cloudcontrolapi", + "endpoint": { + "Value": "cloudcontrolapi.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "cloudformation": { "Value": "cloudformation", "endpoint": { @@ -53019,6 +53073,15 @@ "fargate": { "Value": "fargate" }, + "firehose": { + "Value": "firehose", + "endpoint": { + "Value": "firehose.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "iam": { "Value": "iam", "endpoint": { @@ -53289,6 +53352,15 @@ "Value": "HTTPS" } }, + "storagegateway": { + "Value": "storagegateway", + "endpoint": { + "Value": "storagegateway.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sts": { "Value": "sts", "endpoint": { diff --git a/moto/ssm/resources/services.json b/moto/ssm/resources/services.json index 22430330d724..f69cf4e3ed12 100644 --- a/moto/ssm/resources/services.json +++ b/moto/ssm/resources/services.json @@ -8208,6 +8208,15 @@ "Value": "HTTPS" } }, + "ap-northeast-3": { + "Value": "ap-northeast-3", + "endpoint": { + "Value": "bedrock.ap-northeast-3.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ap-south-1": { "Value": "ap-south-1", "endpoint": { @@ -8217,6 +8226,15 @@ "Value": "HTTPS" } }, + "ap-south-2": { + "Value": "ap-south-2", + "endpoint": { + "Value": "bedrock.ap-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ap-southeast-1": { "Value": "ap-southeast-1", "endpoint": { @@ -8369,6 +8387,15 @@ "Value": "HTTPS" } }, + "ap-northeast-3": { + "Value": "ap-northeast-3", + "endpoint": { + "Value": "bedrock-runtime.ap-northeast-3.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ap-south-1": { "Value": "ap-south-1", "endpoint": { @@ -8378,6 +8405,15 @@ "Value": "HTTPS" } }, + "ap-south-2": { + "Value": "ap-south-2", + "endpoint": { + "Value": "bedrock-runtime.ap-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ap-southeast-1": { "Value": "ap-southeast-1", "endpoint": { @@ -9894,6 +9930,15 @@ "Value": "HTTPS" } }, + "ap-southeast-7": { + "Value": "ap-southeast-7", + "endpoint": { + "Value": "cloudcontrolapi.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { @@ -10029,6 +10074,15 @@ "Value": "HTTPS" } }, + "mx-central-1": { + "Value": "mx-central-1", + "endpoint": { + "Value": "cloudcontrolapi.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sa-east-1": { "Value": "sa-east-1", "endpoint": { @@ -27170,6 +27224,15 @@ "Value": "HTTPS" } }, + "ap-southeast-7": { + "Value": "ap-southeast-7", + "endpoint": { + "Value": "firehose.ap-southeast-7.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "ca-central-1": { "Value": "ca-central-1", "endpoint": { @@ -27305,6 +27368,15 @@ "Value": "HTTPS" } }, + "mx-central-1": { + "Value": "mx-central-1", + "endpoint": { + "Value": "firehose.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sa-east-1": { "Value": "sa-east-1", "endpoint": { @@ -50719,6 +50791,15 @@ "Value": "HTTPS" } }, + "eu-south-2": { + "Value": "eu-south-2", + "endpoint": { + "Value": "polly.eu-south-2.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "eu-west-1": { "Value": "eu-west-1", "endpoint": { @@ -63339,24 +63420,6 @@ "Value": "HTTPS" } }, - "cn-north-1": { - "Value": "cn-north-1", - "endpoint": { - "Value": "snowball.cn-north-1.amazonaws.com.cn" - }, - "protocols": { - "Value": "HTTPS" - } - }, - "cn-northwest-1": { - "Value": "cn-northwest-1", - "endpoint": { - "Value": "snowball.cn-northwest-1.amazonaws.com.cn" - }, - "protocols": { - "Value": "HTTPS" - } - }, "eu-central-1": { "Value": "eu-central-1", "endpoint": { @@ -66243,6 +66306,15 @@ "Value": "HTTPS" } }, + "mx-central-1": { + "Value": "mx-central-1", + "endpoint": { + "Value": "storagegateway.mx-central-1.amazonaws.com" + }, + "protocols": { + "Value": "HTTPS" + } + }, "sa-east-1": { "Value": "sa-east-1", "endpoint": { From 12a03d72a5eb11c153fcc26bed4648670c271a91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 23 Feb 2025 11:17:32 -0100 Subject: [PATCH 085/103] chore: update EC2 Instance Types (#8615) --- moto/ec2/resources/instance_types.json | 44 +++++++++++++------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/moto/ec2/resources/instance_types.json b/moto/ec2/resources/instance_types.json index 4f526af94832..4d41d71d436b 100644 --- a/moto/ec2/resources/instance_types.json +++ b/moto/ec2/resources/instance_types.json @@ -12627,7 +12627,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.12xlarge", @@ -12748,7 +12748,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.16xlarge", @@ -12877,7 +12877,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.24xlarge", @@ -12997,7 +12997,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.2xlarge", @@ -13098,7 +13098,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.32xlarge", @@ -13236,7 +13236,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.4xlarge", @@ -13341,7 +13341,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.8xlarge", @@ -13454,7 +13454,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.large", @@ -13646,7 +13646,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageSupported": false, "InstanceType": "c6in.xlarge", @@ -37860,7 +37860,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -37970,7 +37970,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -38088,7 +38088,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -38222,7 +38222,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -38326,7 +38326,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -39504,7 +39504,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -39614,7 +39614,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -39866,7 +39866,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -39970,7 +39970,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -40073,7 +40073,7 @@ "NvmeSupport": "required" }, "FreeTierEligible": false, - "HibernationSupported": false, + "HibernationSupported": true, "Hypervisor": "nitro", "InstanceStorageInfo": { "Disks": [ @@ -53891,7 +53891,7 @@ "NetworkInfo": { "DefaultNetworkCardIndex": 0, "EfaSupported": false, - "EnaSrdSupported": false, + "EnaSrdSupported": true, "EnaSupport": "required", "EncryptionInTransitSupported": true, "Ipv4AddressesPerInterface": 50, @@ -54032,7 +54032,7 @@ "NetworkInfo": { "DefaultNetworkCardIndex": 0, "EfaSupported": false, - "EnaSrdSupported": false, + "EnaSrdSupported": true, "EnaSupport": "required", "EncryptionInTransitSupported": true, "Ipv4AddressesPerInterface": 50, @@ -65298,7 +65298,7 @@ "MemoryInfo": { "SizeInMiB": 144384 }, - "Name": "NVIDIA" + "Name": "H200" } ], "TotalGpuMemoryInMiB": 1155072 From b22cbf133e28cd3aee2a0e4674a2e0b730c79589 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 23 Feb 2025 11:18:00 -0100 Subject: [PATCH 086/103] chore: update EC2 Instance Offerings (#8614) --- .../availability-zone-id/ca-central-1.json | 88 +++++++++++++++++++ .../availability-zone-id/eu-north-1.json | 64 ++++++++++++++ .../availability-zone-id/us-west-2.json | 40 +++++++++ .../availability-zone/ca-central-1.json | 88 +++++++++++++++++++ .../availability-zone/eu-north-1.json | 64 ++++++++++++++ .../availability-zone/us-west-2.json | 40 +++++++++ .../region/ca-central-1.json | 44 ++++++++++ .../region/eu-north-1.json | 32 +++++++ 8 files changed, 460 insertions(+) diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json index ea4084cdc8e7..3086d4edf0f4 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ca-central-1.json @@ -1643,6 +1643,50 @@ "InstanceType": "r5n.xlarge", "Location": "cac1-az1" }, + { + "InstanceType": "r6a.12xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.16xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.24xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.2xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.32xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.48xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.4xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.8xlarge", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.large", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.metal", + "Location": "cac1-az1" + }, + { + "InstanceType": "r6a.xlarge", + "Location": "cac1-az1" + }, { "InstanceType": "r6g.12xlarge", "Location": "cac1-az1" @@ -3691,6 +3735,50 @@ "InstanceType": "r5n.xlarge", "Location": "cac1-az2" }, + { + "InstanceType": "r6a.12xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.16xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.24xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.2xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.32xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.48xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.4xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.8xlarge", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.large", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.metal", + "Location": "cac1-az2" + }, + { + "InstanceType": "r6a.xlarge", + "Location": "cac1-az2" + }, { "InstanceType": "r6g.12xlarge", "Location": "cac1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json index d38d447b5b65..b187a7d950bb 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json @@ -631,6 +631,38 @@ "InstanceType": "g6.xlarge", "Location": "eun1-az1" }, + { + "InstanceType": "g6e.12xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.16xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.24xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.2xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.48xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.4xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.8xlarge", + "Location": "eun1-az1" + }, + { + "InstanceType": "g6e.xlarge", + "Location": "eun1-az1" + }, { "InstanceType": "gr6.4xlarge", "Location": "eun1-az1" @@ -2531,6 +2563,38 @@ "InstanceType": "g6.xlarge", "Location": "eun1-az2" }, + { + "InstanceType": "g6e.12xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.16xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.24xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.2xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.48xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.4xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.8xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "g6e.xlarge", + "Location": "eun1-az2" + }, { "InstanceType": "gr6.4xlarge", "Location": "eun1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json index 300a53bfe25d..a4a7b350d616 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/us-west-2.json @@ -4359,6 +4359,38 @@ "InstanceType": "g5g.xlarge", "Location": "usw2-az2" }, + { + "InstanceType": "g6.12xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.16xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.24xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.2xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.48xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.4xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.8xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "g6.xlarge", + "Location": "usw2-az2" + }, { "InstanceType": "g6e.12xlarge", "Location": "usw2-az2" @@ -4391,6 +4423,14 @@ "InstanceType": "g6e.xlarge", "Location": "usw2-az2" }, + { + "InstanceType": "gr6.4xlarge", + "Location": "usw2-az2" + }, + { + "InstanceType": "gr6.8xlarge", + "Location": "usw2-az2" + }, { "InstanceType": "i2.2xlarge", "Location": "usw2-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json index 572f1d3f6e5a..d0986efab7d7 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ca-central-1.json @@ -1643,6 +1643,50 @@ "InstanceType": "r5n.xlarge", "Location": "ca-central-1a" }, + { + "InstanceType": "r6a.12xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.16xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.24xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.2xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.32xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.48xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.4xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.8xlarge", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.large", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.metal", + "Location": "ca-central-1a" + }, + { + "InstanceType": "r6a.xlarge", + "Location": "ca-central-1a" + }, { "InstanceType": "r6g.12xlarge", "Location": "ca-central-1a" @@ -3691,6 +3735,50 @@ "InstanceType": "r5n.xlarge", "Location": "ca-central-1b" }, + { + "InstanceType": "r6a.12xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.16xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.24xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.2xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.32xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.48xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.4xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.8xlarge", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.large", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.metal", + "Location": "ca-central-1b" + }, + { + "InstanceType": "r6a.xlarge", + "Location": "ca-central-1b" + }, { "InstanceType": "r6g.12xlarge", "Location": "ca-central-1b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json index 2b52fadc7264..d8cfbdf9a38b 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json @@ -631,6 +631,38 @@ "InstanceType": "g6.xlarge", "Location": "eu-north-1a" }, + { + "InstanceType": "g6e.12xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.16xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.24xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.2xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.48xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.4xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.8xlarge", + "Location": "eu-north-1a" + }, + { + "InstanceType": "g6e.xlarge", + "Location": "eu-north-1a" + }, { "InstanceType": "gr6.4xlarge", "Location": "eu-north-1a" @@ -2531,6 +2563,38 @@ "InstanceType": "g6.xlarge", "Location": "eu-north-1b" }, + { + "InstanceType": "g6e.12xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.16xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.24xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.2xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.48xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.4xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.8xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "g6e.xlarge", + "Location": "eu-north-1b" + }, { "InstanceType": "gr6.4xlarge", "Location": "eu-north-1b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json index cff8135e6c7f..2b39bba93006 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/us-west-2.json @@ -951,6 +951,38 @@ "InstanceType": "g5g.xlarge", "Location": "us-west-2a" }, + { + "InstanceType": "g6.12xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.16xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.24xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.2xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.48xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.4xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.8xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "g6.xlarge", + "Location": "us-west-2a" + }, { "InstanceType": "g6e.12xlarge", "Location": "us-west-2a" @@ -983,6 +1015,14 @@ "InstanceType": "g6e.xlarge", "Location": "us-west-2a" }, + { + "InstanceType": "gr6.4xlarge", + "Location": "us-west-2a" + }, + { + "InstanceType": "gr6.8xlarge", + "Location": "us-west-2a" + }, { "InstanceType": "i2.2xlarge", "Location": "us-west-2a" diff --git a/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json b/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json index 1d52dd5550ec..ebcfd78a48ab 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/ca-central-1.json @@ -1663,6 +1663,50 @@ "InstanceType": "r5n.xlarge", "Location": "ca-central-1" }, + { + "InstanceType": "r6a.12xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.16xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.24xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.2xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.32xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.48xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.4xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.8xlarge", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.large", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.metal", + "Location": "ca-central-1" + }, + { + "InstanceType": "r6a.xlarge", + "Location": "ca-central-1" + }, { "InstanceType": "r6g.12xlarge", "Location": "ca-central-1" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json b/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json index d22b6fe2c3f2..b5cfd6c8039a 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-north-1.json @@ -663,6 +663,38 @@ "InstanceType": "g6.xlarge", "Location": "eu-north-1" }, + { + "InstanceType": "g6e.12xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.16xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.24xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.2xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.48xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.4xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.8xlarge", + "Location": "eu-north-1" + }, + { + "InstanceType": "g6e.xlarge", + "Location": "eu-north-1" + }, { "InstanceType": "gr6.4xlarge", "Location": "eu-north-1" From 2b282d9c6a25bef683920f86493188254e2725fa Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sun, 23 Feb 2025 12:46:07 -0100 Subject: [PATCH 087/103] Admin: Add CPP tests (#8613) --- .github/workflows/build.yml | 4 + .github/workflows/tests_sdk_cpp.yml | 39 ++++++++ other_langs/tests_cpp/CMakeLists.txt | 45 +++++++++ other_langs/tests_cpp/Makefile | 14 +++ other_langs/tests_cpp/hello_s3.cpp | 142 +++++++++++++++++++++++++++ 5 files changed, 244 insertions(+) create mode 100644 .github/workflows/tests_sdk_cpp.yml create mode 100644 other_langs/tests_cpp/CMakeLists.txt create mode 100644 other_langs/tests_cpp/Makefile create mode 100644 other_langs/tests_cpp/hello_s3.cpp diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bcface57ddc8..4b05deb1ee15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,6 +72,10 @@ jobs: mkdir .mypy_cache make lint + cpptest: + needs: lint + uses: ./.github/workflows/tests_sdk_cpp.yml + javatest: needs: lint uses: ./.github/workflows/tests_sdk_java.yml diff --git a/.github/workflows/tests_sdk_cpp.yml b/.github/workflows/tests_sdk_cpp.yml new file mode 100644 index 000000000000..69400e4bd874 --- /dev/null +++ b/.github/workflows/tests_sdk_cpp.yml @@ -0,0 +1,39 @@ +name: C++ SDK test +on: [workflow_call] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set up Python 3.8 + uses: actions/setup-python@v5 + with: + python-version: "3.8" + - name: Start MotoServer + run: | + pip install build + python -m build + docker run --rm -t --name motoserver -e TEST_SERVER_MODE=true -e AWS_SECRET_ACCESS_KEY=server_secret -e AWS_ACCESS_KEY_ID=server_key -v `pwd`:/moto -p 5000:5000 -v /var/run/docker.sock:/var/run/docker.sock python:3.10-slim /moto/scripts/ci_moto_server.sh & + python scripts/ci_wait_for_server.py + + - name: Check build cache + id: build-cache + uses: actions/cache@v4 + with: + path: other_langs/tests_cpp/build/hello_s3 + key: cpp-build-${{ hashFiles('other_langs/tests_cpp/hello_s3.cpp') }} + + - name: Build Project + if: steps.build-cache.outputs.cache-hit != 'true' + working-directory: other_langs/tests_cpp + run: | + make build + + - name: Run tests + working-directory: other_langs/tests_cpp + run: | + make test diff --git a/other_langs/tests_cpp/CMakeLists.txt b/other_langs/tests_cpp/CMakeLists.txt new file mode 100644 index 000000000000..01cf13e715e2 --- /dev/null +++ b/other_langs/tests_cpp/CMakeLists.txt @@ -0,0 +1,45 @@ +# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +# SPDX-License-Identifier: Apache-2.0 + +# snippet-start:[cpp.example_code.s3.hello_s3.cmake] +# Set the minimum required version of CMake for this project. +cmake_minimum_required(VERSION 3.13) + +# Set the AWS service components used by this project. +set(SERVICE_COMPONENTS s3) + +# Set this project's name. +project("hello_s3") + +# Set the C++ standard to use to build this target. +# At least C++ 11 is required for the AWS SDK for C++. +set(CMAKE_CXX_STANDARD 11) + +# Use the MSVC variable to determine if this is a Windows build. +set(WINDOWS_BUILD ${MSVC}) + +if (WINDOWS_BUILD) # Set the location where CMake can find the installed libraries for the AWS SDK. + string(REPLACE ";" "/aws-cpp-sdk-all;" SYSTEM_MODULE_PATH "${CMAKE_SYSTEM_PREFIX_PATH}/aws-cpp-sdk-all") + list(APPEND CMAKE_PREFIX_PATH ${SYSTEM_MODULE_PATH}) +endif () + +# Find the AWS SDK for C++ package. +list(APPEND CMAKE_PREFIX_PATH "./build/vcpkg/scripts/cmake") +find_package(aws-cpp-sdk-core REQUIRED) +find_package(AWSSDK REQUIRED COMPONENTS ${SERVICE_COMPONENTS}) + +if (WINDOWS_BUILD AND AWSSDK_INSTALL_AS_SHARED_LIBS) + # Copy relevant AWS SDK for C++ libraries into the current binary directory for running and debugging. + + # set(BIN_SUB_DIR "/Debug") # if you are building from the command line you may need to uncomment this + # and set the proper subdirectory to the executables' location. + + AWSSDK_CPY_DYN_LIBS(SERVICE_COMPONENTS "" ${CMAKE_CURRENT_BINARY_DIR}${BIN_SUB_DIR}) +endif () + +add_executable(${PROJECT_NAME} + hello_s3.cpp) + +target_link_libraries(${PROJECT_NAME} + ${AWSSDK_LINK_LIBRARIES}) +# snippet-end:[cpp.example_code.s3.hello_s3.cmake] \ No newline at end of file diff --git a/other_langs/tests_cpp/Makefile b/other_langs/tests_cpp/Makefile new file mode 100644 index 000000000000..cc55efd4644d --- /dev/null +++ b/other_langs/tests_cpp/Makefile @@ -0,0 +1,14 @@ +build: + pwd + ls -la + mkdir -p build/vcpkg + git clone https://github.com/microsoft/vcpkg.git build/vcpkg + ls -la build + ls -la build/vcpkg + ./build/vcpkg/bootstrap-vcpkg.sh --disableMetrics + ./build/vcpkg/vcpkg install "aws-sdk-cpp[s3]" --recurse + cmake -S . -B build/ -DCMAKE_TOOLCHAIN_FILE=build/vcpkg/scripts/buildsystems/vcpkg.cmake + cmake --build build + +test: + ./build/hello_s3 diff --git a/other_langs/tests_cpp/hello_s3.cpp b/other_langs/tests_cpp/hello_s3.cpp new file mode 100644 index 000000000000..f7124a5934ee --- /dev/null +++ b/other_langs/tests_cpp/hello_s3.cpp @@ -0,0 +1,142 @@ +#include +#include +#include +#include +#include +#include +#include +#include +using namespace Aws; +using namespace Aws::Auth; + + +bool createBucket(const Aws::String &bucketName, + const Aws::S3::S3ClientConfiguration &clientConfig) { + Aws::S3::S3Client client(clientConfig); + Aws::S3::Model::CreateBucketRequest request; + request.SetBucket(bucketName); + + if (clientConfig.region != "us-east-1") { + Aws::S3::Model::CreateBucketConfiguration createBucketConfig; + createBucketConfig.SetLocationConstraint( + Aws::S3::Model::BucketLocationConstraintMapper::GetBucketLocationConstraintForName( + clientConfig.region)); + request.SetCreateBucketConfiguration(createBucketConfig); + } + + Aws::S3::Model::CreateBucketOutcome outcome = client.CreateBucket(request); + if (!outcome.IsSuccess()) { + auto err = outcome.GetError(); + std::cerr << "Error: createBucket: " << + err.GetExceptionName() << ": " << err.GetMessage() << std::endl; + } else { + std::cout << "Created bucket " << bucketName << + " in the specified AWS Region." << std::endl; + } + + return outcome.IsSuccess(); +} + +bool putObject(const Aws::String &bucketName, + const Aws::String &fileName, + const Aws::S3::S3ClientConfiguration &clientConfig) { + Aws::S3::S3Client s3Client(clientConfig); + + Aws::S3::Model::PutObjectRequest request; + request.SetBucket(bucketName); + //We are using the name of the file as the key for the object in the bucket. + //However, this is just a string and can be set according to your retrieval needs. + request.SetKey(fileName); + + Aws::S3::Model::PutObjectOutcome outcome = + s3Client.PutObject(request); + + if (!outcome.IsSuccess()) { + std::cerr << "Error: putObject: " << + outcome.GetError().GetMessage() << std::endl; + } else { + std::cout << "Added object '" << fileName << "' to bucket '" + << bucketName << "'."; + } + + return outcome.IsSuccess(); +} + +bool listBuckets(const Aws::S3::S3ClientConfiguration &clientConfig) { + Aws::S3::S3Client client(clientConfig); + + auto outcome = client.ListBuckets(); + + bool result = true; + if (!outcome.IsSuccess()) { + std::cerr << "Failed with error: " << outcome.GetError() << std::endl; + result = false; + } else { + std::cout << "Found " << outcome.GetResult().GetBuckets().size() << " buckets\n"; + for (auto &&b: outcome.GetResult().GetBuckets()) { + std::cout << b.GetName() << std::endl; + } + } + + return result; +} + +bool copyObject(const Aws::String &objectKey, const Aws::String &fromBucket, const Aws::String &toBucket, + const Aws::S3::S3ClientConfiguration &clientConfig) { + Aws::S3::S3Client client(clientConfig); + Aws::S3::Model::CopyObjectRequest request; + + request.WithCopySource(fromBucket + "/" + objectKey) + .WithKey(objectKey) + .WithBucket(toBucket); + + Aws::S3::Model::CopyObjectOutcome outcome = client.CopyObject(request); + if (!outcome.IsSuccess()) { + const Aws::S3::S3Error &err = outcome.GetError(); + std::cerr << "Error: copyObject: " << + err.GetExceptionName() << ": " << err.GetMessage() << std::endl; + + } else { + std::cout << "Successfully copied " << objectKey << " from " << fromBucket << + " to " << toBucket << "." << std::endl; + } + + return outcome.IsSuccess(); +} + + +int main(int argc, char **argv) { + Aws::SDKOptions options; + // Optionally change the log level for debugging. +// options.loggingOptions.logLevel = Utils::Logging::LogLevel::Debug; + Aws::InitAPI(options); // Should only be called once. + int result = 0; + { + Aws::Client::ClientConfiguration clientConfig; + // Optional: Set to the AWS Region (overrides config file). + // clientConfig.region = "us-east-1"; + clientConfig.endpointOverride = "http://localhost:5000"; + + // You don't normally have to test that you are authenticated. But the S3 service permits anonymous requests, thus the s3Client will return "success" and 0 buckets even if you are unauthenticated, which can be confusing to a new user. + auto provider = Aws::MakeShared("alloc-tag"); + auto creds = provider->GetAWSCredentials(); + + Aws::S3::S3Client s3Client(clientConfig); + listBuckets(clientConfig); + + Aws::String uuid1 = Aws::Utils::UUID::RandomUUID(); + Aws::String uuid2 = Aws::Utils::UUID::RandomUUID(); + Aws::String bucket1 = Aws::Utils::StringUtils::ToLower(uuid1.c_str()); + Aws::String bucket2 = Aws::Utils::StringUtils::ToLower(uuid2.c_str()); + + createBucket(bucket1, clientConfig); + createBucket(bucket2, clientConfig); + + putObject(bucket1, "test.txt", clientConfig); + + copyObject("test.txt", bucket1, bucket2, clientConfig); + } + + Aws::ShutdownAPI(options); // Should only be called once. + return result; +} \ No newline at end of file From 4acaf84f95e6cfc40784d575fbdcdcda801cab02 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sun, 23 Feb 2025 18:39:21 -0100 Subject: [PATCH 088/103] Admin: Drop support for Python 3.8 (#8617) --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/tests_decoratormode.yml | 2 +- .github/workflows/tests_sdk_dotnet.yml | 4 ++-- .github/workflows/tests_sdk_java.yml | 4 ++-- .github/workflows/tests_sdk_ruby.yml | 4 ++-- .github/workflows/tests_servermode.yml | 2 +- .github/workflows/tests_terraform_examples.yml | 4 ++-- moto/core/base_backend.py | 12 +----------- moto/core/exceptions.py | 4 +--- moto/core/versions.py | 1 - moto/s3/utils.py | 6 +----- moto/utilities/collections.py | 5 ----- moto/utilities/utils.py | 6 +----- setup.cfg | 3 +-- tests/test_s3/test_s3.py | 6 ++++-- 16 files changed, 23 insertions(+), 48 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b05deb1ee15..92108a1e78fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12", "3.13" ] + python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v4 @@ -42,7 +42,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0e82d95b36e..8f9af44eea1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,10 +29,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/tests_decoratormode.yml b/.github/workflows/tests_decoratormode.yml index e564e06bbc37..b65cd239ce13 100644 --- a/.github/workflows/tests_decoratormode.yml +++ b/.github/workflows/tests_decoratormode.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tests_sdk_dotnet.yml b/.github/workflows/tests_sdk_dotnet.yml index 2abc437484c0..c6faa4d8eb44 100644 --- a/.github/workflows/tests_sdk_dotnet.yml +++ b/.github/workflows/tests_sdk_dotnet.yml @@ -9,10 +9,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.12" - name: Start MotoServer run: | pip install build diff --git a/.github/workflows/tests_sdk_java.yml b/.github/workflows/tests_sdk_java.yml index 12fe3cfca654..3488f572f321 100644 --- a/.github/workflows/tests_sdk_java.yml +++ b/.github/workflows/tests_sdk_java.yml @@ -9,10 +9,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Start MotoServer run: | pip install build diff --git a/.github/workflows/tests_sdk_ruby.yml b/.github/workflows/tests_sdk_ruby.yml index b9036805c4f2..86dbebdeb692 100644 --- a/.github/workflows/tests_sdk_ruby.yml +++ b/.github/workflows/tests_sdk_ruby.yml @@ -16,10 +16,10 @@ jobs: uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 with: ruby-version: ${{ matrix.ruby-version }} - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Start MotoServer run: | pip install build diff --git a/.github/workflows/tests_servermode.yml b/.github/workflows/tests_servermode.yml index bfbdf9f7aaa8..1d205388e4be 100644 --- a/.github/workflows/tests_servermode.yml +++ b/.github/workflows/tests_servermode.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tests_terraform_examples.yml b/.github/workflows/tests_terraform_examples.yml index 9bb747ff01f2..0f142807b420 100644 --- a/.github/workflows/tests_terraform_examples.yml +++ b/.github/workflows/tests_terraform_examples.yml @@ -34,10 +34,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.12" - name: Start MotoServer run: | pip install build diff --git a/moto/core/base_backend.py b/moto/core/base_backend.py index 0d9e1605b6c4..670a389c0b69 100644 --- a/moto/core/base_backend.py +++ b/moto/core/base_backend.py @@ -1,6 +1,5 @@ import re import string -import sys from functools import lru_cache from threading import RLock from typing import ( @@ -29,15 +28,6 @@ if TYPE_CHECKING: from moto.core.common_models import BaseModel - if sys.version_info >= (3, 9): - from builtins import type as Type - else: - # https://github.com/python/mypy/issues/10068 - # Legacy generic type annotation classes - # Deprecated in Python 3.9 - # Remove once we no longer support Python 3.8 or lower - from typing import Type - class InstanceTrackerMeta(type): def __new__(meta, name: str, bases: Any, dct: Dict[str, Any]) -> type: @@ -339,7 +329,7 @@ def reset(cls) -> None: def __init__( self, - backend: "Type[SERVICE_BACKEND]", + backend: type[SERVICE_BACKEND], service_name: str, use_boto3_regions: bool = True, additional_regions: Optional[List[str]] = None, diff --git a/moto/core/exceptions.py b/moto/core/exceptions.py index 86595bc8ec22..d26c5a9f4e9c 100644 --- a/moto/core/exceptions.py +++ b/moto/core/exceptions.py @@ -101,9 +101,7 @@ def to_json(self) -> "JsonRESTError": @classmethod def extended_environment(cls, extended_templates: Dict[str, str]) -> Environment: - # Can be simplified to cls.templates | extended_templates when we drop Python 3.8 support - # https://docs.python.org/3/library/stdtypes.html#mapping-types-dict - templates = dict(cls.templates.items() | extended_templates.items()) + templates = cls.templates | extended_templates return Environment(loader=DictLoader(templates)) diff --git a/moto/core/versions.py b/moto/core/versions.py index 4b0d97ec1124..cc2a6dba61ca 100644 --- a/moto/core/versions.py +++ b/moto/core/versions.py @@ -4,7 +4,6 @@ from moto.utilities.distutils_version import LooseVersion PYTHON_VERSION_INFO = sys.version_info -PYTHON_39 = sys.version_info >= (3, 9) PYTHON_311 = sys.version_info >= (3, 11) RESPONSES_VERSION = version("responses") WERKZEUG_VERSION = version("werkzeug") diff --git a/moto/s3/utils.py b/moto/s3/utils.py index 40fc5c533896..f7a46cb4ef0f 100644 --- a/moto/s3/utils.py +++ b/moto/s3/utils.py @@ -217,11 +217,7 @@ def compute_checksum(body: bytes, algorithm: str, encode_base64: bool = True) -> def _hash(fn: Any, args: Any) -> bytes: - try: - return fn(*args, usedforsecurity=False).digest() - except TypeError: - # The usedforsecurity-parameter is only available as of Python 3.9 - return fn(*args).digest() + return fn(*args, usedforsecurity=False).digest() def cors_matches_origin(origin_header: str, allowed_origins: List[str]) -> bool: diff --git a/moto/utilities/collections.py b/moto/utilities/collections.py index b54cef9b6926..925fcde65ccb 100644 --- a/moto/utilities/collections.py +++ b/moto/utilities/collections.py @@ -1,7 +1,5 @@ from typing import Any, List -from moto.core.versions import PYTHON_39 - def select_attributes(obj: Any, attributes: List[str]) -> Any: """Select a subset of attributes from the given dict (returns a copy)""" @@ -17,9 +15,6 @@ def select_from_typed_dict(typed_dict: Any, obj: Any, filter: bool = False) -> A :param filter: if True, remove all keys with an empty (e.g., empty string or dictionary) or `None` value :return: the resulting dictionary (it returns a copy) """ - if not PYTHON_39: - # Python 3.8 does not have __required_keys__, __optional_keys__ - return dict(obj) selection = select_attributes( obj, [*typed_dict.__required_keys__, *typed_dict.__optional_keys__] ) diff --git a/moto/utilities/utils.py b/moto/utilities/utils.py index 44908f86e346..fbc15c214119 100644 --- a/moto/utilities/utils.py +++ b/moto/utilities/utils.py @@ -111,11 +111,7 @@ def md5_hash(data: Any = None) -> Any: Required for Moto to work in FIPS-enabled systems """ args = (data,) if data else () - try: - return hashlib.md5(*args, usedforsecurity=False) # type: ignore - except TypeError: - # The usedforsecurity-parameter is only available as of Python 3.9 - return hashlib.md5(*args) + return hashlib.md5(*args, usedforsecurity=False) # type: ignore class LowercaseDict(MutableMapping[str, Any]): diff --git a/setup.cfg b/setup.cfg index cc9728812f88..bce2cb2975ba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,6 @@ license = Apache License 2.0 test_suite = tests classifiers = Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -26,7 +25,7 @@ project_urls = Changelog = https://github.com/getmoto/moto/blob/master/CHANGELOG.md [options] -python_requires = >=3.8 +python_requires = >=3.9 install_requires = boto3>=1.9.201 botocore>=1.14.0,!=1.35.45,!=1.35.46 diff --git a/tests/test_s3/test_s3.py b/tests/test_s3/test_s3.py index de1e2ee19fdc..911dd2461d7a 100644 --- a/tests/test_s3/test_s3.py +++ b/tests/test_s3/test_s3.py @@ -1756,7 +1756,8 @@ def test_head_object(size, bucket_name=None): client.head_object(Bucket=bucket_name, Key="hello.txt", PartNumber=2) err = exc.value.response["Error"] assert err["Code"] == "416" - assert err["Message"] == "Requested Range Not Satisfiable" + # Exact message depends on the werkzeug version - AWS returns 'Requested Range Not Satisfiable' + assert "Range Not Satisfiable" in err["Message"] with pytest.raises(ClientError) as exc: client.head_object(Bucket=bucket_name, Key="hello_bad.txt") @@ -1791,7 +1792,8 @@ def test_get_object(size, bucket_name=None): client.head_object(Bucket=bucket_name, Key="hello.txt", PartNumber=2) err = exc.value.response["Error"] assert err["Code"] == "416" - assert err["Message"] == "Requested Range Not Satisfiable" + # Exact message depends on the werkzeug version - AWS returns 'Requested Range Not Satisfiable' + assert "Range Not Satisfiable" in err["Message"] with pytest.raises(ClientError) as exc: s3_resource.Object(bucket_name, "hello2.txt").get() From 150778f11e3a35a8f3c0104220968875d1a3030a Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sun, 23 Feb 2025 20:11:38 -0100 Subject: [PATCH 089/103] Prep release 5.1.0 (#8618) --- .github/workflows/tests_sdk_cpp.yml | 4 +- CHANGELOG.md | 78 +++++++++++ IMPLEMENTATION_COVERAGE.md | 154 +++++++++++++++++++-- docs/docs/services/cloudformation.rst | 5 + docs/docs/services/cloudhsmv2.rst | 4 + docs/docs/services/lexv2-models.rst | 121 ++++++++++++++++ docs/docs/services/neptune.rst | 6 +- docs/docs/services/rds.rst | 10 +- docs/docs/services/sesv2.rst | 1 + docs/docs/services/timestream-influxdb.rst | 49 +++++++ moto/cloudhsmv2/models.py | 40 ++---- moto/cloudhsmv2/responses.py | 2 +- other_langs/tests_cpp/hello_s3.cpp | 17 ++- tests/test_cloudhsmv2/test_cloudhsmv2.py | 2 + 14 files changed, 441 insertions(+), 52 deletions(-) create mode 100644 docs/docs/services/lexv2-models.rst create mode 100644 docs/docs/services/timestream-influxdb.rst diff --git a/.github/workflows/tests_sdk_cpp.yml b/.github/workflows/tests_sdk_cpp.yml index 69400e4bd874..04383084fd38 100644 --- a/.github/workflows/tests_sdk_cpp.yml +++ b/.github/workflows/tests_sdk_cpp.yml @@ -9,10 +9,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.12" - name: Start MotoServer run: | pip install build diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ef568f37b4f..1aba7758a2ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,84 @@ Moto Changelog ============== +5.1.0 +----- +Docker Digest for 5.1.0: + + * General: + * Dropped support for Python 3.8 + + * New Services: + * Lex V2 Models: + * create_bot() + * create_bot_alias() + * create_resource_policy() + * delete_bot() + * delete_bot_alias() + * delete_resource_policy() + * describe_bot() + * describe_bot_alias() + * describe_resource_policy() + * list_bots() + * list_bot_aliases() + * list_tags_for_resource() + * tag_resource() + * update_bot() + * update_bot_alias() + * update_resource_policy() + * untag_resource() + + * CloudHSM V2: + * create_cluster() + * delete_cluster() + * describe_backups() + * describe_clusters() + * get_resource_policy() + * list_tags() + * put_resource_policy() + * tag_resource() + * untag_resource() + + * New Methods: + * ElasticSearch: + * add_tags() + * list_tags() + * remove_tags() + + * RDS: + * describe_events() + * describe_db_log_files() + * failover_db_cluster() + * restore_db_cluster_to_point_in_time() + + * SecurityHub: + * batch_import_findings() + * get_findings() + + * TimeStream InfluxDB: + * create_db_instance() + * delete_db_instance() + * get_db_instance() + * list_db_instances() + * list_tags_for_resource() + * tag_resource() + * untag_resource() + + * Miscellaneous: + * CognitoIDP: AccessTokens and IDTokens now contain the jti and origin_jti values + * DynamoDB: query()/scan() now handle pagination for GSI's correctly + * EC2: The DisableApiStop-attribute is now propagated properly and respected + * EC2: create_volume() now throws an error if the Size-parameter is not provided + * EC2: describe_subnets() now correctly handles a Filter without a Value + * ELBv2: create_listener() now validates the provided protocol against the LoadBalancer type + * ECS: run_task() now contains the Container-info in the response + * KMS: create_key() now supports the Origin-parameter + * Lambda: EventSourceMappings now support all parameters + * Lambda: list_functions() now works with the JS SDK + * Lambda: Choosing the image repository is now deterministic - first a custom source, then mlupin, lambci last + * RDS: Too many improvements to list, with many more supported features and bugfixes + + 5.0.28 ----- Docker Digest for 5.0.28: _sha256:d3532929e4c498334949a014e9f0af6617ec1e89d92be690cd192fa3354ad7e6_ diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index 2bbb9454f83b..3ce04cddd976 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -5336,6 +5336,114 @@ - [X] update_function_url_config
+## lexv2-models +
+16% implemented + +- [ ] batch_create_custom_vocabulary_item +- [ ] batch_delete_custom_vocabulary_item +- [ ] batch_update_custom_vocabulary_item +- [ ] build_bot_locale +- [X] create_bot +- [X] create_bot_alias +- [ ] create_bot_locale +- [ ] create_bot_replica +- [ ] create_bot_version +- [ ] create_export +- [ ] create_intent +- [X] create_resource_policy +- [ ] create_resource_policy_statement +- [ ] create_slot +- [ ] create_slot_type +- [ ] create_test_set_discrepancy_report +- [ ] create_upload_url +- [X] delete_bot +- [X] delete_bot_alias +- [ ] delete_bot_locale +- [ ] delete_bot_replica +- [ ] delete_bot_version +- [ ] delete_custom_vocabulary +- [ ] delete_export +- [ ] delete_import +- [ ] delete_intent +- [X] delete_resource_policy +- [ ] delete_resource_policy_statement +- [ ] delete_slot +- [ ] delete_slot_type +- [ ] delete_test_set +- [ ] delete_utterances +- [X] describe_bot +- [X] describe_bot_alias +- [ ] describe_bot_locale +- [ ] describe_bot_recommendation +- [ ] describe_bot_replica +- [ ] describe_bot_resource_generation +- [ ] describe_bot_version +- [ ] describe_custom_vocabulary_metadata +- [ ] describe_export +- [ ] describe_import +- [ ] describe_intent +- [X] describe_resource_policy +- [ ] describe_slot +- [ ] describe_slot_type +- [ ] describe_test_execution +- [ ] describe_test_set +- [ ] describe_test_set_discrepancy_report +- [ ] describe_test_set_generation +- [ ] generate_bot_element +- [ ] get_test_execution_artifacts_url +- [ ] list_aggregated_utterances +- [ ] list_bot_alias_replicas +- [X] list_bot_aliases +- [ ] list_bot_locales +- [ ] list_bot_recommendations +- [ ] list_bot_replicas +- [ ] list_bot_resource_generations +- [ ] list_bot_version_replicas +- [ ] list_bot_versions +- [X] list_bots +- [ ] list_built_in_intents +- [ ] list_built_in_slot_types +- [ ] list_custom_vocabulary_items +- [ ] list_exports +- [ ] list_imports +- [ ] list_intent_metrics +- [ ] list_intent_paths +- [ ] list_intent_stage_metrics +- [ ] list_intents +- [ ] list_recommended_intents +- [ ] list_session_analytics_data +- [ ] list_session_metrics +- [ ] list_slot_types +- [ ] list_slots +- [X] list_tags_for_resource +- [ ] list_test_execution_result_items +- [ ] list_test_executions +- [ ] list_test_set_records +- [ ] list_test_sets +- [ ] list_utterance_analytics_data +- [ ] list_utterance_metrics +- [ ] search_associated_transcripts +- [ ] start_bot_recommendation +- [ ] start_bot_resource_generation +- [ ] start_import +- [ ] start_test_execution +- [ ] start_test_set_generation +- [ ] stop_bot_recommendation +- [X] tag_resource +- [X] untag_resource +- [X] update_bot +- [X] update_bot_alias +- [ ] update_bot_locale +- [ ] update_bot_recommendation +- [ ] update_export +- [ ] update_intent +- [X] update_resource_policy +- [ ] update_slot +- [ ] update_slot_type +- [ ] update_test_set +
+ ## logs
57% implemented @@ -5796,7 +5904,7 @@ ## neptune
-57% implemented +62% implemented - [ ] add_role_to_db_cluster - [ ] add_source_identifier_to_subscription @@ -5838,12 +5946,12 @@ - [ ] describe_engine_default_parameters - [ ] describe_event_categories - [X] describe_event_subscriptions -- [ ] describe_events +- [X] describe_events - [X] describe_global_clusters - [X] describe_orderable_db_instance_options - [ ] describe_pending_maintenance_actions - [ ] describe_valid_db_instance_modifications -- [ ] failover_db_cluster +- [X] failover_db_cluster - [ ] failover_global_cluster - [X] list_tags_for_resource - [X] modify_db_cluster @@ -5864,7 +5972,7 @@ - [ ] reset_db_cluster_parameter_group - [ ] reset_db_parameter_group - [X] restore_db_cluster_from_snapshot -- [ ] restore_db_cluster_to_point_in_time +- [X] restore_db_cluster_to_point_in_time - [X] start_db_cluster - [X] stop_db_cluster
@@ -6792,7 +6900,7 @@ ## rds
-42% implemented +45% implemented - [ ] add_role_to_db_cluster - [ ] add_role_to_db_instance @@ -6861,9 +6969,9 @@ - [X] describe_db_cluster_snapshots - [X] describe_db_clusters - [ ] describe_db_engine_versions -- [ ] describe_db_instance_automated_backups +- [X] describe_db_instance_automated_backups - [X] describe_db_instances -- [ ] describe_db_log_files +- [X] describe_db_log_files - [X] describe_db_parameter_groups - [ ] describe_db_parameters - [X] describe_db_proxies @@ -6881,7 +6989,7 @@ - [ ] describe_engine_default_parameters - [ ] describe_event_categories - [X] describe_event_subscriptions -- [ ] describe_events +- [X] describe_events - [X] describe_export_tasks - [X] describe_global_clusters - [ ] describe_integrations @@ -6897,7 +7005,7 @@ - [ ] disable_http_endpoint - [ ] download_db_log_file_portion - [ ] enable_http_endpoint -- [ ] failover_db_cluster +- [X] failover_db_cluster - [ ] failover_global_cluster - [X] list_tags_for_resource - [ ] modify_activity_stream @@ -6939,7 +7047,7 @@ - [ ] reset_db_parameter_group - [ ] restore_db_cluster_from_s3 - [X] restore_db_cluster_from_snapshot -- [ ] restore_db_cluster_to_point_in_time +- [X] restore_db_cluster_to_point_in_time - [X] restore_db_instance_from_db_snapshot - [ ] restore_db_instance_from_s3 - [X] restore_db_instance_to_point_in_time @@ -8556,6 +8664,7 @@ - [ ] put_account_sending_attributes - [ ] put_account_suppression_attributes - [ ] put_account_vdm_attributes +- [ ] put_configuration_set_archiving_options - [ ] put_configuration_set_delivery_options - [ ] put_configuration_set_reputation_options - [ ] put_configuration_set_sending_options @@ -9115,6 +9224,29 @@ - [ ] update_adapter
+## timestream-influxdb +
+41% implemented + +- [ ] create_db_cluster +- [X] create_db_instance +- [ ] create_db_parameter_group +- [ ] delete_db_cluster +- [X] delete_db_instance +- [ ] get_db_cluster +- [X] get_db_instance +- [ ] get_db_parameter_group +- [ ] list_db_clusters +- [X] list_db_instances +- [ ] list_db_instances_for_cluster +- [ ] list_db_parameter_groups +- [X] list_tags_for_resource +- [X] tag_resource +- [X] untag_resource +- [ ] update_db_cluster +- [ ] update_db_instance +
+ ## timestream-query
40% implemented @@ -9653,7 +9785,6 @@ - launch-wizard - lex-models - lex-runtime -- lexv2-models - lexv2-runtime - license-manager - license-manager-linux-subscriptions @@ -9758,7 +9889,6 @@ - support-app - synthetics - taxsettings -- timestream-influxdb - tnb - translate - trustedadvisor diff --git a/docs/docs/services/cloudformation.rst b/docs/docs/services/cloudformation.rst index ed32b75bf760..ee4559431fa0 100644 --- a/docs/docs/services/cloudformation.rst +++ b/docs/docs/services/cloudformation.rst @@ -33,6 +33,7 @@ cloudformation The following parameters are not yet implemented: DeploymentTargets.AccountFilterType, DeploymentTargets.AccountsUrl, OperationPreferences, CallAs +- [ ] create_stack_refactor - [X] create_stack_set The following parameters are not yet implemented: StackId, AdministrationRoleARN, AutoDeployment, ExecutionRoleName, CallAs, ClientRequestToken, ManagedExecution @@ -60,6 +61,7 @@ cloudformation - [ ] describe_stack_drift_detection_status - [X] describe_stack_events - [X] describe_stack_instance +- [ ] describe_stack_refactor - [X] describe_stack_resource - [ ] describe_stack_resource_drifts - [X] describe_stack_resources @@ -73,6 +75,7 @@ cloudformation - [ ] detect_stack_set_drift - [ ] estimate_template_cost - [X] execute_change_set +- [ ] execute_stack_refactor - [ ] get_generated_template - [X] get_stack_policy - [X] get_template @@ -93,6 +96,8 @@ cloudformation The parameters StackInstanceAccount/StackInstanceRegion are not yet implemented. +- [ ] list_stack_refactor_actions +- [ ] list_stack_refactors - [X] list_stack_resources - [ ] list_stack_set_auto_deployment_targets - [X] list_stack_set_operation_results diff --git a/docs/docs/services/cloudhsmv2.rst b/docs/docs/services/cloudhsmv2.rst index 273b16c7156d..23033476018e 100644 --- a/docs/docs/services/cloudhsmv2.rst +++ b/docs/docs/services/cloudhsmv2.rst @@ -28,6 +28,10 @@ cloudhsmv2 - [X] get_resource_policy - [ ] initialize_cluster - [X] list_tags + + Pagination is not yet implemented + + - [ ] modify_backup_attributes - [ ] modify_cluster - [X] put_resource_policy diff --git a/docs/docs/services/lexv2-models.rst b/docs/docs/services/lexv2-models.rst new file mode 100644 index 000000000000..71ba74645819 --- /dev/null +++ b/docs/docs/services/lexv2-models.rst @@ -0,0 +1,121 @@ +.. _implementedservice_lexv2-models: + +.. |start-h3| raw:: html + +

+ +.. |end-h3| raw:: html + +

+ +============ +lexv2-models +============ + +.. autoclass:: moto.lexv2models.models.LexModelsV2Backend + +|start-h3| Implemented features for this service |end-h3| + +- [ ] batch_create_custom_vocabulary_item +- [ ] batch_delete_custom_vocabulary_item +- [ ] batch_update_custom_vocabulary_item +- [ ] build_bot_locale +- [X] create_bot +- [X] create_bot_alias +- [ ] create_bot_locale +- [ ] create_bot_replica +- [ ] create_bot_version +- [ ] create_export +- [ ] create_intent +- [X] create_resource_policy +- [ ] create_resource_policy_statement +- [ ] create_slot +- [ ] create_slot_type +- [ ] create_test_set_discrepancy_report +- [ ] create_upload_url +- [X] delete_bot +- [X] delete_bot_alias +- [ ] delete_bot_locale +- [ ] delete_bot_replica +- [ ] delete_bot_version +- [ ] delete_custom_vocabulary +- [ ] delete_export +- [ ] delete_import +- [ ] delete_intent +- [X] delete_resource_policy +- [ ] delete_resource_policy_statement +- [ ] delete_slot +- [ ] delete_slot_type +- [ ] delete_test_set +- [ ] delete_utterances +- [X] describe_bot +- [X] describe_bot_alias +- [ ] describe_bot_locale +- [ ] describe_bot_recommendation +- [ ] describe_bot_replica +- [ ] describe_bot_resource_generation +- [ ] describe_bot_version +- [ ] describe_custom_vocabulary_metadata +- [ ] describe_export +- [ ] describe_import +- [ ] describe_intent +- [X] describe_resource_policy +- [ ] describe_slot +- [ ] describe_slot_type +- [ ] describe_test_execution +- [ ] describe_test_set +- [ ] describe_test_set_discrepancy_report +- [ ] describe_test_set_generation +- [ ] generate_bot_element +- [ ] get_test_execution_artifacts_url +- [ ] list_aggregated_utterances +- [ ] list_bot_alias_replicas +- [X] list_bot_aliases +- [ ] list_bot_locales +- [ ] list_bot_recommendations +- [ ] list_bot_replicas +- [ ] list_bot_resource_generations +- [ ] list_bot_version_replicas +- [ ] list_bot_versions +- [X] list_bots +- [ ] list_built_in_intents +- [ ] list_built_in_slot_types +- [ ] list_custom_vocabulary_items +- [ ] list_exports +- [ ] list_imports +- [ ] list_intent_metrics +- [ ] list_intent_paths +- [ ] list_intent_stage_metrics +- [ ] list_intents +- [ ] list_recommended_intents +- [ ] list_session_analytics_data +- [ ] list_session_metrics +- [ ] list_slot_types +- [ ] list_slots +- [X] list_tags_for_resource +- [ ] list_test_execution_result_items +- [ ] list_test_executions +- [ ] list_test_set_records +- [ ] list_test_sets +- [ ] list_utterance_analytics_data +- [ ] list_utterance_metrics +- [ ] search_associated_transcripts +- [ ] start_bot_recommendation +- [ ] start_bot_resource_generation +- [ ] start_import +- [ ] start_test_execution +- [ ] start_test_set_generation +- [ ] stop_bot_recommendation +- [X] tag_resource +- [X] untag_resource +- [X] update_bot +- [X] update_bot_alias +- [ ] update_bot_locale +- [ ] update_bot_recommendation +- [ ] update_export +- [ ] update_intent +- [X] update_resource_policy +- [ ] update_slot +- [ ] update_slot_type +- [ ] update_test_set + diff --git a/docs/docs/services/neptune.rst b/docs/docs/services/neptune.rst index 5df17b74197c..039cfc5dfe6f 100644 --- a/docs/docs/services/neptune.rst +++ b/docs/docs/services/neptune.rst @@ -54,7 +54,7 @@ neptune - [ ] describe_engine_default_parameters - [ ] describe_event_categories - [X] describe_event_subscriptions -- [ ] describe_events +- [X] describe_events - [X] describe_global_clusters - [X] describe_orderable_db_instance_options @@ -63,7 +63,7 @@ neptune - [ ] describe_pending_maintenance_actions - [ ] describe_valid_db_instance_modifications -- [ ] failover_db_cluster +- [X] failover_db_cluster - [ ] failover_global_cluster - [X] list_tags_for_resource - [X] modify_db_cluster @@ -84,7 +84,7 @@ neptune - [ ] reset_db_cluster_parameter_group - [ ] reset_db_parameter_group - [X] restore_db_cluster_from_snapshot -- [ ] restore_db_cluster_to_point_in_time +- [X] restore_db_cluster_to_point_in_time - [X] start_db_cluster - [X] stop_db_cluster diff --git a/docs/docs/services/rds.rst b/docs/docs/services/rds.rst index f2a8bab77ff4..57936a04b3d0 100644 --- a/docs/docs/services/rds.rst +++ b/docs/docs/services/rds.rst @@ -81,9 +81,9 @@ rds - [X] describe_db_cluster_snapshots - [X] describe_db_clusters - [ ] describe_db_engine_versions -- [ ] describe_db_instance_automated_backups +- [X] describe_db_instance_automated_backups - [X] describe_db_instances -- [ ] describe_db_log_files +- [X] describe_db_log_files - [X] describe_db_parameter_groups - [ ] describe_db_parameters - [X] describe_db_proxies @@ -105,7 +105,7 @@ rds - [ ] describe_engine_default_parameters - [ ] describe_event_categories - [X] describe_event_subscriptions -- [ ] describe_events +- [X] describe_events - [X] describe_export_tasks - [X] describe_global_clusters - [ ] describe_integrations @@ -125,7 +125,7 @@ rds - [ ] disable_http_endpoint - [ ] download_db_log_file_portion - [ ] enable_http_endpoint -- [ ] failover_db_cluster +- [X] failover_db_cluster - [ ] failover_global_cluster - [X] list_tags_for_resource - [ ] modify_activity_stream @@ -167,7 +167,7 @@ rds - [ ] reset_db_parameter_group - [ ] restore_db_cluster_from_s3 - [X] restore_db_cluster_from_snapshot -- [ ] restore_db_cluster_to_point_in_time +- [X] restore_db_cluster_to_point_in_time - [X] restore_db_instance_from_db_snapshot - [ ] restore_db_instance_from_s3 - [X] restore_db_instance_to_point_in_time diff --git a/docs/docs/services/sesv2.rst b/docs/docs/services/sesv2.rst index 6005c93a68be..07f6e72dd297 100644 --- a/docs/docs/services/sesv2.rst +++ b/docs/docs/services/sesv2.rst @@ -84,6 +84,7 @@ sesv2 - [ ] put_account_sending_attributes - [ ] put_account_suppression_attributes - [ ] put_account_vdm_attributes +- [ ] put_configuration_set_archiving_options - [ ] put_configuration_set_delivery_options - [ ] put_configuration_set_reputation_options - [ ] put_configuration_set_sending_options diff --git a/docs/docs/services/timestream-influxdb.rst b/docs/docs/services/timestream-influxdb.rst new file mode 100644 index 000000000000..4b0cf83009cd --- /dev/null +++ b/docs/docs/services/timestream-influxdb.rst @@ -0,0 +1,49 @@ +.. _implementedservice_timestream-influxdb: + +.. |start-h3| raw:: html + +

+ +.. |end-h3| raw:: html + +

+ +=================== +timestream-influxdb +=================== + +.. autoclass:: moto.timestreaminfluxdb.models.TimestreamInfluxDBBackend + +|start-h3| Implemented features for this service |end-h3| + +- [ ] create_db_cluster +- [X] create_db_instance + + dbParameterGroupIdentifier argument is not yet handled + deploymentType currently is auto set to 'SINGLE_AZ' if not passed in. + publicAccessible is not yet handled + logDeliveryConfiguration is not yet handled + AvailabilityZone and SecondaryAvailabilityZone are not yet handled + influxAuthParametersSecretArn is not yet handled + + +- [ ] create_db_parameter_group +- [ ] delete_db_cluster +- [X] delete_db_instance +- [ ] get_db_cluster +- [X] get_db_instance +- [ ] get_db_parameter_group +- [ ] list_db_clusters +- [X] list_db_instances + + Pagination is not yet implemented + + +- [ ] list_db_instances_for_cluster +- [ ] list_db_parameter_groups +- [X] list_tags_for_resource +- [X] tag_resource +- [X] untag_resource +- [ ] update_db_cluster +- [ ] update_db_instance + diff --git a/moto/cloudhsmv2/models.py b/moto/cloudhsmv2/models.py index ffcda110d4a3..d8443724036b 100644 --- a/moto/cloudhsmv2/models.py +++ b/moto/cloudhsmv2/models.py @@ -5,7 +5,7 @@ from moto.core.base_backend import BackendDict, BaseBackend from moto.core.utils import utcnow -from moto.utilities.paginator import Paginator, paginate +from moto.utilities.paginator import paginate from .exceptions import ResourceNotFoundException @@ -125,13 +125,20 @@ class CloudHSMV2Backend(BaseBackend): """Implementation of CloudHSMV2 APIs.""" PAGINATION_MODEL = { + "describe_backups": { + "input_token": "next_token", + "limit_key": "max_results", + "limit_default": 100, + "unique_attribute": "backup_id", + "fail_on_invalid_token": False, + }, "describe_clusters": { "input_token": "next_token", "limit_key": "max_results", "limit_default": 100, "unique_attribute": "ClusterId", "fail_on_invalid_token": False, - } + }, } def __init__(self, region_name: str, account_id: str) -> None: @@ -144,7 +151,9 @@ def __init__(self, region_name: str, account_id: str) -> None: def list_tags( self, resource_id: str, next_token: str, max_results: int ) -> Tuple[List[Dict[str, str]], Optional[str]]: - """NEED TO IMPLEMENT PAGINATION""" + """ + Pagination is not yet implemented + """ if resource_id not in self.tags: return [], None @@ -227,14 +236,6 @@ def delete_cluster(self, cluster_id: str) -> Dict[str, Any]: def describe_clusters( self, filters: Optional[Dict[str, List[str]]] = None ) -> List[Dict[str, str]]: - """List all clusters with optional filtering. - - Args: - filters: Optional dictionary of filters to apply - - Returns: - List of cluster dictionaries - """ clusters = list(self.clusters.values()) if filters: @@ -252,14 +253,13 @@ def describe_clusters( def get_resource_policy(self, resource_arn: str) -> Optional[str]: return self.resource_policies.get(resource_arn) + @paginate(PAGINATION_MODEL) def describe_backups( self, - next_token: Optional[str], - max_results: Optional[int], filters: Optional[Dict[str, List[str]]], shared: Optional[bool], sort_ascending: Optional[bool], - ) -> Tuple[List[Dict[str, Any]], Optional[str]]: + ) -> List[Backup]: backups = list(self.backups.values()) if filters: @@ -280,17 +280,7 @@ def describe_backups( key=lambda x: x.create_timestamp, reverse=not sort_ascending if sort_ascending is not None else True, ) - if not max_results: - return [b.to_dict() for b in backups], None - - paginator = Paginator( - max_results=max_results, - unique_attribute="BackupId", - starting_token=next_token, - fail_on_invalid_token=False, - ) - results, token = paginator.paginate([b.to_dict() for b in backups]) - return results, token + return backups def put_resource_policy(self, resource_arn: str, policy: str) -> Dict[str, str]: self.resource_policies[resource_arn] = policy diff --git a/moto/cloudhsmv2/responses.py b/moto/cloudhsmv2/responses.py index 016fdc43357a..906cd38ee11b 100644 --- a/moto/cloudhsmv2/responses.py +++ b/moto/cloudhsmv2/responses.py @@ -141,7 +141,7 @@ def describe_backups(self) -> str: sort_ascending=sort_ascending, ) - response = {"Backups": backups} + response = {"Backups": [b.to_dict() for b in backups]} if next_token: response["NextToken"] = next_token diff --git a/other_langs/tests_cpp/hello_s3.cpp b/other_langs/tests_cpp/hello_s3.cpp index f7124a5934ee..1cdb444b37c4 100644 --- a/other_langs/tests_cpp/hello_s3.cpp +++ b/other_langs/tests_cpp/hello_s3.cpp @@ -122,19 +122,28 @@ int main(int argc, char **argv) { auto creds = provider->GetAWSCredentials(); Aws::S3::S3Client s3Client(clientConfig); - listBuckets(clientConfig); + bool list_success = listBuckets(clientConfig); + if (!list_success) { + result = 1; + } Aws::String uuid1 = Aws::Utils::UUID::RandomUUID(); Aws::String uuid2 = Aws::Utils::UUID::RandomUUID(); Aws::String bucket1 = Aws::Utils::StringUtils::ToLower(uuid1.c_str()); Aws::String bucket2 = Aws::Utils::StringUtils::ToLower(uuid2.c_str()); - createBucket(bucket1, clientConfig); + createBucket(bucket1, clientConfig); // Not validating these - the subsequent operations will tell us if these didn't work createBucket(bucket2, clientConfig); - putObject(bucket1, "test.txt", clientConfig); + bool put_success = putObject(bucket1, "test.txt", clientConfig); + if (!put_success) { + result = 1; + } - copyObject("test.txt", bucket1, bucket2, clientConfig); + bool copy_success = copyObject("test.txt", bucket1, bucket2, clientConfig); + if (!copy_success) { + result = 1; + } } Aws::ShutdownAPI(options); // Should only be called once. diff --git a/tests/test_cloudhsmv2/test_cloudhsmv2.py b/tests/test_cloudhsmv2/test_cloudhsmv2.py index 16cb4d8be51b..1d0c06ded363 100644 --- a/tests/test_cloudhsmv2/test_cloudhsmv2.py +++ b/tests/test_cloudhsmv2/test_cloudhsmv2.py @@ -306,6 +306,8 @@ def test_describe_backups_pagination(): Mode="FIPS", ) + assert len(client.describe_backups()["Backups"]) == 3 + # Test pagination with MaxResults response = client.describe_backups(MaxResults=2) assert len(response["Backups"]) == 2 From 3c5e056c2b9c0954cba3719a341be33808c46300 Mon Sep 17 00:00:00 2001 From: Moto Admin Date: Sun, 23 Feb 2025 21:14:03 +0000 Subject: [PATCH 090/103] Pre-Release: Up Version Number --- moto/__init__.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/moto/__init__.py b/moto/__init__.py index d1b574d68ab8..5d94148db87c 100644 --- a/moto/__init__.py +++ b/moto/__init__.py @@ -1,4 +1,4 @@ from moto.core.decorator import mock_aws as mock_aws __title__ = "moto" -__version__ = "5.0.29.dev" +__version__ = "5.1.0" diff --git a/setup.cfg b/setup.cfg index bce2cb2975ba..2dd625d1c49c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = moto -version = 5.0.29.dev +version = 5.1.0 description = A library that allows you to easily mock out tests based on AWS infrastructure long_description = file:README.md long_description_content_type = text/markdown From 5252e9202f170b62edaae9239640b564e83710c3 Mon Sep 17 00:00:00 2001 From: Moto Admin Date: Sun, 23 Feb 2025 21:19:56 +0000 Subject: [PATCH 091/103] Admin: Post-release steps --- CHANGELOG.md | 2 +- moto/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aba7758a2ea..8efbd49a1372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Moto Changelog 5.1.0 ----- -Docker Digest for 5.1.0: +Docker Digest for 5.1.0: _sha256:aaf5f4a72412b753b2115417e26360612564d3a29b1831f9316708e15138d699_ * General: * Dropped support for Python 3.8 diff --git a/moto/__init__.py b/moto/__init__.py index 5d94148db87c..760c2b785119 100644 --- a/moto/__init__.py +++ b/moto/__init__.py @@ -1,4 +1,4 @@ from moto.core.decorator import mock_aws as mock_aws __title__ = "moto" -__version__ = "5.1.0" +__version__ = "5.1.1.dev" diff --git a/setup.cfg b/setup.cfg index 2dd625d1c49c..d43a768d3759 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = moto -version = 5.1.0 +version = 5.1.1.dev description = A library that allows you to easily mock out tests based on AWS infrastructure long_description = file:README.md long_description_content_type = text/markdown From 745685e21ad71e32ab86112fd349d7c6449345e2 Mon Sep 17 00:00:00 2001 From: Omar G <71164236+ghorondo@users.noreply.github.com> Date: Wed, 26 Feb 2025 06:03:48 -0500 Subject: [PATCH 092/103] GuardDuty: get_administrator_account method for (#8607) --- moto/guardduty/models.py | 17 ++++++++++++++ moto/guardduty/responses.py | 6 +++++ moto/guardduty/urls.py | 1 + tests/test_guardduty/test_guardduty.py | 32 ++++++++++++++++++++++++++ 4 files changed, 56 insertions(+) diff --git a/moto/guardduty/models.py b/moto/guardduty/models.py index fb901ac7e500..04ba546645d7 100644 --- a/moto/guardduty/models.py +++ b/moto/guardduty/models.py @@ -14,6 +14,9 @@ def __init__(self, region_name: str, account_id: str): super().__init__(region_name, account_id) self.admin_account_ids: List[str] = [] self.detectors: Dict[str, Detector] = {} + self.admin_accounts: Dict[ + str, Detector + ] = {} # Store admin accounts by detector_id def create_detector( self, @@ -86,6 +89,20 @@ def get_detector(self, detector_id: str) -> "Detector": raise DetectorNotFoundException return self.detectors[detector_id] + def get_administrator_account(self, detector_id: str) -> Dict[str, Any]: + """Get administrator account details.""" + self.get_detector(detector_id) + + if not self.admin_account_ids: + return {} + + return { + "Administrator": { + "AccountId": self.admin_account_ids[0], + "RelationshipStatus": "ENABLED", + } + } + def get_filter(self, detector_id: str, filter_name: str) -> "Filter": detector = self.get_detector(detector_id) return detector.get_filter(filter_name) diff --git a/moto/guardduty/responses.py b/moto/guardduty/responses.py index 614e9add2e3e..b7dc016391f2 100644 --- a/moto/guardduty/responses.py +++ b/moto/guardduty/responses.py @@ -114,3 +114,9 @@ def update_filter(self) -> str: rank=rank, ) return json.dumps({"name": filter_name}) + + def get_administrator_account(self) -> str: + """Get administrator account details.""" + detector_id = self.path.split("/")[-2] + result = self.guardduty_backend.get_administrator_account(detector_id) + return json.dumps(result) diff --git a/moto/guardduty/urls.py b/moto/guardduty/urls.py index 2b335cea04ad..9c20acad459e 100644 --- a/moto/guardduty/urls.py +++ b/moto/guardduty/urls.py @@ -8,6 +8,7 @@ url_paths = { "{0}/detector$": GuardDutyResponse.dispatch, "{0}/detector/(?P[^/]+)$": GuardDutyResponse.dispatch, + "{0}/detector/(?P[^/]+)/administrator$": GuardDutyResponse.dispatch, "{0}/detector/(?P[^/]+)/filter$": GuardDutyResponse.dispatch, "{0}/detector/(?P[^/]+)/filter/(?P[^/]+)$": GuardDutyResponse.dispatch, "{0}/admin/enable$": GuardDutyResponse.dispatch, diff --git a/tests/test_guardduty/test_guardduty.py b/tests/test_guardduty/test_guardduty.py index 4cd44688a3bd..b0c626f5f562 100644 --- a/tests/test_guardduty/test_guardduty.py +++ b/tests/test_guardduty/test_guardduty.py @@ -175,3 +175,35 @@ def test_delete_detector(): ) assert client.list_detectors()["DetectorIds"] == [] + + +@mock_aws +def test_get_administrator_account(): + guardduty_client = boto3.client("guardduty", region_name="us-east-1") + + detector_response = guardduty_client.create_detector(Enable=True) + detector_id = detector_response["DetectorId"] + + guardduty_client.enable_organization_admin_account(AdminAccountId="someaccount") + + list_resp = guardduty_client.list_organization_admin_accounts() + + assert list_resp["AdminAccounts"][0]["AdminAccountId"] == "someaccount" + assert list_resp["AdminAccounts"][0]["AdminStatus"] == "ENABLED" + + resp = guardduty_client.get_administrator_account(DetectorId=detector_id) + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 200 + + +@mock_aws +def test_no_administrator_account(): + guardduty_client = boto3.client("guardduty", region_name="us-east-1") + + detector_response = guardduty_client.create_detector(Enable=True) + detector_id = detector_response["DetectorId"] + list_resp = guardduty_client.list_organization_admin_accounts() + + resp = guardduty_client.get_administrator_account(DetectorId=detector_id) + + assert "AdminAccountId" not in list_resp + assert resp["ResponseMetadata"]["HTTPStatusCode"] == 200 From 1ced10fce7917bdaa0d64c9b419d5d90b99bd5ab Mon Sep 17 00:00:00 2001 From: Juan Cabrera <43006530+juanitosvq@users.noreply.github.com> Date: Wed, 26 Feb 2025 06:05:51 -0500 Subject: [PATCH 093/103] CognitoIdentity: Add support for delete_identity_pool (#8619) --- IMPLEMENTATION_COVERAGE.md | 4 ++-- docs/docs/services/cognito-identity.rst | 2 +- moto/cognitoidentity/models.py | 5 +++++ moto/cognitoidentity/responses.py | 7 +++++++ tests/test_cognitoidentity/test_cognitoidentity.py | 12 ++++++++++++ 5 files changed, 27 insertions(+), 3 deletions(-) diff --git a/IMPLEMENTATION_COVERAGE.md b/IMPLEMENTATION_COVERAGE.md index 3ce04cddd976..980605ca355e 100644 --- a/IMPLEMENTATION_COVERAGE.md +++ b/IMPLEMENTATION_COVERAGE.md @@ -1538,11 +1538,11 @@ ## cognito-identity
-39% implemented +43% implemented - [X] create_identity_pool - [ ] delete_identities -- [ ] delete_identity_pool +- [X] delete_identity_pool - [ ] describe_identity - [X] describe_identity_pool - [X] get_credentials_for_identity diff --git a/docs/docs/services/cognito-identity.rst b/docs/docs/services/cognito-identity.rst index fb60422676ed..0ec822028f27 100644 --- a/docs/docs/services/cognito-identity.rst +++ b/docs/docs/services/cognito-identity.rst @@ -16,7 +16,7 @@ cognito-identity - [X] create_identity_pool - [ ] delete_identities -- [ ] delete_identity_pool +- [X] delete_identity_pool - [ ] describe_identity - [X] describe_identity_pool - [X] get_credentials_for_identity diff --git a/moto/cognitoidentity/models.py b/moto/cognitoidentity/models.py index a0a714cac6e6..605214d1c6d8 100644 --- a/moto/cognitoidentity/models.py +++ b/moto/cognitoidentity/models.py @@ -187,5 +187,10 @@ def list_identity_pools(self) -> str: } ) + def delete_identity_pool(self, identity_pool_id: str) -> None: + self.describe_identity_pool(identity_pool_id) + + del self.identity_pools[identity_pool_id] + cognitoidentity_backends = BackendDict(CognitoIdentityBackend, "cognito-identity") diff --git a/moto/cognitoidentity/responses.py b/moto/cognitoidentity/responses.py index 0a8dacba008c..dac35caeb691 100644 --- a/moto/cognitoidentity/responses.py +++ b/moto/cognitoidentity/responses.py @@ -84,3 +84,10 @@ def list_identities(self) -> str: def list_identity_pools(self) -> str: return self.backend.list_identity_pools() + + def delete_identity_pool(self) -> str: + identity_pool_id = self._get_param("IdentityPoolId") + self.backend.delete_identity_pool( + identity_pool_id=identity_pool_id, + ) + return "" diff --git a/tests/test_cognitoidentity/test_cognitoidentity.py b/tests/test_cognitoidentity/test_cognitoidentity.py index cfa156adde69..cc1a52c656a1 100644 --- a/tests/test_cognitoidentity/test_cognitoidentity.py +++ b/tests/test_cognitoidentity/test_cognitoidentity.py @@ -256,3 +256,15 @@ def test_list_identity_pools(): identity_data = conn.list_identity_pools(MaxResults=10) assert identity_pool_id == identity_data["IdentityPools"][0]["IdentityPoolId"] assert "test_identity_pool" == identity_data["IdentityPools"][0]["IdentityPoolName"] + + +@mock_aws +def test_delete_identity_pool(): + conn = boto3.client("cognito-identity", region_name="ap-southeast-1") + identity_pool_id = conn.create_identity_pool( + IdentityPoolName="test_identity_pool", AllowUnauthenticatedIdentities=True + )["IdentityPoolId"] + + assert len(conn.list_identity_pools(MaxResults=10)["IdentityPools"]) == 1 + conn.delete_identity_pool(IdentityPoolId=identity_pool_id) + assert len(conn.list_identity_pools(MaxResults=10)["IdentityPools"]) == 0 From a1af2a840e28442cc95dda15ea9238641a55326d Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Wed, 26 Feb 2025 12:14:35 -0100 Subject: [PATCH 094/103] DynamoDB: Support AccountMode (#8621) --- moto/backend_index.py | 1 + moto/dynamodb/urls.py | 5 +++- .../test_dynamodb_account_mode.py | 26 +++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 tests/test_dynamodb/test_dynamodb_account_mode.py diff --git a/moto/backend_index.py b/moto/backend_index.py index 81bc73472c9f..78a888e94b20 100644 --- a/moto/backend_index.py +++ b/moto/backend_index.py @@ -49,6 +49,7 @@ ("ds", re.compile("https?://ds\\.(.+)\\.amazonaws\\.com")), ("dsql", re.compile("https?://dsql\\.(.+)\\.api\\.aws")), ("dynamodb", re.compile("https?://dynamodb\\.(.+)\\.amazonaws\\.com")), + ("dynamodb", re.compile("https?://(.+).ddb\\.(.+)\\.amazonaws\\.com")), ( "dynamodbstreams", re.compile("https?://streams\\.dynamodb\\.(.+)\\.amazonaws.com"), diff --git a/moto/dynamodb/urls.py b/moto/dynamodb/urls.py index 59f70de77a5d..a8c632e4926b 100644 --- a/moto/dynamodb/urls.py +++ b/moto/dynamodb/urls.py @@ -1,5 +1,8 @@ from .responses import DynamoHandler -url_bases = [r"https?://dynamodb\.(.+)\.amazonaws\.com"] +url_bases = [ + r"https?://dynamodb\.(.+)\.amazonaws\.com", + r"https?://(.+).ddb\.(.+)\.amazonaws\.com", +] url_paths = {"{0}/": DynamoHandler.dispatch} diff --git a/tests/test_dynamodb/test_dynamodb_account_mode.py b/tests/test_dynamodb/test_dynamodb_account_mode.py new file mode 100644 index 000000000000..9d9289f10aca --- /dev/null +++ b/tests/test_dynamodb/test_dynamodb_account_mode.py @@ -0,0 +1,26 @@ +import boto3 +import pytest +from botocore.config import Config + +from moto import mock_aws +from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID + + +@mock_aws +@pytest.mark.parametrize("endpoint_mode", ["disabled", "preferred", "required"]) +def test_dynamodb_with_account_id_routing(endpoint_mode): + endpoint_config = Config(account_id_endpoint_mode=endpoint_mode) + client = boto3.client( + "dynamodb", + aws_access_key_id="ACCESS_KEY", + aws_secret_access_key="SECRET_KEY", + aws_account_id=ACCOUNT_ID, + region_name="us-west-2", + config=endpoint_config, + ) + client.create_table( + TableName="test", + KeySchema=[{"AttributeName": "id", "KeyType": "HASH"}], + AttributeDefinitions=[{"AttributeName": "id", "AttributeType": "S"}], + ProvisionedThroughput={"ReadCapacityUnits": 5, "WriteCapacityUnits": 5}, + ) From b7c89b019fe14d4573120acf7b91008538353590 Mon Sep 17 00:00:00 2001 From: Zachary Karpinski Date: Wed, 26 Feb 2025 13:33:07 -0500 Subject: [PATCH 095/103] [Glue] Added Connections Support (#8626) --- moto/glue/models.py | 94 +++++++++++++++++++++++++++++++++--- moto/glue/responses.py | 42 ++++++++++++++++ tests/test_glue/test_glue.py | 86 +++++++++++++++++++++++++++++++++ 3 files changed, 216 insertions(+), 6 deletions(-) diff --git a/moto/glue/models.py b/moto/glue/models.py index e4e0f69cee17..51b98ec5e485 100644 --- a/moto/glue/models.py +++ b/moto/glue/models.py @@ -104,16 +104,25 @@ def __init__( self.last_modified_timestamp = self.created_timestamp self.status = "READY" self.availability_zone = "us-east-1a" - self.vpc_id = "vpc-12345678" - self.yarn_endpoint_address = f"yarn-{endpoint_name}.glue.amazonaws.com" self.private_address = "10.0.0.1" - self.public_address = f"{endpoint_name}.glue.amazonaws.com" + # TODO: Get the vpc id from the subnet using the subnet_id + self.vpc_id = "vpc-12345678" if subnet_id != "subnet-default" else None + self.yarn_endpoint_address = ( + f"yarn-{endpoint_name}.glue.amazonaws.com" + if subnet_id == "subnet-default" + else None + ) + self.public_address = ( + f"{endpoint_name}.glue.amazonaws.com" + if subnet_id == "subnet-default" + else None + ) self.zeppelin_remote_spark_interpreter_port = 9007 self.public_key = pubkey self.public_keys = [self.public_key] def as_dict(self) -> Dict[str, Any]: - return { + response = { "EndpointName": self.endpoint_name, "RoleArn": self.role_arn, "SecurityGroupIds": self.security_group_ids, @@ -121,7 +130,6 @@ def as_dict(self) -> Dict[str, Any]: "YarnEndpointAddress": self.yarn_endpoint_address, "PrivateAddress": self.private_address, "ZeppelinRemoteSparkInterpreterPort": self.zeppelin_remote_spark_interpreter_port, - "PublicAddress": self.public_address, "Status": self.status, "WorkerType": self.worker_type, "GlueVersion": self.glue_version, @@ -138,10 +146,19 @@ def as_dict(self) -> Dict[str, Any]: "SecurityConfiguration": self.security_configuration, "Arguments": self.arguments, } + if self.public_address: + response["PublicAddress"] = self.public_address + return response class GlueBackend(BaseBackend): PAGINATION_MODEL = { + "get_connections": { + "input_token": "next_token", + "limit_key": "max_results", + "limit_default": 100, + "unique_attribute": "name", + }, "get_jobs": { "input_token": "next_token", "limit_key": "max_results", @@ -190,6 +207,7 @@ def __init__(self, region_name: str, account_id: str): super().__init__(region_name, account_id) self.databases: Dict[str, FakeDatabase] = OrderedDict() self.crawlers: Dict[str, FakeCrawler] = OrderedDict() + self.connections: Dict[str, FakeConnection] = OrderedDict() self.jobs: Dict[str, FakeJob] = OrderedDict() self.job_runs: Dict[str, FakeJobRun] = OrderedDict() self.sessions: Dict[str, FakeSession] = OrderedDict() @@ -1179,6 +1197,36 @@ def get_dev_endpoint(self, endpoint_name: str) -> FakeDevEndpoint: except KeyError: raise EntityNotFoundException(f"DevEndpoint {endpoint_name} not found") + def create_connection( + self, catalog_id: str, connection_input: Dict[str, Any], tags: Dict[str, str] + ) -> str: + name = connection_input.get("Name", "") + if name in self.connections: + raise AlreadyExistsException(f"Connection {name} already exists") + connection = FakeConnection(self, catalog_id, connection_input, tags) + self.connections[name] = connection + return connection.status + + def get_connection( + self, + catalog_id: str, + name: str, + hide_password: bool, + apply_override_for_compute_environment: str, + ) -> "FakeConnection": + # TODO: Implement filtering + connection = self.connections.get(name) + if not connection: + raise EntityNotFoundException(f"Connection {name} not found") + return connection + + @paginate(pagination_model=PAGINATION_MODEL) + def get_connections( + self, catalog_id: str, filter: Dict[str, Any], hide_password: bool + ) -> List["FakeConnection"]: + # TODO: Implement filtering + return [connection for connection in self.connections.values()] + class FakeDatabase(BaseModel): def __init__( @@ -1337,7 +1385,7 @@ def __init__( tags: Dict[str, str], backend: GlueBackend, ): - self.name = name + self.name: str = name self.role = role self.database_name = database_name self.description = description @@ -1869,4 +1917,38 @@ def as_dict(self) -> Dict[str, Any]: return data +class FakeConnection(BaseModel): + def __init__( + self, + backend: GlueBackend, + catalog_id: str, + connection_input: Dict[str, Any], + tags: Dict[str, str], + ) -> None: + self.catalog_id = catalog_id + self.connection_input = connection_input + self.created_time = utcnow() + self.updated_time = utcnow() + self.arn = f"arn:{get_partition(backend.region_name)}:glue:{backend.region_name}:{backend.account_id}:connection/{self.connection_input['Name']}" + self.backend = backend + self.backend.tag_resource(self.arn, tags) + self.status = "READY" + self.name = self.connection_input.get("Name") + self.description = self.connection_input.get("Description") + + def as_dict(self) -> Dict[str, Any]: + return { + "Name": self.name, + "Description": self.description, + "Connection": self.connection_input, + "CreationTime": self.created_time.isoformat(), + "LastUpdatedTime": self.updated_time.isoformat(), + "CatalogId": self.catalog_id, + "Status": self.status, + "PhysicalConnectionRequirements": self.connection_input.get( + "PhysicalConnectionRequirements" + ), + } + + glue_backends = BackendDict(GlueBackend, "glue") diff --git a/moto/glue/responses.py b/moto/glue/responses.py index 91fd74a5c149..4011453655cd 100644 --- a/moto/glue/responses.py +++ b/moto/glue/responses.py @@ -793,3 +793,45 @@ def get_dev_endpoint(self) -> str: endpoint_name = self._get_param("EndpointName") dev_endpoint = self.glue_backend.get_dev_endpoint(endpoint_name) return json.dumps({"DevEndpoint": dev_endpoint.as_dict()}) + + def create_connection(self) -> str: + catalog_id = self._get_param("CatalogId") + connection_input = self._get_param("ConnectionInput") + tags = self._get_param("Tags") + create_connection_status = self.glue_backend.create_connection( + catalog_id=catalog_id, + connection_input=connection_input, + tags=tags, + ) + return json.dumps(dict(CreateConnectionStatus=create_connection_status)) + + def get_connection(self) -> str: + catalog_id = self._get_param("CatalogId") + name = self._get_param("Name") + hide_password = self._get_param("HidePassword") + apply_override_for_compute_environment = self._get_param( + "ApplyOverrideForComputeEnvironment" + ) + connection = self.glue_backend.get_connection( + catalog_id=catalog_id, + name=name, + hide_password=hide_password, + apply_override_for_compute_environment=apply_override_for_compute_environment, + ) + return json.dumps(dict(Connection=connection.as_dict())) + + def get_connections(self) -> str: + catalog_id = self._get_param("CatalogId") + filter = self._get_param("Filter") + hide_password = self._get_param("HidePassword") + next_token = self._get_param("NextToken") + max_results = self._get_param("MaxResults") + connections, next_token = self.glue_backend.get_connections( + catalog_id=catalog_id, + filter=filter, + hide_password=hide_password, + next_token=next_token, + max_results=max_results, + ) + connection_list = [connection.as_dict() for connection in connections] + return json.dumps(dict(ConnectionList=connection_list, NextToken=next_token)) diff --git a/tests/test_glue/test_glue.py b/tests/test_glue/test_glue.py index 4a74d5d91124..42e91f7656c0 100644 --- a/tests/test_glue/test_glue.py +++ b/tests/test_glue/test_glue.py @@ -920,6 +920,92 @@ def test_get_dev_endpoint(): response = client.get_dev_endpoint(EndpointName="test-endpoint") assert response["DevEndpoint"]["EndpointName"] == "test-endpoint" assert response["DevEndpoint"]["Status"] == "READY" + assert "PublicAddress" in response["DevEndpoint"] with pytest.raises(client.exceptions.EntityNotFoundException): client.get_dev_endpoint(EndpointName="nonexistent") + + client.create_dev_endpoint( + EndpointName="test-endpoint-private", + RoleArn="arn:aws:iam::123456789012:role/GlueDevEndpoint", + SubnetId="subnet-1234567890abcdef0", + ) + + response = client.get_dev_endpoint(EndpointName="test-endpoint-private") + assert response["DevEndpoint"]["EndpointName"] == "test-endpoint-private" + assert "PublicAddress" not in response["DevEndpoint"] + + +@mock_aws +def test_create_connection(): + client = boto3.client("glue", region_name="us-east-2") + subnet_id = "subnet-1234567890abcdef0" + connection_input = { + "Name": "test-connection", + "Description": "Test Connection", + "ConnectionType": "JDBC", + "ConnectionProperties": {"key": "value"}, + "PhysicalConnectionRequirements": { + "SubnetId": subnet_id, + "SecurityGroupIdList": [], + "AvailabilityZone": "us-east-1a", + }, + } + resp = client.create_connection(ConnectionInput=connection_input) + assert resp["CreateConnectionStatus"] == "READY" + + # Test duplicate name + with pytest.raises(client.exceptions.AlreadyExistsException): + client.create_connection(ConnectionInput=connection_input) + + +@mock_aws +def test_get_connection(): + client = boto3.client("glue", region_name="us-east-2") + subnet_id = "subnet-1234567890abcdef0" + connection_input = { + "Name": "test-connection", + "Description": "Test Connection", + "ConnectionType": "JDBC", + "ConnectionProperties": {"key": "value"}, + "PhysicalConnectionRequirements": { + "SubnetId": subnet_id, + "SecurityGroupIdList": [], + "AvailabilityZone": "us-east-1a", + }, + } + client.create_connection(ConnectionInput=connection_input) + connection = client.get_connection(Name="test-connection")["Connection"] + assert connection["Name"] == "test-connection" + assert connection["Status"] == "READY" + assert "PhysicalConnectionRequirements" in connection_input + assert connection["PhysicalConnectionRequirements"]["SubnetId"] == subnet_id + + # Test not found + with pytest.raises(client.exceptions.EntityNotFoundException): + client.get_connection(Name="nonexistent") + + +@mock_aws +def test_get_connections(): + client = boto3.client("glue", region_name="ap-southeast-1") + for i in range(3): + subnet_id = f"subnet-1234567890abcdef{i}" + connection_input = { + "Name": f"test-connection-{i}", + "Description": "Test Connection", + "ConnectionType": "JDBC", + "ConnectionProperties": {"key": "value"}, + "PhysicalConnectionRequirements": { + "SubnetId": subnet_id, + "SecurityGroupIdList": [], + "AvailabilityZone": "us-east-1a", + }, + } + client.create_connection(ConnectionInput=connection_input) + + connections = client.get_connections()["ConnectionList"] + assert len(connections) == 3 + assert connections[0]["Name"] == "test-connection-0" + assert connections[1]["Name"] == "test-connection-1" + assert connections[2]["Name"] == "test-connection-2" From 694ce1f4880c784fed0553bc19b2ace6691bc109 Mon Sep 17 00:00:00 2001 From: Zachary Karpinski Date: Wed, 26 Feb 2025 13:34:06 -0500 Subject: [PATCH 096/103] add event bus to resourcegrouptaggingapi (#8628) --- moto/resourcegroupstaggingapi/models.py | 21 +++++++++++++++++ .../test_resourcegroupstaggingapi.py | 23 +++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/moto/resourcegroupstaggingapi/models.py b/moto/resourcegroupstaggingapi/models.py index f9d66234e488..010d49bc95d1 100644 --- a/moto/resourcegroupstaggingapi/models.py +++ b/moto/resourcegroupstaggingapi/models.py @@ -12,6 +12,7 @@ from moto.elb.models import ELBBackend, elb_backends from moto.elbv2.models import ELBv2Backend, elbv2_backends from moto.emr.models import ElasticMapReduceBackend, emr_backends +from moto.events.models import EventsBackend, events_backends from moto.glacier.models import GlacierBackend, glacier_backends from moto.glue.models import GlueBackend, glue_backends from moto.kafka.models import KafkaBackend, kafka_backends @@ -70,6 +71,10 @@ def elb_backend(self) -> ELBBackend: def elbv2_backend(self) -> ELBv2Backend: return elbv2_backends[self.account_id][self.region_name] + @property + def events_backend(self) -> EventsBackend: + return events_backends[self.account_id][self.region_name] + @property def glue_backend(self) -> GlueBackend: return glue_backends[self.account_id][self.region_name] @@ -423,6 +428,22 @@ def format_tag_keys( # EMR Cluster + # Events + if ( + not resource_type_filters + or "events" in resource_type_filters + or "events:event-bus" in resource_type_filters + ): + for bus in self.events_backend.event_buses.values(): + tags = self.events_backend.tagger.list_tags_for_resource(bus.arn)[ + "Tags" + ] + if ( + not tag_filter(tags) or len(tags) == 0 + ): # Skip if no tags, or invalid filter + continue + yield {"ResourceARN": f"{bus.arn}", "Tags": tags} + # Glacier Vault # Glue diff --git a/tests/test_resourcegroupstaggingapi/test_resourcegroupstaggingapi.py b/tests/test_resourcegroupstaggingapi/test_resourcegroupstaggingapi.py index 5e77cafbbec7..043bd9075d7e 100644 --- a/tests/test_resourcegroupstaggingapi/test_resourcegroupstaggingapi.py +++ b/tests/test_resourcegroupstaggingapi/test_resourcegroupstaggingapi.py @@ -446,6 +446,29 @@ def test_get_tag_values_ec2(): assert "MY_VALUE4" in resp["TagValues"] +@mock_aws +def test_get_tag_values_event_bus(): + client = boto3.client("events") + client.create_event_bus(Name="test-bus1") + event_bus_2 = client.create_event_bus( + Name="test-bus2", Tags=[{"Key": "Test", "Value": "Test2"}] + ) + event_bus_3 = client.create_event_bus(Name="test-bus3") + client.tag_resource( + ResourceARN=event_bus_3["EventBusArn"], Tags=[{"Key": "Test", "Value": "Added"}] + ) + + rtapi = boto3.client("resourcegroupstaggingapi") + resp = rtapi.get_resources(ResourceTypeFilters=["events:event-bus"]) + assert len(resp["ResourceTagMappingList"]) == 2 + assert event_bus_2["EventBusArn"] in [ + x["ResourceARN"] for x in resp["ResourceTagMappingList"] + ] + assert event_bus_3["EventBusArn"] in [ + x["ResourceARN"] for x in resp["ResourceTagMappingList"] + ] + + @mock_aws def test_get_many_resources(): elbv2 = boto3.client("elbv2", region_name="us-east-1") From 81f5fd1df75b7d83b6554b082f764816538cbf0a Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Thu, 27 Feb 2025 03:40:20 -0100 Subject: [PATCH 097/103] Admin: Remove typing_extensions module (#8630) --- moto/rds/models.py | 23 ++++++++++++++++------- moto/rds/serialize.py | 3 +-- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index fc23353d4e70..7e9bfb7f1bb3 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -9,9 +9,18 @@ from collections import OrderedDict, defaultdict from functools import lru_cache, partialmethod from re import compile as re_compile -from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Tuple, Union - -from typing_extensions import Literal, Protocol, Type +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + List, + Literal, + Optional, + Protocol, + Tuple, + Union, +) from moto.core.base_backend import BackendDict, BaseBackend from moto.core.common_models import BaseModel, CloudFormationModel @@ -2111,9 +2120,9 @@ def get_backend( def get_snapshot( self, identifier: str, - resource_type: Type[DBSnapshot] | Type[DBClusterSnapshot], - not_found_exception: Type[DBSnapshotNotFoundFault] - | Type[DBClusterSnapshotNotFoundError], + resource_type: type[DBSnapshot] | type[DBClusterSnapshot], + not_found_exception: type[DBSnapshotNotFoundFault] + | type[DBClusterSnapshotNotFoundError], ) -> DBSnapshot | DBClusterSnapshot: region = self.region_name if identifier.startswith("arn"): @@ -2138,7 +2147,7 @@ def get_snapshot( ) def get_shared_snapshots( - self, resource_type: Type[DBSnapshot] | Type[DBClusterSnapshot] + self, resource_type: type[DBSnapshot] | type[DBClusterSnapshot] ) -> List[DBSnapshot | DBClusterSnapshot]: snapshots_shared = [] for backend_container in rds_backends.values(): diff --git a/moto/rds/serialize.py b/moto/rds/serialize.py index 4954ee24fe88..a5715c67e64e 100644 --- a/moto/rds/serialize.py +++ b/moto/rds/serialize.py @@ -17,11 +17,10 @@ StructureShape, ) from botocore.utils import parse_to_aware_datetime -from typing_extensions import TypeAlias from .utils import get_service_model -Serialized: TypeAlias = MutableMapping[str, Any] +Serialized = MutableMapping[str, Any] class ErrorShape(StructureShape): From e1c53bab28e23a3d5b12e5b4c14ea0fe1b81e897 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Mar 2025 01:31:01 +0000 Subject: [PATCH 098/103] Bump the java-deps group in /other_langs/tests_java with 6 updates (#8644) --- other_langs/tests_java/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/other_langs/tests_java/pom.xml b/other_langs/tests_java/pom.xml index 271a93da9dc6..c250c24ebfc7 100644 --- a/other_langs/tests_java/pom.xml +++ b/other_langs/tests_java/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk bom - 2.30.11 + 2.30.31 pom import @@ -82,7 +82,7 @@ maven-clean-plugin - 3.4.0 + 3.4.1 @@ -91,7 +91,7 @@ maven-compiler-plugin - 3.13.0 + 3.14.0 maven-surefire-plugin @@ -103,11 +103,11 @@ maven-install-plugin - 3.1.3 + 3.1.4 maven-deploy-plugin - 3.1.3 + 3.1.4 @@ -116,7 +116,7 @@ maven-project-info-reports-plugin - 3.8.0 + 3.9.0 From f476634ff679ac4091ed045df7fdd89a9d34b427 Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 1 Mar 2025 21:30:37 -0800 Subject: [PATCH 099/103] RDS: Raise error when trying to add DBInstance to non-existent DBCluster (#8645) --- moto/rds/exceptions.py | 11 +++++++---- moto/rds/models.py | 5 +++++ .../test_rds_clusters_with_instances.py | 17 +++++++++++++++++ 3 files changed, 29 insertions(+), 4 deletions(-) diff --git a/moto/rds/exceptions.py b/moto/rds/exceptions.py index b8457254dc60..f1092c753fcf 100644 --- a/moto/rds/exceptions.py +++ b/moto/rds/exceptions.py @@ -1,3 +1,6 @@ +from typing import Optional + + class RDSClientError(Exception): def __init__(self, code: str, message: str): super().__init__(message) @@ -146,10 +149,10 @@ def __init__(self, message: str): class DBClusterNotFoundError(RDSClientError): - def __init__(self, cluster_identifier: str): - super().__init__( - "DBClusterNotFoundFault", f"DBCluster {cluster_identifier} not found." - ) + def __init__(self, cluster_identifier: str, message: Optional[str] = None): + if message is None: + message = f"DBCluster {cluster_identifier} not found." + super().__init__("DBClusterNotFoundFault", message) class DBClusterSnapshotNotFoundError(RDSClientError): diff --git a/moto/rds/models.py b/moto/rds/models.py index 7e9bfb7f1bb3..54250aa9ba03 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -1509,6 +1509,11 @@ def __init__( self, db_cluster_identifier: str, promotion_tier: int = 1, **kwargs: Any ) -> None: super().__init__(db_cluster_identifier=db_cluster_identifier, **kwargs) + if db_cluster_identifier not in self.backend.clusters: + raise DBClusterNotFoundError( + db_cluster_identifier, + f"The source cluster could not be found or cannot be accessed: {db_cluster_identifier}", + ) self.cluster = self.backend.clusters[db_cluster_identifier] self.db_cluster_identifier: str = db_cluster_identifier self.is_cluster_writer = True if not self.cluster.members else False diff --git a/tests/test_rds/test_rds_clusters_with_instances.py b/tests/test_rds/test_rds_clusters_with_instances.py index 91d25358a002..4e6a24c93216 100644 --- a/tests/test_rds/test_rds_clusters_with_instances.py +++ b/tests/test_rds/test_rds_clusters_with_instances.py @@ -128,3 +128,20 @@ def test_delete_db_cluster_fails_if_cluster_contains_db_instances(): SkipFinalSnapshot=True, )["DBCluster"] assert cluster["DBClusterIdentifier"] == cluster_identifier + + +@mock_aws +def test_create_instance_with_non_existent_cluster_raises_error(): + client = boto3.client("rds", "us-east-1") + cluster_identifier = "non-existent-cluster-id" + with pytest.raises(ClientError) as exc: + client.create_db_instance( + DBClusterIdentifier=cluster_identifier, + Engine="aurora-postgresql", + DBInstanceIdentifier="test-instance", + DBInstanceClass="db.t4g.medium", + ) + err = exc.value.response["Error"] + assert err["Code"] == "DBClusterNotFoundFault" + assert cluster_identifier in err["Message"] + assert "could not be found" in err["Message"] From b78bc26bd33c367616a4492ef685e47ed2de229f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Mar 2025 10:31:30 -0100 Subject: [PATCH 100/103] chore: update Config Managed Rules (#8639) --- moto/config/resources/aws_managed_rules.json | 1257 +++++++++--------- 1 file changed, 595 insertions(+), 662 deletions(-) diff --git a/moto/config/resources/aws_managed_rules.json b/moto/config/resources/aws_managed_rules.json index 9d66f055cae1..6020290dc0ff 100644 --- a/moto/config/resources/aws_managed_rules.json +++ b/moto/config/resources/aws_managed_rules.json @@ -14,7 +14,7 @@ "Trigger type": "Periodic" }, "ACCOUNT_PART_OF_ORGANIZATIONS": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "MasterAccountId", @@ -36,20 +36,8 @@ "Resource Types": "AWS::ACMPCA::CertificateAuthority", "Trigger type": "Configuration changes" }, - "ACM_CERTIFICATE_AUTHORITY_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [ - { - "Name": "CertificateAuthorityArns", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::ACM::Certificate", - "Trigger type": "Configuration changes" - }, "ACM_CERTIFICATE_EXPIRATION_CHECK": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Osaka) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Osaka) Region", "Parameters": [ { "Default": "14", @@ -122,7 +110,7 @@ "Trigger type": "Configuration changes" }, "ALB_WAF_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Osaka), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Osaka) Region", "Parameters": [ { "Name": "wafWebAclIds", @@ -133,35 +121,46 @@ "Resource Types": "AWS::ElasticLoadBalancingV2::LoadBalancer", "Trigger type": "Configuration changes" }, - "APIGW_THROTTLING_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Europe (Milan), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", + "AMPLIFY_APP_BRANCH_AUTO_DELETION_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::Amplify::App", + "Trigger type": "Configuration changes" + }, + "AMPLIFY_APP_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::Amplify::App", + "Trigger type": "Configuration changes" + }, + "AMPLIFY_APP_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ { - "Default": "500", - "Name": "MinimumBurst", - "Optional": true, - "Type": "String" - }, - { - "Default": "5000", - "Name": "MaximumBurst", - "Optional": true, - "Type": "String" - }, - { - "Default": "1000", - "Name": "MinimumRate", + "Name": "requiredKeyTags", "Optional": true, - "Type": "String" - }, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Amplify::App", + "Trigger type": "Configuration changes" + }, + "AMPLIFY_BRANCH_PERFORMANCE_MODE_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::Amplify::Branch", + "Trigger type": "Configuration changes" + }, + "AMPLIFY_BRANCH_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ { - "Default": "10000", - "Name": "MaximumRate", + "Name": "requiredKeyTags", "Optional": true, - "Type": "String" + "Type": "CSV" } ], - "Resource Types": "AWS::ApiGateway::Stage, AWS::ApiGatewayV2::Stage", + "Resource Types": "AWS::Amplify::Branch", "Trigger type": "Configuration changes" }, "API_GWV2_ACCESS_LOGS_ENABLED": { @@ -183,7 +182,7 @@ "Trigger type": "Periodic" }, "API_GW_ASSOCIATED_WITH_WAF": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "WebAclArns", @@ -194,26 +193,14 @@ "Resource Types": "AWS::ApiGateway::Stage", "Trigger type": "Configuration changes" }, - "API_GW_AUTHORIZED_METHODS_CACHED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [ - { - "Name": "AuthorizedMethods", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::ApiGateway::Stage", - "Trigger type": "Configuration changes" - }, "API_GW_CACHE_ENABLED_AND_ENCRYPTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::ApiGateway::Stage", "Trigger type": "Configuration changes" }, "API_GW_ENDPOINT_TYPE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "endpointConfigurationTypes", @@ -225,7 +212,7 @@ "Trigger type": "Configuration changes" }, "API_GW_EXECUTION_LOGGING_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Default": "ERROR,INFO", @@ -238,7 +225,7 @@ "Trigger type": "Configuration changes" }, "API_GW_SSL_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "CertificateIDs", @@ -250,7 +237,7 @@ "Trigger type": "Configuration changes" }, "API_GW_XRAY_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::ApiGateway::Stage", "Trigger type": "Configuration changes" @@ -285,12 +272,24 @@ "Resource Types": "AWS::AppConfig::ConfigurationProfile", "Trigger type": "Configuration changes" }, + "APPCONFIG_CONFIGURATION_PROFILE_VALIDATORS_NOT_EMPTY": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::AppConfig::ConfigurationProfile", + "Trigger type": "Configuration changes" + }, "APPCONFIG_DEPLOYMENT_STRATEGY_DESCRIPTION": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], "Resource Types": "AWS::AppConfig::DeploymentStrategy", "Trigger type": "Configuration changes" }, + "APPCONFIG_DEPLOYMENT_STRATEGY_REPLICATE_TO_SSM": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::AppConfig::DeploymentStrategy", + "Trigger type": "Configuration changes" + }, "APPCONFIG_ENVIRONMENT_DESCRIPTION": { "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [], @@ -321,6 +320,18 @@ "Resource Types": "AWS::AppConfig::ExtensionAssociation", "Trigger type": "Configuration changes" }, + "APPCONFIG_FREEFORM_PROFILE_CONFIG_STORAGE": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::AppConfig::ConfigurationProfile", + "Trigger type": "Configuration changes" + }, + "APPCONFIG_HOSTED_CONFIGURATION_VERSION_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::AppConfig::HostedConfigurationVersion", + "Trigger type": "Configuration changes" + }, "APPFLOW_FLOW_TAGGED": { "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Africa (Cape Town), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", "Parameters": [ @@ -333,6 +344,24 @@ "Resource Types": "AWS::AppFlow::Flow", "Trigger type": "Configuration changes" }, + "APPINTEGRATIONS_EVENT_INTEGRATION_DESCRIPTION": { + "AWS Region": "Only available in Africa (Cape Town), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", + "Parameters": [], + "Resource Types": "AWS::AppIntegrations::EventIntegration", + "Trigger type": "Configuration changes" + }, + "APPINTEGRATIONS_EVENT_INTEGRATION_TAGGED": { + "AWS Region": "Only available in Africa (Cape Town), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::AppIntegrations::EventIntegration", + "Trigger type": "Configuration changes" + }, "APPMESH_GATEWAY_ROUTE_TAGGED": { "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -484,6 +513,12 @@ "Resource Types": "AWS::AppRunner::Service", "Trigger type": "Configuration changes" }, + "APPRUNNER_SERVICE_OBSERVABILITY_ENABLED": { + "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney) Region", + "Parameters": [], + "Resource Types": "AWS::AppRunner::Service", + "Trigger type": "Configuration changes" + }, "APPRUNNER_SERVICE_TAGGED": { "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney) Region", "Parameters": [ @@ -508,6 +543,12 @@ "Resource Types": "AWS::AppRunner::VpcConnector", "Trigger type": "Configuration changes" }, + "APPSTREAM_FLEET_IN_VPC": { + "AWS Region": "Only available in Asia Pacific (Mumbai), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", + "Parameters": [], + "Resource Types": "AWS::AppStream::Fleet", + "Trigger type": "Configuration changes" + }, "APPSYNC_ASSOCIATED_WITH_WAF": { "AWS Region": "All supported AWS regions except Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", "Parameters": [ @@ -562,17 +603,23 @@ "Resource Types": "AWS::AppSync::GraphQLApi", "Trigger type": "Configuration changes" }, - "ATHENA_QUERY_RESULTS_ENCRYPTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "KmsKeyArn", - "Optional": true, - "Type": "CSV" - } - ], + "ATHENA_DATA_CATALOG_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Athena::DataCatalog", + "Trigger type": "Configuration changes" + }, + "ATHENA_PREPARED_STATEMENT_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Europe (Milan), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Athena::PreparedStatement", + "Trigger type": "Configuration changes" + }, + "ATHENA_WORKGROUP_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], "Resource Types": "AWS::Athena::WorkGroup", - "Trigger type": "Periodic" + "Trigger type": "Configuration changes" }, "ATHENA_WORKGROUP_ENCRYPTED_AT_REST": { "AWS Region": "All supported AWS regions except Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", @@ -580,6 +627,18 @@ "Resource Types": "AWS::Athena::WorkGroup", "Trigger type": "Configuration changes" }, + "ATHENA_WORKGROUP_ENFORCE_WORKGROUP_CONFIGURATION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Athena::WorkGroup", + "Trigger type": "Configuration changes" + }, + "ATHENA_WORKGROUP_ENGINE_VERSION_AUTO_UPGRADE": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Athena::WorkGroup", + "Trigger type": "Configuration changes" + }, "ATHENA_WORKGROUP_LOGGING_ENABLED": { "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), Canada West (Calgary) Region", "Parameters": [], @@ -727,7 +786,7 @@ "Trigger type": "Configuration changes" }, "AUTOSCALING_GROUP_ELB_HEALTHCHECK_REQUIRED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::AutoScaling::AutoScalingGroup", "Trigger type": "Configuration changes" @@ -745,7 +804,7 @@ "Trigger type": "Configuration changes" }, "AUTOSCALING_LAUNCH_CONFIG_PUBLIC_IP_DISABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::AutoScaling::LaunchConfiguration", "Trigger type": "Configuration changes" @@ -774,6 +833,11 @@ "Resource Types": "AWS::AutoScaling::AutoScalingGroup", "Trigger type": "Configuration changes" }, + "AWS_CONFIG_PROCESS_CHECK": { + "AWS Region": "All supported AWS regions", + "Parameters": [], + "Trigger type": "Periodic" + }, "BACKUP_PLAN_MIN_FREQUENCY_AND_MIN_RETENTION_CHECK": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -830,6 +894,18 @@ "Resource Types": "AWS::Backup::RecoveryPoint", "Trigger type": "Configuration changes" }, + "BATCH_COMPUTE_ENVIRONMENT_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Batch::ComputeEnvironment", + "Trigger type": "Configuration changes" + }, + "BATCH_COMPUTE_ENVIRONMENT_MANAGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Batch::ComputeEnvironment", + "Trigger type": "Configuration changes" + }, "BATCH_COMPUTE_ENVIRONMENT_TAGGED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [ @@ -842,6 +918,12 @@ "Resource Types": "AWS::Batch::ComputeEnvironment", "Trigger type": "Configuration changes" }, + "BATCH_JOB_QUEUE_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Batch::JobQueue", + "Trigger type": "Configuration changes" + }, "BATCH_JOB_QUEUE_TAGGED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [ @@ -854,6 +936,24 @@ "Resource Types": "AWS::Batch::JobQueue", "Trigger type": "Configuration changes" }, + "BATCH_MANAGED_COMPUTE_ENVIRONMENT_USING_LAUNCH_TEMPLATE": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Batch::ComputeEnvironment", + "Trigger type": "Configuration changes" + }, + "BATCH_MANAGED_COMPUTE_ENV_COMPUTE_RESOURCES_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Batch::ComputeEnvironment", + "Trigger type": "Configuration changes" + }, "BATCH_SCHEDULING_POLICY_TAGGED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", "Parameters": [ @@ -914,12 +1014,6 @@ "Resource Types": "AWS::ElasticLoadBalancing::LoadBalancer", "Trigger type": "Configuration changes" }, - "CLOUDFORMATION_STACK_DELETE_FAILED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::CloudFormation::Stack", - "Trigger type": "Configuration changes" - }, "CLOUDFORMATION_STACK_DRIFT_DETECTION_CHECK": { "AWS Region": "All supported AWS regions except Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Melbourne), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", "Parameters": [ @@ -1000,12 +1094,6 @@ "Resource Types": "AWS::CloudFront::Distribution", "Trigger type": "Configuration changes" }, - "CLOUDFRONT_HTTPS_ONLY_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::CloudFront::Distribution", - "Trigger type": "Configuration changes" - }, "CLOUDFRONT_NO_DEPRECATED_SSL_PROTOCOLS": { "AWS Region": "Only available in US East (N. Virginia) Region", "Parameters": [], @@ -1072,27 +1160,6 @@ "Resource Types": "AWS::::Account", "Trigger type": "Periodic" }, - "CLOUDTRAIL_GLOBAL_EVENTS_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [], - "Trigger type": "Periodic" - }, - "CLOUDTRAIL_LAMBDA_DATAEVENTS_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [ - { - "Name": "LambdaFunctionArns", - "Optional": true, - "Type": "CSV" - }, - { - "Name": "CloudTrailNames", - "Optional": true, - "Type": "CSV" - } - ], - "Trigger type": "Periodic" - }, "CLOUDTRAIL_S3_BUCKET_ACCESS_LOGGING": { "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), Canada West (Calgary) Region", "Parameters": [], @@ -1106,7 +1173,7 @@ "Trigger type": "Periodic" }, "CLOUDTRAIL_S3_DATAEVENTS_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "S3BucketNames", @@ -1233,7 +1300,7 @@ "Trigger type": "Configuration changes" }, "CLOUDWATCH_LOG_GROUP_ENCRYPTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Mexico (Central) Region", "Parameters": [ { "Name": "KmsKeyId", @@ -1366,6 +1433,18 @@ "Resource Types": "AWS::CodeDeploy::DeploymentGroup", "Trigger type": "Configuration changes" }, + "CODEDEPLOY_DEPLOYMENT_GROUP_AUTO_ROLLBACK_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::CodeDeploy::DeploymentGroup", + "Trigger type": "Configuration changes" + }, + "CODEDEPLOY_DEPLOYMENT_GROUP_OUTDATED_INSTANCES_UPDATE": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::CodeDeploy::DeploymentGroup", + "Trigger type": "Configuration changes" + }, "CODEDEPLOY_EC2_MINIMUM_HEALTHY_HOSTS_CONFIGURED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -1452,16 +1531,11 @@ "Resource Types": "AWS::Cognito::UserPool", "Trigger type": "Configuration changes" }, - "CONFIG_AGGREGATOR_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [ - { - "Name": "AggrArnlist", - "Optional": true, - "Type": "CSV" - } - ], - "Trigger type": "Periodic" + "CUSTOMERPROFILES_OBJECT_TYPE_ALLOW_PROFILE_CREATION": { + "AWS Region": "Only available in Africa (Cape Town), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", + "Parameters": [], + "Resource Types": "AWS::CustomerProfiles::ObjectType", + "Trigger type": "Configuration changes" }, "CUSTOMERPROFILES_OBJECT_TYPE_TAGGED": { "AWS Region": "Only available in Africa (Cape Town), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", @@ -1504,6 +1578,12 @@ "Resource Types": "AWS::Logs::LogGroup", "Trigger type": "Periodic" }, + "DATASYNC_TASK_DATA_VERIFICATION_ENABLED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::DataSync::Task", + "Trigger type": "Configuration changes" + }, "DATASYNC_TASK_LOGGING_ENABLED": { "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), Canada West (Calgary) Region", "Parameters": [ @@ -1516,8 +1596,20 @@ "Resource Types": "AWS::DataSync::Task", "Trigger type": "Configuration changes" }, + "DATASYNC_TASK_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::DataSync::Task", + "Trigger type": "Configuration changes" + }, "DAX_ENCRYPTION_ENABLED": { - "AWS Region": "Only available in Europe (Stockholm), Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Europe (London), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney), Europe (Spain) Region", + "AWS Region": "Only available in Europe (Stockholm), China (Beijing), Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Europe (London), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney), Europe (Spain), China (Ningxia) Region", "Parameters": [], "Resource Types": "AWS::DAX::Cluster", "Trigger type": "Periodic" @@ -1555,12 +1647,6 @@ "Resource Types": "AWS::RDS::DBInstance", "Trigger type": "Configuration changes" }, - "DEFAULT_VPC_UNUSED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::VPC", - "Trigger type": "Periodic" - }, "DESIRED_INSTANCE_TENANCY": { "AWS Region": "All supported AWS regions", "Parameters": [ @@ -1626,7 +1712,7 @@ "Trigger type": "Configuration changes" }, "DMS_REPLICATION_NOT_PUBLIC": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::DMS::ReplicationInstance", "Trigger type": "Periodic" @@ -1723,7 +1809,7 @@ "Trigger type": "Periodic" }, "DYNAMODB_IN_BACKUP_PLAN": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::DynamoDB::Table", "Trigger type": "Periodic" @@ -1834,7 +1920,7 @@ "Trigger type": "Configuration changes" }, "DYNAMODB_TABLE_ENCRYPTED_KMS": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -1852,7 +1938,7 @@ "Trigger type": "Configuration changes" }, "DYNAMODB_THROUGHPUT_LIMIT_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Default": "80", @@ -1870,7 +1956,7 @@ "Trigger type": "Periodic" }, "EBS_IN_BACKUP_PLAN": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Melbourne), Mexico (Central), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::EC2::Volume", "Trigger type": "Periodic" @@ -2008,18 +2094,6 @@ "Parameters": [], "Trigger type": "Periodic" }, - "EBS_STORAGE_TYPE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "VolumeTypeList", - "Optional": false, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EC2::Volume", - "Trigger type": "Configuration changes" - }, "EC2_CLIENT_VPN_CONNECTION_LOG_ENABLED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia) Region", "Parameters": [], @@ -2050,13 +2124,13 @@ "Trigger type": "Configuration changes" }, "EC2_INSTANCE_MANAGED_BY_SSM": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::EC2::Instance, AWS::SSM::ManagedInstanceInventory", "Trigger type": "Configuration changes" }, "EC2_INSTANCE_MULTIPLE_ENI_CHECK": { - "AWS Region": "All supported AWS regions except AWS GovCloud (US-East), AWS GovCloud (US-West) Region", + "AWS Region": "All supported AWS regions", "Parameters": [ { "Name": "NetworkInterfaceIds", @@ -2074,7 +2148,7 @@ "Trigger type": "Configuration changes" }, "EC2_INSTANCE_PROFILE_ATTACHED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "IamInstanceProfileArnList", @@ -2132,8 +2206,20 @@ "Resource Types": "AWS::EC2::LaunchTemplate", "Trigger type": "Configuration changes" }, + "EC2_LAUNCH_TEMPLATE_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::EC2::LaunchTemplate", + "Trigger type": "Configuration changes" + }, "EC2_MANAGEDINSTANCE_APPLICATIONS_BLACKLISTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "applicationNames", @@ -2150,7 +2236,7 @@ "Trigger type": "Configuration changes" }, "EC2_MANAGEDINSTANCE_APPLICATIONS_REQUIRED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "applicationNames", @@ -2173,7 +2259,7 @@ "Trigger type": "Configuration changes" }, "EC2_MANAGEDINSTANCE_INVENTORY_BLACKLISTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "inventoryNames", @@ -2190,13 +2276,13 @@ "Trigger type": "Configuration changes" }, "EC2_MANAGEDINSTANCE_PATCH_COMPLIANCE_STATUS_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Osaka), Asia Pacific (Malaysia), Europe (Milan), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Osaka), Europe (Milan), Mexico (Central), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::SSM::PatchCompliance", "Trigger type": "Configuration changes" }, "EC2_MANAGEDINSTANCE_PLATFORM_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "platformType", @@ -2250,24 +2336,24 @@ "Resource Types": "AWS::EC2::Instance", "Trigger type": "Configuration changes" }, - "EC2_NO_LAUNCH_WIZARD_SECURITY_GROUP": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::Instance", - "Trigger type": "Configuration changes" - }, "EC2_PARAVIRTUAL_INSTANCE_CHECK": { "AWS Region": "Only available in China (Beijing), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney) Region", "Parameters": [], "Resource Types": "AWS::EC2::Instance", "Trigger type": "Configuration changes" }, - "EC2_PREVIOUS_GENERATION_INSTANCE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::Instance", - "Trigger type": "Configuration changes" - }, + "EC2_PREFIX_LIST_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::EC2::PrefixList", + "Trigger type": "Configuration changes" + }, "EC2_RESOURCES_IN_LOGICALLY_AIR_GAPPED_VAULT": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -2340,7 +2426,7 @@ "Trigger type": "Periodic" }, "EC2_SECURITY_GROUP_ATTACHED_TO_ENI": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Mexico (Central), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::EC2::SecurityGroup", "Trigger type": "Configuration changes" @@ -2351,12 +2437,6 @@ "Resource Types": "AWS::EC2::SecurityGroup", "Trigger type": "Periodic" }, - "EC2_SG_NOT_OPEN_TO_ALL_ADDRESSES": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), Europe (Spain) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::SecurityGroup", - "Trigger type": "Configuration changes" - }, "EC2_STOPPED_INSTANCE": { "AWS Region": "All supported AWS regions except Africa (Cape Town), Middle East (UAE), Asia Pacific (Osaka), Asia Pacific (Melbourne), Europe (Milan), Canada West (Calgary) Region", "Parameters": [ @@ -2382,6 +2462,60 @@ "Resource Types": "AWS::EC2::Instance", "Trigger type": "Configuration changes" }, + "EC2_TRAFFIC_MIRROR_FILTER_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::EC2::TrafficMirrorFilter", + "Trigger type": "Configuration changes" + }, + "EC2_TRAFFIC_MIRROR_FILTER_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::EC2::TrafficMirrorFilter", + "Trigger type": "Configuration changes" + }, + "EC2_TRAFFIC_MIRROR_SESSION_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Europe (Milan), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::EC2::TrafficMirrorSession", + "Trigger type": "Configuration changes" + }, + "EC2_TRAFFIC_MIRROR_SESSION_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Europe (Milan), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::EC2::TrafficMirrorSession", + "Trigger type": "Configuration changes" + }, + "EC2_TRAFFIC_MIRROR_TARGET_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::EC2::TrafficMirrorTarget", + "Trigger type": "Configuration changes" + }, + "EC2_TRAFFIC_MIRROR_TARGET_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::EC2::TrafficMirrorTarget", + "Trigger type": "Configuration changes" + }, "EC2_TRANSIT_GATEWAY_AUTO_VPC_ATTACH_DISABLED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], @@ -2389,7 +2523,7 @@ "Trigger type": "Configuration changes" }, "EC2_VOLUME_INUSE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "deleteOnTermination", @@ -2483,24 +2617,6 @@ "Resource Types": "AWS::ECS::TaskDefinition", "Trigger type": "Configuration changes" }, - "ECS_REPOSITORY_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "RepositoryImageUriList", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::ECS::TaskDefinition", - "Trigger type": "Periodic" - }, - "ECS_TASKDEFINITION_LOGCONFIGURATION": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::ECS::TaskDefinition", - "Trigger type": "Periodic" - }, "ECS_TASK_DEFINITION_LOG_CONFIGURATION": { "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary) Region", "Parameters": [], @@ -2526,7 +2642,7 @@ "Trigger type": "Configuration changes" }, "ECS_TASK_DEFINITION_USER_FOR_HOST_MODE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Mexico (Central) Region", "Parameters": [ { "Name": "SkipInactiveTaskDefinitions", @@ -2573,7 +2689,7 @@ "Trigger type": "Configuration changes" }, "EFS_ENCRYPTED_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "KmsKeyId", @@ -2597,7 +2713,7 @@ "Trigger type": "Configuration changes" }, "EFS_IN_BACKUP_PLAN": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::EFS::FileSystem", "Trigger type": "Periodic" @@ -2791,19 +2907,13 @@ "Trigger type": "Configuration changes" }, "EKS_ENDPOINT_NO_PUBLIC_ACCESS": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", - "Parameters": [], - "Resource Types": "AWS::EKS::Cluster", - "Trigger type": "Periodic" - }, - "EKS_FARGATE_CLUSTER_LOGGING_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::EKS::Cluster", "Trigger type": "Periodic" }, "EKS_SECRETS_ENCRYPTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -2833,7 +2943,7 @@ "Trigger type": "Periodic" }, "ELASTICACHE_REDIS_CLUSTER_AUTOMATIC_BACKUP_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Default": "15", @@ -2845,19 +2955,6 @@ "Resource Types": "AWS::ElastiCache::CacheCluster, AWS::ElastiCache::ReplicationGroup", "Trigger type": "Periodic" }, - "ELASTICACHE_REDIS_CLUSTER_AUTO_BACKUP_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Default": "15", - "Name": "snapshotRetentionPeriod", - "Optional": true, - "Type": "int" - } - ], - "Resource Types": "AWS::ElastiCache::CacheCluster", - "Trigger type": "Periodic" - }, "ELASTICACHE_REPL_GRP_AUTO_FAILOVER_ENABLED": { "AWS Region": "All supported AWS regions except Middle East (UAE), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary) Region", "Parameters": [], @@ -2911,20 +3008,38 @@ "Resource Types": "AWS::ElastiCache::CacheCluster", "Trigger type": "Periodic" }, + "ELASTICBEANSTALK_APPLICATION_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::ElasticBeanstalk::Application", + "Trigger type": "Configuration changes" + }, + "ELASTICBEANSTALK_APPLICATION_VERSION_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::ElasticBeanstalk::ApplicationVersion", + "Trigger type": "Configuration changes" + }, + "ELASTICBEANSTALK_ENVIRONMENT_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::ElasticBeanstalk::Environment", + "Trigger type": "Configuration changes" + }, "ELASTICSEARCH_ENCRYPTED_AT_REST": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Elasticsearch::Domain", "Trigger type": "Periodic" }, "ELASTICSEARCH_IN_VPC_ONLY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Elasticsearch::Domain", "Trigger type": "Periodic" }, "ELASTICSEARCH_LOGS_TO_CLOUDWATCH": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "logTypes", @@ -2936,7 +3051,7 @@ "Trigger type": "Configuration changes" }, "ELASTICSEARCH_NODE_TO_NODE_ENCRYPTION_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Elasticsearch::Domain", "Trigger type": "Configuration changes" @@ -2947,18 +3062,6 @@ "Resource Types": "AWS::Elasticsearch::Domain", "Trigger type": "Configuration changes" }, - "ELASTIC_BEANSTALK_LAUNCHED_WITH_VPC": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "VPCIds", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::ElasticBeanstalk::Environment", - "Trigger type": "Configuration changes" - }, "ELASTIC_BEANSTALK_LOGS_TO_CLOUDWATCH": { "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -2988,18 +3091,6 @@ "Resource Types": "AWS::ElasticBeanstalk::Environment", "Trigger type": "Configuration changes" }, - "ELASTIC_BEANSTALK_NOTIFICATION_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "NotificationTopicArns", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::ElasticBeanstalk::Environment", - "Trigger type": "Configuration changes" - }, "ELBV2_ACM_CERTIFICATE_REQUIRED": { "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", "Parameters": [ @@ -3037,7 +3128,7 @@ "Trigger type": "Configuration changes" }, "ELB_CUSTOM_SECURITY_POLICY_SSL_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Melbourne), Mexico (Central) Region", "Parameters": [ { "Name": "sslProtocolsAndCiphers", @@ -3078,37 +3169,20 @@ "Resource Types": "AWS::ElasticLoadBalancing::LoadBalancer", "Trigger type": "Configuration changes" }, - "ELB_SSL_LISTENERS_ONLY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::ElasticLoadBalancing::LoadBalancer", - "Trigger type": "Configuration changes" - }, "ELB_TLS_HTTPS_LISTENERS_ONLY": { "AWS Region": "All supported AWS regions except Middle East (UAE), Asia Pacific (Osaka) Region", "Parameters": [], "Resource Types": "AWS::ElasticLoadBalancing::LoadBalancer", "Trigger type": "Configuration changes" }, - "EMR_BLOCK_PORT_ON": { - "AWS Region": "Only available in Europe (Stockholm), Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", - "Parameters": [], - "Trigger type": "Periodic" - }, "EMR_BLOCK_PUBLIC_ACCESS": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], "Resource Types": "AWS::::Account", "Trigger type": "Periodic" }, - "EMR_ENCRYPTION_IN_TRANSIT": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::EMR::Cluster", - "Trigger type": "Periodic" - }, "EMR_KERBEROS_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "TicketLifetimeInHours", @@ -3140,23 +3214,11 @@ "Trigger type": "Periodic" }, "EMR_MASTER_NO_PUBLIC_IP": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Osaka), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::EMR::Cluster, AWS::EC2::Instance", "Trigger type": "Periodic" }, - "EMR_SECURITY_CONFIGURATION_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "SecurityConfigurations", - "Optional": false, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EMR::Cluster", - "Trigger type": "Periodic" - }, "EMR_SECURITY_CONFIGURATION_ENCRYPTION_REST": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], @@ -3181,12 +3243,6 @@ "Resource Types": "AWS::EC2::Volume", "Trigger type": "Configuration changes" }, - "ENI_ATTACHED_TO_INSTANCE": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Canada West (Calgary) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::NetworkInterface", - "Trigger type": "Configuration changes" - }, "EVIDENTLY_LAUNCH_DESCRIPTION": { "AWS Region": "Only available in Europe (Stockholm), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney) Region", "Parameters": [], @@ -3241,6 +3297,103 @@ "Resource Types": "AWS::Evidently::Segment", "Trigger type": "Configuration changes" }, + "FIS_EXPERIMENT_TEMPLATE_LOG_CONFIGURATION_EXISTS": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::FIS::ExperimentTemplate", + "Trigger type": "Configuration changes" + }, + "FIS_EXPERIMENT_TEMPLATE_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::FIS::ExperimentTemplate", + "Trigger type": "Configuration changes" + }, + "FMS_NETWORK_FIREWALL_RESOURCE_CHECK": { + "AWS Region": "All supported AWS regions", + "Parameters": [ + { + "Name": "policyId", + "Optional": false, + "Type": "String" + }, + { + "Name": "policyVersion", + "Optional": false, + "Type": "String" + }, + { + "Name": "resourceTags", + "Optional": true, + "Type": "String" + }, + { + "Name": "excludeResourceTags", + "Optional": true, + "Type": "boolean" + }, + { + "Name": "resourceTagLogicalOperator", + "Optional": true, + "Type": "String" + } + ], + "Resource Types": "AWS::NetworkFirewall::Firewall, AWS::NetworkFirewall::FirewallPolicy, AWS::NetworkFirewall::RuleGroup, AWS::EC2::RouteTable, AWS::EC2::Subnet, AWS::EC2::InternetGateway, AWS::EC2::VPC, AWS::EC2::VPCEndpoint, AWS::EC2::NetworkAcl", + "Trigger type": "Configuration changes" + }, + "FMS_SECURITY_GROUP_AUDIT_POLICY_CHECK": { + "AWS Region": "All supported AWS regions", + "Parameters": [ + { + "Name": "masterSecurityGroupsIds", + "Optional": false, + "Type": "String" + }, + { + "Name": "inScope", + "Optional": false, + "Type": "String" + }, + { + "Name": "resourceTags", + "Optional": false, + "Type": "String" + }, + { + "Name": "excludeResourceTags", + "Optional": false, + "Type": "boolean" + }, + { + "Name": "resourceTypes", + "Optional": false, + "Type": "String" + }, + { + "Name": "fmsRemediationEnabled", + "Optional": false, + "Type": "boolean" + }, + { + "Name": "allowSecurityGroup", + "Optional": false, + "Type": "boolean" + }, + { + "Name": "resourceTagLogicalOperator", + "Optional": true, + "Type": "String" + } + ], + "Resource Types": "AWS::EC2::SecurityGroup, AWS::EC2::Instance, AWS::EC2::NetworkInterface", + "Trigger type": "Configuration changes" + }, "FMS_SHIELD_RESOURCE_POLICY_CHECK": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), China (Ningxia) Region", "Parameters": [ @@ -3522,7 +3675,7 @@ "Trigger type": "Periodic" }, "GUARDDUTY_ENABLED_CENTRALIZED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "CentralMonitoringAccount", @@ -3545,7 +3698,7 @@ "Trigger type": "Periodic" }, "GUARDDUTY_NON_ARCHIVED_FINDINGS": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Default": "30", @@ -3580,12 +3733,6 @@ "Resource Types": "AWS::GuardDuty::Detector", "Trigger type": "Periodic" }, - "IAM_ACCESS_ANALYZER_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::::Account", - "Trigger type": "Periodic" - }, "IAM_CUSTOMER_POLICY_BLOCKED_KMS_ACTIONS": { "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", "Parameters": [ @@ -3639,7 +3786,7 @@ "Trigger type": "Configuration changes" }, "IAM_PASSWORD_POLICY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", "Parameters": [ { "Default": "true", @@ -3768,18 +3915,6 @@ "Resource Types": "AWS::IAM::ServerCertificate", "Trigger type": "Periodic" }, - "IAM_USER_EXIST_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "allowedUsers", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::IAM::User", - "Trigger type": "Configuration changes" - }, "IAM_USER_GROUP_MEMBERSHIP_CHECK": { "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", "Parameters": [ @@ -3859,20 +3994,8 @@ "Resource Types": "AWS::EC2::Instance", "Trigger type": "Configuration changes" }, - "INTERNET_GATEWAY_AUTHORIZED_ONLY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "AuthorizedVpcIds", - "Optional": true, - "Type": "String" - } - ], - "Resource Types": "AWS::EC2::InternetGateway", - "Trigger type": "Configuration changes" - }, "INTERNET_GATEWAY_AUTHORIZED_VPC_ONLY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "AuthorizedVpcIds", @@ -3883,12 +4006,6 @@ "Resource Types": "AWS::EC2::InternetGateway", "Trigger type": "Configuration changes" }, - "INTERNET_GATEWAY_IN_VPC_WITHOUT_VGW_ONLY": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::InternetGateway, AWS::EC2::VPNGateway", - "Trigger type": "Periodic" - }, "IOTEVENTS_ALARM_MODEL_TAGGED": { "AWS Region": "Only available in Asia Pacific (Mumbai), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", "Parameters": [ @@ -4075,10 +4192,16 @@ "Resource Types": "AWS::IoT::Authorizer", "Trigger type": "Configuration changes" }, - "IVS_CHANNEL_TAGGED": { + "IVS_CHANNEL_PLAYBACK_AUTHORIZATION_ENABLED": { "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Asia Pacific (Tokyo), US West (Oregon) Region", - "Parameters": [ - { + "Parameters": [], + "Resource Types": "AWS::IVS::Channel", + "Trigger type": "Configuration changes" + }, + "IVS_CHANNEL_TAGGED": { + "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Asia Pacific (Tokyo), US West (Oregon) Region", + "Parameters": [ + { "Name": "requiredKeyTags", "Optional": true, "Type": "CSV" @@ -4142,19 +4265,7 @@ "Trigger type": "Configuration changes" }, "KMS_CMK_NOT_SCHEDULED_FOR_DELETION": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Europe (Milan), Mexico (Central) Region", - "Parameters": [ - { - "Name": "kmsKeyIds", - "Optional": true, - "Type": "String" - } - ], - "Resource Types": "AWS::KMS::Key", - "Trigger type": "Periodic" - }, - "KMS_KEYS_NOT_SCHEDULED_FOR_DELETION": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Europe (Milan), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyIds", @@ -4172,7 +4283,7 @@ "Trigger type": "Configuration changes" }, "LAMBDA_CONCURRENCY_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), China (Ningxia) Region", "Parameters": [ { "Name": "ConcurrencyLimitLow", @@ -4189,7 +4300,7 @@ "Trigger type": "Configuration changes" }, "LAMBDA_DLQ_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), China (Ningxia) Region", "Parameters": [ { "Name": "dlqArns", @@ -4200,18 +4311,6 @@ "Resource Types": "AWS::Lambda::Function", "Trigger type": "Configuration changes" }, - "LAMBDA_FUNCTION_CMK_CONFIGURED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "kmsKeyArns", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::Lambda::Function", - "Trigger type": "Configuration changes" - }, "LAMBDA_FUNCTION_PUBLIC_ACCESS_PROHIBITED": { "AWS Region": "All supported AWS regions except Europe (Spain), China (Ningxia) Region", "Parameters": [], @@ -4271,10 +4370,16 @@ "Resource Types": "AWS::Lambda::Function", "Trigger type": "Configuration changes" }, - "LAMBDA_XRAY_TRACING_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::Lambda::Function", + "LIGHTSAIL_DISK_TAGGED": { + "AWS Region": "Only available in Europe (Stockholm), Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Lightsail::Disk", "Trigger type": "Configuration changes" }, "MACIE_AUTO_SENSITIVE_DATA_DISCOVERY_CHECK": { @@ -4518,12 +4623,6 @@ "Resource Types": "AWS::NetworkFirewall::RuleGroup", "Trigger type": "Configuration changes" }, - "NLB_CROSS_ZONE_LOAD_BALANCING_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::ElasticLoadBalancingV2::LoadBalancer", - "Trigger type": "Configuration changes" - }, "NLB_INTERNAL_SCHEME_CHECK": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", "Parameters": [], @@ -4531,7 +4630,7 @@ "Trigger type": "Configuration changes" }, "NO_UNRESTRICTED_ROUTE_TO_IGW": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [ { "Name": "routeTableIds", @@ -4632,23 +4731,6 @@ "Resource Types": "AWS::AmazonMQ::Broker", "Trigger type": "Configuration changes" }, - "RAM_EXTERNAL_PRINCIPALS_NOT_ALLOWED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::RAM::ResourceShare", - "Trigger type": "Periodic" - }, - "RAM_NO_RESOURCES_SHARED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "allowedResourceSharesArns", - "Optional": true, - "Type": "CSV" - } - ], - "Trigger type": "Periodic" - }, "RDS_AURORA_MYSQL_AUDIT_LOGGING_ENABLED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary) Region", "Parameters": [], @@ -4673,18 +4755,6 @@ "Resource Types": "AWS::RDS::DBCluster", "Trigger type": "Configuration changes" }, - "RDS_CLUSTER_CUSTOM_PARAMETER_GROUP": { - "AWS Region": "All supported AWS regions except Middle East (Bahrain), China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), South America (Sao Paulo), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "ParameterGroups", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBCluster", - "Trigger type": "Configuration changes" - }, "RDS_CLUSTER_DEFAULT_ADMIN_CHECK": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), China (Ningxia) Region", "Parameters": [ @@ -4710,59 +4780,23 @@ "Trigger type": "Configuration changes" }, "RDS_CLUSTER_IAM_AUTHENTICATION_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except China (Beijing) Region", "Parameters": [], "Resource Types": "AWS::RDS::DBCluster", "Trigger type": "Configuration changes" }, "RDS_CLUSTER_MULTI_AZ_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West) Region", + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Melbourne) Region", "Parameters": [], "Resource Types": "AWS::RDS::DBCluster", "Trigger type": "Configuration changes" }, - "RDS_CLUSTER_TAGGED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "DBClusterTagsList", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBCluster", - "Trigger type": "Configuration changes" - }, "RDS_DB_SECURITY_GROUP_NOT_ALLOWED": { "AWS Region": "Only available in Europe (Ireland), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney) Region", "Parameters": [], "Resource Types": "AWS::RDS::DBSecurityGroup", "Trigger type": "Configuration changes" }, - "RDS_DESIRED_INSTANCE_CLASS_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "instanceClassTypeList", - "Optional": false, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBInstance", - "Trigger type": "Configuration changes" - }, - "RDS_ENGINE_TYPE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "allowedEngineTypes", - "Optional": false, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBInstance, AWS::RDS::DBCluster", - "Trigger type": "Configuration changes" - }, "RDS_ENHANCED_MONITORING_ENABLED": { "AWS Region": "All supported AWS regions", "Parameters": [ @@ -4775,18 +4809,6 @@ "Resource Types": "AWS::RDS::DBInstance", "Trigger type": "Configuration changes" }, - "RDS_INSTANCE_CUSTOM_PARAMETER_GROUP": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "ParameterGroupNames", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBInstance", - "Trigger type": "Configuration changes" - }, "RDS_INSTANCE_DEFAULT_ADMIN_CHECK": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Canada West (Calgary), China (Ningxia) Region", "Parameters": [ @@ -4823,20 +4845,8 @@ "Resource Types": "AWS::RDS::DBInstance", "Trigger type": "Configuration changes" }, - "RDS_INSTANCE_TAGGED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "requiredTagsList", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::RDS::DBInstance", - "Trigger type": "Configuration changes" - }, "RDS_IN_BACKUP_PLAN": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::RDS::DBInstance", "Trigger type": "Periodic" @@ -5012,18 +5022,6 @@ "Resource Types": "AWS::RDS::DBInstance", "Trigger type": "Configuration changes" }, - "REDSHIFT_AUDIT_LOGGING_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "bucketNames", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::Redshift::Cluster", - "Trigger type": "Configuration changes" - }, "REDSHIFT_BACKUP_ENABLED": { "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", "Parameters": [ @@ -5067,7 +5065,7 @@ "Trigger type": "Configuration changes" }, "REDSHIFT_CLUSTER_KMS_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -5079,7 +5077,7 @@ "Trigger type": "Configuration changes" }, "REDSHIFT_CLUSTER_MAINTENANCESETTINGS_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Default": "true", @@ -5102,8 +5100,20 @@ "Resource Types": "AWS::Redshift::Cluster", "Trigger type": "Configuration changes" }, + "REDSHIFT_CLUSTER_PARAMETER_GROUP_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Redshift::ClusterParameterGroup", + "Trigger type": "Configuration changes" + }, "REDSHIFT_CLUSTER_PUBLIC_ACCESS_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Redshift::Cluster", "Trigger type": "Configuration changes" @@ -5139,13 +5149,13 @@ "Trigger type": "Configuration changes" }, "REDSHIFT_ENHANCED_VPC_ROUTING_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Redshift::Cluster", "Trigger type": "Configuration changes" }, "REDSHIFT_REQUIRE_TLS_SSL": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::Redshift::Cluster, AWS::Redshift::ClusterParameterGroup", "Trigger type": "Configuration changes" @@ -5332,7 +5342,7 @@ "Trigger type": "Configuration changes (current status not checked, only evaluated when changes generate new events)" }, "S3_ACCOUNT_LEVEL_PUBLIC_ACCESS_BLOCKS_PERIODIC": { - "AWS Region": "All supported AWS regions except China (Beijing), China (Ningxia) Region", + "AWS Region": "All supported AWS regions", "Parameters": [ { "Name": "IgnorePublicAcls", @@ -5430,7 +5440,7 @@ "Trigger type": "Configuration changes" }, "S3_BUCKET_POLICY_GRANTEE_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "awsPrincipals", @@ -5462,7 +5472,7 @@ "Trigger type": "Configuration changes" }, "S3_BUCKET_POLICY_NOT_MORE_PERMISSIVE": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "controlPolicy", @@ -5473,12 +5483,6 @@ "Resource Types": "AWS::S3::Bucket", "Trigger type": "Configuration changes" }, - "S3_BUCKET_POLICY_NO_PRINCIPAL_STAR": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", - "Parameters": [], - "Resource Types": "AWS::S3::Bucket", - "Trigger type": "Configuration changes" - }, "S3_BUCKET_PUBLIC_READ_PROHIBITED": { "AWS Region": "All supported AWS regions", "Parameters": [], @@ -5528,7 +5532,7 @@ "Trigger type": "Configuration changes" }, "S3_DEFAULT_ENCRYPTION_KMS": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -5585,38 +5589,6 @@ "Resource Types": "AWS::S3::Bucket", "Trigger type": "Periodic" }, - "S3_LIFECYCLE_POLICY_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), Canada West (Calgary) Region", - "Parameters": [ - { - "Name": "targetTransitionDays", - "Optional": true, - "Type": "int" - }, - { - "Name": "targetExpirationDays", - "Optional": true, - "Type": "int" - }, - { - "Name": "targetTransitionStorageClass", - "Optional": true, - "Type": "String" - }, - { - "Name": "targetPrefix", - "Optional": true, - "Type": "String" - }, - { - "Name": "bucketNames", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::S3::Bucket", - "Trigger type": "Configuration changes" - }, "S3_MEETS_RESTORE_TIME_TARGET": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [ @@ -5722,6 +5694,18 @@ "Resource Types": "AWS::S3::Bucket", "Trigger type": "Configuration changes" }, + "SAGEMAKER_APP_IMAGE_CONFIG_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::SageMaker::AppImageConfig", + "Trigger type": "Configuration changes" + }, "SAGEMAKER_DOMAIN_IN_VPC": { "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [], @@ -5729,7 +5713,7 @@ "Trigger type": "Configuration changes" }, "SAGEMAKER_ENDPOINT_CONFIGURATION_KMS_KEY_CONFIGURED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -5746,6 +5730,24 @@ "Resource Types": "AWS::SageMaker::EndpointConfig", "Trigger type": "Periodic" }, + "SAGEMAKER_IMAGE_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::SageMaker::Image", + "Trigger type": "Configuration changes" + }, + "SAGEMAKER_IMAGE_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Canada West (Calgary), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::SageMaker::Image", + "Trigger type": "Configuration changes" + }, "SAGEMAKER_MODEL_IN_VPC": { "AWS Region": "All supported AWS regions except China (Beijing), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", "Parameters": [], @@ -5771,7 +5773,7 @@ "Trigger type": "Configuration changes" }, "SAGEMAKER_NOTEBOOK_INSTANCE_KMS_KEY_CONFIGURED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -5794,20 +5796,8 @@ "Resource Types": "AWS::SageMaker::NotebookInstance", "Trigger type": "Periodic" }, - "SECRETSMANAGER_MAX_SECRET_AGE": { - "AWS Region": "Only available in Europe (Stockholm), Asia Pacific (Mumbai), Europe (Paris), US East (Ohio), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), US West (N. California), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", - "Parameters": [ - { - "Name": "maxSecretAgeDays", - "Optional": true, - "Type": "int" - } - ], - "Resource Types": "AWS::SecretsManager::Secret", - "Trigger type": "Periodic" - }, "SECRETSMANAGER_ROTATION_ENABLED_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "maximumAllowedRotationFrequency", @@ -5824,13 +5814,13 @@ "Trigger type": "Configuration changes" }, "SECRETSMANAGER_SCHEDULED_ROTATION_SUCCESS_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Resource Types": "AWS::SecretsManager::Secret", "Trigger type": "Configuration changes" }, "SECRETSMANAGER_SECRET_PERIODIC_ROTATION": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "maxDaysSinceRotation", @@ -5842,7 +5832,7 @@ "Trigger type": "Periodic" }, "SECRETSMANAGER_SECRET_UNUSED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "unusedForDays", @@ -5853,20 +5843,8 @@ "Resource Types": "AWS::SecretsManager::Secret", "Trigger type": "Periodic" }, - "SECRETSMANAGER_TAGGED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "secretsTagList", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::SecretsManager::Secret", - "Trigger type": "Configuration changes" - }, "SECRETSMANAGER_USING_CMK": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "kmsKeyArns", @@ -5878,7 +5856,7 @@ "Trigger type": "Configuration changes" }, "SECURITYHUB_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [], "Trigger type": "Periodic" }, @@ -5888,12 +5866,6 @@ "Resource Types": "AWS::::Account", "Trigger type": "Periodic" }, - "SECURITY_GROUP_RULES_DESCRIPTION_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::SecurityGroup", - "Trigger type": "Configuration changes" - }, "SERVICE_CATALOG_SHARED_WITHIN_ORGANIZATION": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Asia Pacific (Malaysia), Israel (Tel Aviv), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], @@ -5953,31 +5925,22 @@ "Trigger type": "Configuration changes" }, "SSM_DOCUMENT_NOT_PUBLIC": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), Canada West (Calgary) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central), Canada West (Calgary) Region", "Parameters": [], "Resource Types": "AWS::SSM::Document", "Trigger type": "Periodic" }, - "SSM_SESSION_MANAGER_AUDIT_LOG_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", + "SSM_DOCUMENT_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", "Parameters": [ { - "Name": "s3BucketName", - "Optional": true, - "Type": "String" - }, - { - "Name": "logGroupName", + "Name": "requiredKeyTags", "Optional": true, - "Type": "String" + "Type": "CSV" } ], - "Trigger type": "Periodic" - }, - "SSM_SESSION_MANAGER_AUDIT_LOG_ENCRYPTED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Osaka), Asia Pacific (Malaysia), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary) Region", - "Parameters": [], - "Trigger type": "Periodic" + "Resource Types": "AWS::SSM::Document", + "Trigger type": "Configuration changes" }, "STEP_FUNCTIONS_STATE_MACHINE_LOGGING_ENABLED": { "AWS Region": "All supported AWS regions except Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary) Region", @@ -6102,23 +6065,89 @@ "Resource Types": "AWS::EC2::Subnet", "Trigger type": "Configuration changes" }, + "TRANSFER_AGREEMENT_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [], + "Resource Types": "AWS::Transfer::Agreement", + "Trigger type": "Configuration changes" + }, + "TRANSFER_AGREEMENT_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Transfer::Agreement", + "Trigger type": "Configuration changes" + }, + "TRANSFER_CERTIFICATE_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Transfer::Certificate", + "Trigger type": "Configuration changes" + }, + "TRANSFER_CERTIFICATE_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Transfer::Certificate", + "Trigger type": "Configuration changes" + }, + "TRANSFER_CONNECTOR_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Transfer::Connector", + "Trigger type": "Configuration changes" + }, "TRANSFER_FAMILY_SERVER_NO_FTP": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), Canada West (Calgary), China (Ningxia) Region", "Parameters": [], "Resource Types": "AWS::Transfer::Server", "Trigger type": "Periodic" }, - "TRANSIT_GATEWAY_OWNER_CHECK": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", + "TRANSFER_PROFILE_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", "Parameters": [ { - "Name": "NetworkingAccountIds", - "Optional": false, + "Name": "requiredKeyTags", + "Optional": true, "Type": "CSV" } ], - "Resource Types": "AWS::EC2::TransitGateway", - "Trigger type": "Periodic" + "Resource Types": "AWS::Transfer::Profile", + "Trigger type": "Configuration changes" + }, + "TRANSFER_WORKFLOW_DESCRIPTION": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [], + "Resource Types": "AWS::Transfer::Workflow", + "Trigger type": "Configuration changes" + }, + "TRANSFER_WORKFLOW_TAGGED": { + "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Malaysia), AWS GovCloud (US-East), AWS GovCloud (US-West), China (Ningxia) Region", + "Parameters": [ + { + "Name": "requiredKeyTags", + "Optional": true, + "Type": "CSV" + } + ], + "Resource Types": "AWS::Transfer::Workflow", + "Trigger type": "Configuration changes" }, "VIRTUALMACHINE_LAST_BACKUP_RECOVERY_POINT_CREATED": { "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", @@ -6226,12 +6255,6 @@ "Resource Types": "AWS::EC2::SecurityGroup", "Trigger type": "Configuration changes" }, - "VPC_ENDPOINT_DEFAULT_POLICY_APPLIED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::EC2::VPCEndpoint", - "Trigger type": "Configuration changes" - }, "VPC_ENDPOINT_ENABLED": { "AWS Region": "All supported AWS regions except Asia Pacific (Osaka), Asia Pacific (Malaysia), Israel (Tel Aviv), Canada West (Calgary) Region", "Parameters": [ @@ -6261,42 +6284,6 @@ "Resource Types": "AWS::EC2::VPC", "Trigger type": "Periodic" }, - "VPC_FLOW_LOG_DESTINATION_BUCKET": { - "AWS Region": "All supported AWS regions except Middle East (Bahrain), Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "logDestinations", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EC2::FlowLog", - "Trigger type": "Configuration changes" - }, - "VPC_FLOW_LOG_DESTINATION_LOGGROUP": { - "AWS Region": "All supported AWS regions except Middle East (Bahrain), Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "logDestinations", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EC2::FlowLog", - "Trigger type": "Configuration changes" - }, - "VPC_FLOW_LOG_FIELDS_CHECK": { - "AWS Region": "All supported AWS regions except Middle East (Bahrain), Asia Pacific (Thailand), Asia Pacific (Jakarta), Africa (Cape Town), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Europe (Milan), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "flowLogFields", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EC2::FlowLog", - "Trigger type": "Configuration changes" - }, "VPC_NETWORK_ACL_UNUSED_CHECK": { "AWS Region": "All supported AWS regions", "Parameters": [], @@ -6359,18 +6346,6 @@ "Resource Types": "AWS::EC2::SecurityGroup", "Trigger type": "Periodic" }, - "VPC_SUBNET_NO_EC2_INSTANCE": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "SubnetIds", - "Optional": false, - "Type": "CSV" - } - ], - "Resource Types": "AWS::EC2::Subnet", - "Trigger type": "Configuration changes" - }, "VPC_VPN_2_TUNNELS_UP": { "AWS Region": "All supported AWS regions except Middle East (Bahrain), China (Beijing), Asia Pacific (Osaka), Israel (Tel Aviv), China (Ningxia) Region", "Parameters": [], @@ -6378,7 +6353,7 @@ "Trigger type": "Configuration changes" }, "WAFV2_LOGGING_ENABLED": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Malaysia), Mexico (Central), China (Ningxia) Region", + "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Mexico (Central) Region", "Parameters": [ { "Name": "KinesisFirehoseDeliveryStreamArns", @@ -6419,24 +6394,6 @@ "Resource Types": "AWS::WAF::WebACL", "Trigger type": "Periodic" }, - "WAF_CLASSIC_REGIONAL_ACL_LOGGING_ENABLED": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Middle East (UAE), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "KinesisFirehoseDeliveryStreamArns", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::WAFRegional::WebACL", - "Trigger type": "Periodic" - }, - "WAF_CLASSIC_REGIONAL_RULE_GROUP_NOT_EMPTY": { - "AWS Region": "All supported AWS regions except China (Beijing), Asia Pacific (Thailand), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), AWS GovCloud (US-East), AWS GovCloud (US-West), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), China (Ningxia), Europe (Zurich) Region", - "Parameters": [], - "Resource Types": "AWS::WAFRegional::RuleGroup", - "Trigger type": "Configuration changes" - }, "WAF_GLOBAL_RULEGROUP_NOT_EMPTY": { "AWS Region": "Only available in US East (N. Virginia) Region", "Parameters": [], @@ -6473,18 +6430,6 @@ "Resource Types": "AWS::WAFRegional::WebACL", "Trigger type": "Configuration changes" }, - "WORKSPACES_ENCRYPTED_AT_REST": { - "AWS Region": "Only available in Asia Pacific (Mumbai), Europe (Ireland), Middle East (UAE), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central) Region", - "Parameters": [ - { - "Name": "kmsKeyArns", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::WorkSpaces::Workspace", - "Trigger type": "Periodic" - }, "WORKSPACES_ROOT_VOLUME_ENCRYPTION_ENABLED": { "AWS Region": "Only available in Asia Pacific (Mumbai), Africa (Cape Town), Europe (Ireland), Europe (Frankfurt), South America (Sao Paulo), US East (N. Virginia), Asia Pacific (Seoul), Europe (London), Asia Pacific (Tokyo), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Sydney), Canada (Central), China (Ningxia) Region", "Parameters": [], @@ -6496,18 +6441,6 @@ "Parameters": [], "Resource Types": "AWS::WorkSpaces::Workspace", "Trigger type": "Configuration changes" - }, - "XRAY_ENCRYPTION_KMS": { - "AWS Region": "All supported AWS regions except Asia Pacific (Thailand), Asia Pacific (Jakarta), Asia Pacific (Hyderabad), Asia Pacific (Osaka), Asia Pacific (Malaysia), Asia Pacific (Melbourne), Mexico (Central), Israel (Tel Aviv), Canada West (Calgary), Europe (Spain), Europe (Zurich) Region", - "Parameters": [ - { - "Name": "Kmskeyids", - "Optional": true, - "Type": "CSV" - } - ], - "Resource Types": "AWS::XRay::EncryptionConfig", - "Trigger type": "Configuration changes" } } } \ No newline at end of file From 32679cbcc79da00f362bbdf1218f9b8470be60e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Mar 2025 10:33:48 -0100 Subject: [PATCH 101/103] chore: update SSM Optimized AMI's (#8643) --- .../ecs/optimized_amis/af-south-1.json | 6658 +++++++----- .../ecs/optimized_amis/ap-east-1.json | 7337 ++++++++----- .../ecs/optimized_amis/ap-northeast-1.json | 8908 +++++++++------ .../ecs/optimized_amis/ap-northeast-2.json | 7954 ++++++++------ .../ecs/optimized_amis/ap-northeast-3.json | 6677 +++++++----- .../ecs/optimized_amis/ap-south-1.json | 8356 ++++++++------ .../ecs/optimized_amis/ap-south-2.json | 6167 +++++++---- .../ecs/optimized_amis/ap-southeast-1.json | 8520 +++++++++------ .../ecs/optimized_amis/ap-southeast-2.json | 9188 ++++++++++------ .../ecs/optimized_amis/af-south-1.json | 3366 +++++- .../ecs/optimized_amis/ap-east-1.json | 3366 +++++- .../ecs/optimized_amis/ap-northeast-1.json | 3366 +++++- .../ecs/optimized_amis/ap-northeast-2.json | 3366 +++++- .../ecs/optimized_amis/ap-northeast-3.json | 3366 +++++- .../ecs/optimized_amis/ap-south-1.json | 3366 +++++- .../ecs/optimized_amis/ap-south-2.json | 3366 +++++- .../ecs/optimized_amis/ap-southeast-1.json | 3366 +++++- .../ecs/optimized_amis/ap-southeast-2.json | 9594 ++++++++++++++++- 18 files changed, 77694 insertions(+), 28593 deletions(-) diff --git a/moto/ec2/resources/ecs/optimized_amis/af-south-1.json b/moto/ec2/resources/ecs/optimized_amis/af-south-1.json index 9dbcbab38ba1..0928ada2c815 100644 --- a/moto/ec2/resources/ecs/optimized_amis/af-south-1.json +++ b/moto/ec2/resources/ecs/optimized_amis/af-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-03636e74b2212185d", + "ami_id": "ami-037df8e9c39a6177f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c089bcfd85c11ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "ami_id": "ami-05ad4f9d48c5c0838", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f52bc66ead60f54", + "ami_id": "ami-0c63ee7e8b657bdb3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5e6a60d7328ed5b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02bc497abb01c97f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a87edd98e8035a3", + "ami_id": "ami-08ef62620367eaadd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c855c01eedb3ddf5", + "ami_id": "ami-0a98639157501357f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0315b7b2de9ebe077", + "ami_id": "ami-06245c8819e34cbe1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce02f368df14940c", + "ami_id": "ami-03b596dc442c120e9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007a3bee0ad16bdb2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-033b7ac48912338d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b058a8627526232", + "ami_id": "ami-0b4c4be0279fed3a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09caed2639d24cee0", + "ami_id": "ami-0dfd6df48260f4ecc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0a5465dbc97ec92", + "ami_id": "ami-01f18e58e257f0f75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab6ff136544ee774", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-077836848d694d252", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035622cb616018532", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0c26f4bce18636799", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e69f3f6bb084b37", + "ami_id": "ami-0257931235deac359", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064fe53fae831e9e7", + "ami_id": "ami-0b6f28d32ec95a49e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031f834b404e9d65c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-012803d99a0961c66", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071c2f7010976d3e2", + "ami_id": "ami-06a2946d5f6a08fb2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06245c8819e34cbe1", + "ami_id": "ami-092aba08b08519356", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d7b1f08effa2b9d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0301c1647143a7f7f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0981acf99b45e7042", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-072feef8abe1bd579", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0132333ec62d90f4d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-084981e802f77ec5d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4a7cd945eee4f5a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "ami_id": "ami-0d0b111f10c79ea92", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7d7dba123148d0d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-0c6ac9477f8144c37", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa23d210cf918d1a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-0da9158b280ba2481", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01188a2009ee1529a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d767f2abc7c40322", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068f39de921aa1d96", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-039eaee5e9e22e00e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0720b2fbc76ff8198", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d02942513bb1c64e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdf74913cbe66771", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-09716795f99303af2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05884bf6b09583c1d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-047645383b6e9ed08", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02422079bd8fc85b3", + "ami_id": "ami-092e056cb7abb4b11", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038e97d20a0bc0ad0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0dc619b4d07e5971a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a265fc6d8d67bb21", + "ami_id": "ami-05b38ac30faac1536", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cba8098f8099e856", + "ami_id": "ami-0bb9a7cd70eabea32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060b04fce9f4f74c2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "ami_id": "ami-0dc5077a467ceee5c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1c02435148949b5", + "ami_id": "ami-0efc32e4177d1e813", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad42eb8cd6a298b3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-06b3f12258de0b293", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01567514caf77f46e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-090a1958e40e031ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08720cb14cb884621", + "ami_id": "ami-0cc58fc0948dcbe70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a1b77d553feb126", + "ami_id": "ami-0d871a653109a8a8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abeb9e9ba9e5b295", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-028981989c5d39b9d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3f64a50948795a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0dd7ae192deaa23a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0298289c2e3ca21cb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-085a62e14294cc203", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062a59a4fc108c371", + "ami_id": "ami-0ab2581386c089832", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8543bf2163740ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-0fbc0fbd33572a6f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0693b6164b805fe11", + "ami_id": "ami-05b16141a2340905e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8797b9e42acb83c", + "ami_id": "ami-09ce2be275f69bc0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088abef1a80de6ac1", + "ami_id": "ami-025702cf71abfc73f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ef62620367eaadd", + "ami_id": "ami-09c23c7df65a7e080", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088e370c32c918ed7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "ami_id": "ami-02a67c5f4fcf98e61", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c7ac1c64ad19b8a", + "ami_id": "ami-01fb0d1e8cf465bcd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9635a0fe429dbe2", + "ami_id": "ami-0f8fb87c7f920c73f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066ff9b6858d438e1", + "ami_id": "ami-06b37a2af8cf7a3d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074400ecdf5eaa354", + "ami_id": "ami-04fc5fd3784bcc1dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022e97697df870ad0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-0b34fc65ee8a62582", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cd250a4bbf2e610", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07c2001e857f634b7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5f3272ddb489532", + "ami_id": "ami-0905c53adb556c485", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048c36b72c00e8969", + "ami_id": "ami-0bc4efcbad74071f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc20a992c730603d", + "ami_id": "ami-038e97d20a0bc0ad0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b70fab3ee2f860f0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "ami_id": "ami-0e118aa1b65d56f48", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013dfdc5e7160e7e0", + "ami_id": "ami-09b920ce3881c630f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017e32d45d656d59c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-00c87c7e33d1a5a10", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e4dc6d6a69e48fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-046e3b3da03e7a339", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04827db465f82b50b", + "ami_id": "ami-07664090398e8895c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc619b4d07e5971a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-01188a2009ee1529a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074694de23bc72da1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ceaec5b09e65abc1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5d1d43e7d3cc422", + "ami_id": "ami-0936a914ba5e35a09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f34c74f62b53918", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-031ef7a04c8037013", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0258eb6505f937a2d", + "ami_id": "ami-04697b794c2b1bd5f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016d292dbd2f4921b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-01955f7a11e0c7e73", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df8b329e013b529b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "ami_id": "ami-0fb1174f7d7a6af15", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024170b366f0452d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-01b2ec52bada5761e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ed8db24c0207fa6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-0a862e0c1c521ad2b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bcfd32fea7231c47", + "ami_id": "ami-02e71b28c7453e0a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2794352de737bd2", + "ami_id": "ami-0720b2fbc76ff8198", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0101569be8c8a66bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-05180a04146377bc0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d118804a69cb5d2", + "ami_id": "ami-06f0ccf6dd6ed760d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fbd8f5f956f39ef", + "ami_id": "ami-082644041b26b165d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b00bd8392c765b2b", + "ami_id": "ami-0578e045533c23ac1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be224b4d422ddffa", + "ami_id": "ami-07e71f7f27ee912c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0b31639e9a2f5f7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "ami_id": "ami-05ff3b7ebf6e587c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021c3b5f4d2d84a70", + "ami_id": "ami-08fa6526c29ed91c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e94aeac25e624c54", + "ami_id": "ami-0d1d7456ddf81dce0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f0ccf6dd6ed760d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07000907f913110b3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faec727168f7ff5e", + "ami_id": "ami-0fac6d885958b68ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054741de77fad89b4", + "ami_id": "ami-09898d5f8269920a4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0212764dd22354e6b", + "ami_id": "ami-0f995b4ade85d39b4", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0234d7c881c7126b6", + "ami_id": "ami-04e1e7a24fefb0182", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04128e7305a9d8245", + "ami_id": "ami-0c807c656dc425547", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f1cef0a0e92550e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-0197ca76037bce940", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c86425769f9b204", + "ami_id": "ami-04e94e507a290bc34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039eaee5e9e22e00e", + "ami_id": "ami-0ef011c63ac68c7c4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0578e045533c23ac1", + "ami_id": "ami-0c39a41a810aa29f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0322f69e2a8084c91", + "ami_id": "ami-0165e8e9122adf209", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1894262e4db23ae", + "ami_id": "ami-07d89f917dd9ef783", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b66ca41ee1e6118e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-00f8cb07d356f49b7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4d5cf6c0e6a0daa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-07f1cef0a0e92550e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084981e802f77ec5d", + "ami_id": "ami-0a76f02d766b5d1d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0331f10e396dc580e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09e70db269ed1b814", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfd46983dfedec59", + "ami_id": "ami-026b43b3950ea0fda", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08058186f5307ff98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f23b9821338874cc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01428175fe5290f9d", + "ami_id": "ami-07a0da868e4c0c4ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08eb7d41950c2e4ee", + "ami_id": "ami-03f95ead01b9eb72f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf777a2a2169c4d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-0118947bfb531538f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0427da17d6320840a", + "ami_id": "ami-06a5bea0833e7b76b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051397ab8af923eab", + "ami_id": "ami-0330e589c819ddd4a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031ef7a04c8037013", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c2eb33c73e4d2b12", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02465418a2885f01d", + "ami_id": "ami-04fc74858c5803072", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cc4a0cf12adea57", + "ami_id": "ami-074694de23bc72da1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03676f1aed9adfc57", + "ami_id": "ami-06b12a91b89b80c79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1d769b0995dc93e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-0ef52c4e178cfff17", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d8ca96516e93d70", + "ami_id": "ami-004df3695115904a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e181074f2b5bfada", + "ami_id": "ami-0df8b329e013b529b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c01d14eb6285ba99", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "ami_id": "ami-02a7d39ec982570c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6b28e2acc3113cf", + "ami_id": "ami-04a4d5340d7c6f5a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecdc3baed602093d", + "ami_id": "ami-0ce81870a6f4af3e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001025d703aed1419", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d2fb18b18ba93007", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be50a0617fe50971", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "ami_id": "ami-0867f9e7926ac4703", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02255304b482256df", + "ami_id": "ami-0a7a4f5aa45125303", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004c82041e5d88b75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-0ca9c0a540ad33dc0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007e4f33607f6894e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-022e97697df870ad0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bc497abb01c97f4", + "ami_id": "ami-0517cde38c6da4c14", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c47d5b2f673d5612", + "ami_id": "ami-0530697ddaad7384c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012803d99a0961c66", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-023a7403d96b44bcd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00db3e77179e839dc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-0bc5a7b6e7feb3acc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e032ab4e654bebd", + "ami_id": "ami-010298fd278a3af3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e8fb1923b56bec0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "ami_id": "ami-06c5d5c1742a1c330", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c100dcbea96264c1", + "ami_id": "ami-0171fc36ab8c8349c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073169272c2c648d8", + "ami_id": "ami-0309ab3f456d5be11", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054d6e1666e423760", + "ami_id": "ami-0e181074f2b5bfada", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b6dd5c5ae26c65e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-066c2e6a1e0f7637f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020d015cf7a90b8ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c581dd1bb33f1df6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1e94f8179feaa23", + "ami_id": "ami-0be224b4d422ddffa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0867f9e7926ac4703", + "ami_id": "ami-0a3a34d6014c0725e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6091185294eb95f", + "ami_id": "ami-0abcf2f1e17e3867b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfc8dd3dcd878121", + "ami_id": "ami-0303edae07f82d5c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2262bb36d936176", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-0c465cc2c37030627", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef011c63ac68c7c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d67df6d68fe1d470", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b1409cebf6bc876", + "ami_id": "ami-0258eb6505f937a2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0975669d73712598a", + "ami_id": "ami-0bcfd32fea7231c47", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dd8e05a079f733b", + "ami_id": "ami-047693ce3560b17e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051aa7f76bca8913a", + "ami_id": "ami-00094e46b64adb8bd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2269,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f1b92fac3158ee8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-0c58f754472f81db1", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -2285,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a0da868e4c0c4ea", + "ami_id": "ami-0e1e2cc3127c2d29e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094bd55977116c729", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-070d58da7c5c9452c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a2191a8ddaa56fc", + "ami_id": "ami-03eb1b1787bb14983", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b0d18f5b70dee2b", + "ami_id": "ami-0c7b6d32b2ae221c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09147681927a87534", + "ami_id": "ami-079973c2dd2423b81", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068d00f33b5ff142b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-011aac5151c2daf90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab4879cb88e05366", + "ami_id": "ami-072ff46d00543a603", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af15332d7f565a30", + "ami_id": "ami-0a74cbef9eb81a0ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c69e99e4f064234", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-0fb8487c5eadbf0c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec601723c4e4a6a7", + "ami_id": "ami-074301f791d3a2c7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e57d9d86b0d8cc98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "ami_id": "ami-04845b6c7402d6156", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0657e2e7731582c72", + "ami_id": "ami-05133df27da76b6c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b12a91b89b80c79", + "ami_id": "ami-0ab26be72174d9cd8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb1174f7d7a6af15", + "ami_id": "ami-03aaa8e720bda2aca", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adf4574a0dbc5743", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-07dc8029cd7a07c33", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066c2e6a1e0f7637f", + "ami_id": "ami-083810c5823123c01", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aa9bd8413baafc1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-0eeea8983962ef325", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066e950b57da48f37", + "ami_id": "ami-0c7d7dba123148d0d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2573,15 +2733,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b34fc65ee8a62582", + "ami_id": "ami-06ab0f1c523fe0185", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09674a935271df9fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2589,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fbb6426a5beca9a", + "ami_id": "ami-0bb83d7a3c6e37ae9", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2605,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f585ec70257ab0e2", + "ami_id": "ami-0dd15b102909321d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2621,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad981091413bbe1f", + "ami_id": "ami-03308357f96102ec2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2637,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e90122b723f9eee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-025639c215a13191a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2653,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b3a7f7013d06c83", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "ami_id": "ami-004c82041e5d88b75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2669,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d1878c6f03f66a1", + "ami_id": "ami-02060ca2607d1f5b7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2685,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9a6537e92db700c", + "ami_id": "ami-088e370c32c918ed7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2701,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042163337a8a0d15c", + "ami_id": "ami-0bf269627f658d3d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2717,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f38dec569846c4bb", + "ami_id": "ami-0ffa26db23945cc65", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2733,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015b663d5f79b6d39", + "ami_id": "ami-0b04ea422b40fa95a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2749,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcaecccabf06e681", + "ami_id": "ami-05636bc5fb7afba1b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2765,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a67fedbcd8a207f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-08248a90dbe8816e0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2781,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05682d2068a536262", + "ami_id": "ami-06fedd86a6fb9d8c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2797,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0671f0fee16d025d8", + "ami_id": "ami-0faa3c985b08550f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2813,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c1c269d8a6d7822", + "ami_id": "ami-00c0fac295a219164", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2829,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082e510aa0918f9bb", + "ami_id": "ami-01fa3d8eed4aef6cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2845,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aeae8f8ab33792f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "ami_id": "ami-0f24ba919c790a300", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2861,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0935add59988b48ba", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00a52e8d53c516d7e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2877,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b31c07e5a78e04c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-057be7c4424c84735", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2893,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bd845e00281e416", + "ami_id": "ami-0038bfbce59aea4e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2909,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077809565f47d7f33", + "ami_id": "ami-0cb10ccbb5913c3b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2925,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092aba08b08519356", + "ami_id": "ami-05d271e49b05fa263", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2941,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a63af057e83f909", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-084a0e3c23eab5b38", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2957,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011aac5151c2daf90", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "ami_id": "ami-0b0ddf9577c537f03", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -2973,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074301f791d3a2c7b", + "ami_id": "ami-0ad8843ccafd6552e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -2989,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2eb33c73e4d2b12", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "ami_id": "ami-0f780028e15d9561d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3005,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ceaec5b09e65abc1", + "ami_id": "ami-0fb4ebdaa701342aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3021,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b82714e2f3ab3f21", + "ami_id": "ami-022f752ddf5dffc2a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3037,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a67c5f4fcf98e61", + "ami_id": "ami-01a6dc50273fe5127", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3053,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0799b91312f7bd15c", + "ami_id": "ami-0476d610dd7e0ae4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3069,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055cb64994bb65316", + "ami_id": "ami-09e462295bdc5db19", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3085,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b64c3f46152f7b7a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "ami_id": "ami-0a25135d4fca266c7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3101,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa195c0e130c2f15", + "ami_id": "ami-0abb4d0a30bdd468a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3117,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ed1d585f15de355", + "ami_id": "ami-0e682c0db207fad21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3133,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063a4d55d6f35715a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-001025d703aed1419", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3149,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0357d25275fc49315", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "ami_id": "ami-05884bf6b09583c1d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3165,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af097690758f2878", + "ami_id": "ami-0be9b060d1e688477", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3181,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee5d90e7d00f339e", + "ami_id": "ami-00757328c4cd7c871", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3197,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0051e12633e35b82d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f8f39634b928767e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3213,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035a4ad02e0a0260c", + "ami_id": "ami-06d118804a69cb5d2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3229,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08beb0d07b24af4f8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06ab7b13e35cbd554", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3245,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abe0b87a2c85c033", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "ami_id": "ami-0a8070c97b170c17d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3261,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cf496bdb7d3f0a4", + "ami_id": "ami-0ecdb6cf8cefb1395", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3277,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edea9d91a50ae629", + "ami_id": "ami-08e90122b723f9eee", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3293,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05844b4d6385d3f69", + "ami_id": "ami-0c7338877eaa34273", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3309,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0850b8330db0757c9", + "ami_id": "ami-0ec601723c4e4a6a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3325,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ce2be275f69bc0c", + "ami_id": "ami-05844b4d6385d3f69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3341,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083db8758d255f76f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "ami_id": "ami-039cdce81d5d8a21b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3357,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047964ede128bd5ed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d24d7241bea00b43", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3373,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d7ff3676d225ccf", + "ami_id": "ami-0e430bec3697a3cae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3389,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1a0cdc09270124f", + "ami_id": "ami-0c0573985fa60c559", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3405,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0011c73becc8bd107", + "ami_id": "ami-0f3f692b137230d7f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3421,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ff3b7ebf6e587c9", + "ami_id": "ami-0051e12633e35b82d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3437,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046e3b3da03e7a339", + "ami_id": "ami-011414432715dd769", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3453,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6b9428c3c669eed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06c64548fb554ad88", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3469,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046bf8695d4c7412f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b06d8a55363a3b6d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3485,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbee4f4cc733dd85", + "ami_id": "ami-0394500e4e871b2e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3501,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ed1aa493ec63dd5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-0850b8330db0757c9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3517,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0479f9b8e3e686728", + "ami_id": "ami-00a12e1561558dd78", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3533,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af0e632fffc03573", + "ami_id": "ami-0e57d9d86b0d8cc98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3549,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db42a0213b54d3ec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "ami_id": "ami-01f8c333814e9b9f1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3565,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fd33aa1da73fae5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-00588d326e50e3411", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3581,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b8a2e16243aaf03", + "ami_id": "ami-0c242397746b7a9be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3597,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03eb1b1787bb14983", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-012a9c0951b76619a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3613,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05636bc5fb7afba1b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0322f69e2a8084c91", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3629,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d97d8571c87f208", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-05b44ce0f14d492bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3645,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0640674aee2e17b31", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08beb0d07b24af4f8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3661,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8e3e31b6bf0b14e", + "ami_id": "ami-0e5e6a60d7328ed5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3677,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a8629bccfec90c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "ami_id": "ami-0485ae842aa2ce7d8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3693,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e118aa1b65d56f48", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-071141d4637827336", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3709,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077836848d694d252", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-07bf3184b82f1a102", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3725,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037aa18eab7e316dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "ami_id": "ami-0a4c7e790847d5f41", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3741,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0348e308d3156bd35", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03e032ab4e654bebd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3757,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f316f12ec725847", + "ami_id": "ami-0d93505cf70b033de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3773,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a66c89b194fbd102", + "ami_id": "ami-059dd1678912ef983", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3789,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb9a7cd70eabea32", + "ami_id": "ami-066ff9b6858d438e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3805,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef52c4e178cfff17", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-03a238d4676cf8a24", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3821,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e462295bdc5db19", + "ami_id": "ami-00b31c07e5a78e04c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3837,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3a34d6014c0725e", + "ami_id": "ami-0b2331d85e9d39bef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3853,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9863d2a655f246a", + "ami_id": "ami-0f2bbc83dfef0e47c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3869,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0517cde38c6da4c14", + "ami_id": "ami-010e7ae61c3646d10", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3885,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054a6245ba1b2b552", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02bb1136c258253fb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3901,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0118947bfb531538f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a9eb6bf2d7524954", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3917,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3f692b137230d7f", + "ami_id": "ami-0af097690758f2878", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3933,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099a8162475b424ac", + "ami_id": "ami-01d7b1f08effa2b9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -3949,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bc2ad74ee100316", + "ami_id": "ami-03b3ac9a66b1bb7f8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3965,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf269627f658d3d4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-01fc1412065d41ce9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3981,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce81870a6f4af3e2", + "ami_id": "ami-0ff5d7261f32e6d31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -3997,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021226f834258c2e8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "ami_id": "ami-09f57c002a23abdb6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4013,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2bee698587f440e", + "ami_id": "ami-05128e1c71e4f4280", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4029,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dfb8f2e3f3ad4bf", + "ami_id": "ami-0e0f484b4be22fce7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4045,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0303edae07f82d5c2", + "ami_id": "ami-024170b366f0452d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4061,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0ddf9577c537f03", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-07d4f8d432f798fb6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4077,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f95ead01b9eb72f", + "ami_id": "ami-01c9b0aba308b0daa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4093,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0953c1d4227f6a6be", + "ami_id": "ami-0ef0fd36931ec1292", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4109,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b603c05bd6cc556", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "ami_id": "ami-0139ae653998aa736", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4125,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be9b060d1e688477", + "ami_id": "ami-082e510aa0918f9bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4141,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0707b6e2271f99d65", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "ami_id": "ami-0e0de0b8304997f16", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4157,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f11cd131206e5842", + "ami_id": "ami-0f7cbaa5a0a190ce1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4173,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f521b1fe22f651b1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02465418a2885f01d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4189,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7d65c1848978c79", + "ami_id": "ami-0aeea4e0dd6d4856e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4205,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ece152aaefc82ab0", + "ami_id": "ami-03b545dec021c790e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4221,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08eb295cc2e098d85", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c5fba98c9a8f8b3c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4237,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a988e0397e371ca2", + "ami_id": "ami-029d9adafa9aab763", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4253,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4153c78801f5a6e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-068f39de921aa1d96", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4269,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc3385f8a72f4c5f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-015107b22e1934005", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4285,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049f03d36dc2e48dc", + "ami_id": "ami-0234d7c881c7126b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4301,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09aabcc5c966d28fd", + "ami_id": "ami-08fbd8f5f956f39ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4317,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060d648204e3c7187", + "ami_id": "ami-09624ab0803217e3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4333,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5b2baceae445293", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e0a5465dbc97ec92", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4349,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01960c60c3600922a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-09f34c74f62b53918", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4365,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5efd4f32396af2f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01088f23e721619df", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4381,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043ba2a67b77f7856", + "ami_id": "ami-00db3e77179e839dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4397,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f48745e806a03a5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-01dd8e05a079f733b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4413,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b04ea422b40fa95a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "ami_id": "ami-0bf6d6df7dea28cd1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4429,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0038bfbce59aea4e5", + "ami_id": "ami-05315854f4262b8b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4445,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0349946f6bab5537e", + "ami_id": "ami-0b1faf1b3577746d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4461,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c5d5c1742a1c330", + "ami_id": "ami-0f5efd4f32396af2f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4477,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bb1136c258253fb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "ami_id": "ami-0c340e916a708f47c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4493,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1faf1b3577746d5", + "ami_id": "ami-08956837ec84d5f8a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4509,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec8f5798625a2c2a", + "ami_id": "ami-00d1d02bfdd28faff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4525,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fe7355317910c36", + "ami_id": "ami-07a63af057e83f909", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4541,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2bbc83dfef0e47c", + "ami_id": "ami-09147681927a87534", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4557,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc58fc0948dcbe70", + "ami_id": "ami-035a4ad02e0a0260c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -4573,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2d2d9a9b852193f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "ami_id": "ami-0560747d978aa8ffe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4589,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a232c9ccd8740698", + "ami_id": "ami-05c19aa1b78bd070d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4605,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be20ee8b60d4f99f", + "ami_id": "ami-03e69f3f6bb084b37", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4621,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0cc2665c1ea4d9f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-0cf777a2a2169c4d8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4637,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021dae72a70cc6fbd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "ami_id": "ami-03e14fc885731b55f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4653,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e14fc885731b55f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05d8ca96516e93d70", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4669,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef0fd36931ec1292", + "ami_id": "ami-007e4f33607f6894e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4685,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0001b690995bca4ba", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-047964ede128bd5ed", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4701,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b754eb17432c77ab", + "ami_id": "ami-0aefb43c7b7f8f4f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4717,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fc1412065d41ce9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-0ec8f5798625a2c2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4733,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be92f2cd10780ae5", + "ami_id": "ami-0525937920cb86887", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4749,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00545da57d00c14ba", + "ami_id": "ami-0a354118d62d2ed42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4765,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04697b794c2b1bd5f", + "ami_id": "ami-049e33212a2eff5af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4781,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030d3b89c91b6dbfd", + "ami_id": "ami-060b04fce9f4f74c2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4797,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfad7a5066eff680", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-07e5d844ce27c5780", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4813,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e14e8792c6d27d39", + "ami_id": "ami-07ed7f2aeb805ff90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4829,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097619e171b3dab1f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "ami_id": "ami-0348e308d3156bd35", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4845,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083a186027aa7efb4", + "ami_id": "ami-051397ab8af923eab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4861,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0960b1fdc34ed82a2", + "ami_id": "ami-021dae72a70cc6fbd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4877,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0677b664183938278", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02b8a2e16243aaf03", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4893,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc5077a467ceee5c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-07221d8a7caa72b34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4909,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a354118d62d2ed42", + "ami_id": "ami-01c1330fad355dd6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4925,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6ac9477f8144c37", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-0f365a55cd00bf4e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4941,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac6439c810631c8b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-05405764f3da19276", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4957,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083810c5823123c01", + "ami_id": "ami-0352a291bfb199370", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -4973,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb6d0cf9f82fa4e8", + "ami_id": "ami-0b00bd8392c765b2b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -4989,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053daecaa240fb597", + "ami_id": "ami-0efc4386e1c1c180d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5005,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4debc7543c63844", + "ami_id": "ami-08f374c4d460574ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5021,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084a0e3c23eab5b38", + "ami_id": "ami-0c855c01eedb3ddf5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5037,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0962e2b9897d143cf", + "ami_id": "ami-0d8e3e31b6bf0b14e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5053,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb10ccbb5913c3b7", + "ami_id": "ami-0ab4879cb88e05366", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5069,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bf3184b82f1a102", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "ami_id": "ami-0e6b9428c3c669eed", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5085,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c230e673254bf564", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-0f280cd7fb4fc6f31", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5101,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ce875e16dfd980c", + "ami_id": "ami-06d8de44813fc029f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5117,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010ab9b1fe2f4bbf4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-040f1459740afa1b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5133,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e235c7632c9e438a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e94aeac25e624c54", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5149,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c547531d50ab33ed", + "ami_id": "ami-0c3b8eac6460e9c18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5165,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b545dec021c790e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0be92f2cd10780ae5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5181,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5164e3a66d7cb63", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "ami_id": "ami-05f0df272430c5f8e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5197,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb52751b98cde9ab", + "ami_id": "ami-0f73e55ba45ba04c0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5213,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036a719759f6f672c", + "ami_id": "ami-01e8ef19572c4583a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5229,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01efd1eafdd5761d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-04aac7c64e1b4a9bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5245,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1f6609aba9c52c5", + "ami_id": "ami-06f7e68acbf75234a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -5261,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f995b4ade85d39b4", + "ami_id": "ami-04aeaead1781b3550", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5277,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4ac3e1385aec74a", + "ami_id": "ami-0e1dbf2a7c909efbe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5293,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccf9c0052bc256ac", + "ami_id": "ami-053daecaa240fb597", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5309,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f904a6ccf982724f", + "ami_id": "ami-0a83d3e64124f4251", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5325,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09716795f99303af2", + "ami_id": "ami-00e556c5a90a646b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5341,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c99d660b2e9b456b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-01960c60c3600922a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5357,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079973c2dd2423b81", + "ami_id": "ami-0693b6164b805fe11", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5373,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef1cc0abe293f7a1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "ami_id": "ami-09fbb6426a5beca9a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5389,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c0fac295a219164", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04827db465f82b50b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5405,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019d589b15f005c72", + "ami_id": "ami-067b2626792d8e336", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5421,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04845b6c7402d6156", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a265fc6d8d67bb21", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5437,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05aa6432cf4ce7af5", + "ami_id": "ami-0dfad7a5066eff680", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5453,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0476d610dd7e0ae4b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08bc2ad74ee100316", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5469,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0933d2b166d5be2a2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07b6dd5c5ae26c65e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5485,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6c59ac73db8effd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0672077974d41e781", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5501,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e1e7a24fefb0182", + "ami_id": "ami-06971ee22cc53a16b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5517,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00757328c4cd7c871", + "ami_id": "ami-019d589b15f005c72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5533,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05379e3cc37994a2a", + "ami_id": "ami-0f11cd131206e5842", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5549,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075a8fe8424355ea8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09c7ac1c64ad19b8a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5565,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01673804c6c2eaee4", + "ami_id": "ami-0027f10d35ec6a33a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5581,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fb15b9ae9c4dad6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "ami_id": "ami-075a8fe8424355ea8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5597,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0c62e8b4902647e", + "ami_id": "ami-0b4efbe743de5f941", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5613,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4814dfd035ea0d6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-014bc04ed9e302323", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5629,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08490b8357ad99191", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d769e69a89dbf02d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5645,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067b2626792d8e336", + "ami_id": "ami-03fa1f485aaa22d69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5661,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d9e547f4fe4ed38", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-054781008c8b6e36f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5677,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073c181d4d59cc8bb", + "ami_id": "ami-00886b6e5ae5c9fb2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5693,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f977d8cc2ab3ade8", + "ami_id": "ami-0bd6ee6b4b5efe7c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5709,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04afd400c371d6e62", + "ami_id": "ami-0975669d73712598a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5725,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b918ac194abd95f1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-0af0e632fffc03573", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5741,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fc74858c5803072", + "ami_id": "ami-0c4c9cb2d274e9cf5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5757,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a5bea0833e7b76b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-05eaf23803f9465ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5773,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09624ab0803217e3d", + "ami_id": "ami-043ba2a67b77f7856", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5789,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a50c4e5f02b9b8ee", + "ami_id": "ami-06121203541ea4ea0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5805,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1d7456ddf81dce0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-06166b3adaf23a2bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5821,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0243abac85c1e477d", + "ami_id": "ami-05a894187d8dab7b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5837,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023a7403d96b44bcd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ac7fef6cc73c775b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5853,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f365a55cd00bf4e4", + "ami_id": "ami-0ee5d90e7d00f339e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5869,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfd6df48260f4ecc", + "ami_id": "ami-0abe0b87a2c85c033", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5885,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06166b3adaf23a2bb", + "ami_id": "ami-0d1a0cdc09270124f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5901,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b9a82926059b84f", + "ami_id": "ami-0cc926d2960139062", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5917,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dc8029cd7a07c33", + "ami_id": "ami-0eb71b7c1535d931c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -5933,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0998223bb9553caf0", + "ami_id": "ami-064fe53fae831e9e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5949,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5fba98c9a8f8b3c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0886f0df59ef0c4f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5965,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f1d2d5c05876378", + "ami_id": "ami-0357d25275fc49315", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5981,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0314cd5552e46865a", + "ami_id": "ami-0e1e94f8179feaa23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -5997,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab26be72174d9cd8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-0ad42eb8cd6a298b3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6013,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010298fd278a3af3b", + "ami_id": "ami-01dfb8f2e3f3ad4bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6029,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0936a914ba5e35a09", + "ami_id": "ami-0331f10e396dc580e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6045,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da9158b280ba2481", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "ami_id": "ami-0403d33ec5349eaf4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6061,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e6a18baa62b32bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-07b603c05bd6cc556", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6077,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05405764f3da19276", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ba83f98397ce7dce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6093,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072ff46d00543a603", + "ami_id": "ami-0566ce8d5f0c467fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6109,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0301c1647143a7f7f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-06ba309411813508d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6125,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f44e5a1ba9bc0ec2", + "ami_id": "ami-078cbd6c11cc97683", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6141,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025702cf71abfc73f", + "ami_id": "ami-0b1894262e4db23ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6157,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f57c002a23abdb6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0de13d49a08d9bfcb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6173,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03eaa59100701e54a", + "ami_id": "ami-06f016c4f257f4db6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6189,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0341d0efea1d25f3a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-021226f834258c2e8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6205,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a052e3b557f04c20", + "ami_id": "ami-056e1289273873a4d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -6221,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0352a291bfb199370", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09ed8db24c0207fa6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6237,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078ace6c1759d9f26", + "ami_id": "ami-07cf6f2469c657432", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6253,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b38ac30faac1536", + "ami_id": "ami-09793ea62dda7bca8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6269,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aefb43c7b7f8f4f5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-082c7ab3cd6291d65", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6285,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c13db6901f0b171", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "ami_id": "ami-0e8797b9e42acb83c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6301,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0904671410d385364", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f8df6c5844c259f5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6317,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a610def0e5883106", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "ami_id": "ami-07b877f7ae6126a34", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -6333,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03aaa8e720bda2aca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-06b084ccd8ac70ede", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6349,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c635ae065e4fcce0", + "ami_id": "ami-00ce875e16dfd980c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6365,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fb731131d0eebeb", + "ami_id": "ami-0d9c0a2355da09b64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6381,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8f39634b928767e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03c089bcfd85c11ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6397,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7cce83ad9c7db6a", + "ami_id": "ami-072e7317532069fd3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6413,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070d58da7c5c9452c", + "ami_id": "ami-08eb7d41950c2e4ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6429,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00094e46b64adb8bd", + "ami_id": "ami-0db42a0213b54d3ec", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6445,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b93f828edd15e66", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-0c374aaf85596ce70", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6461,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba83f98397ce7dce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01567514caf77f46e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6477,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054781008c8b6e36f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-02a3cfc7723f579d8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6493,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a98639157501357f", + "ami_id": "ami-0faec727168f7ff5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6509,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0813162a00dfb201f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-04128e7305a9d8245", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6525,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00012e6b74f4e436b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00a8c300f3dc489b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6541,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf28fc5192b31ddd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07f60d162d5e787c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6557,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa6e1521e6ace45a", + "ami_id": "ami-0c7cce83ad9c7db6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6573,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004351b7a304612cb", + "ami_id": "ami-0a1c02435148949b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6589,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b920ce3881c630f", + "ami_id": "ami-048c36b72c00e8969", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6605,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0f484b4be22fce7", + "ami_id": "ami-08fcc12adb431af5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6621,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faa3c985b08550f5", + "ami_id": "ami-0f6c59ac73db8effd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6637,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ad4f9d48c5c0838", + "ami_id": "ami-0f72d098276ab3431", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6653,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0672077974d41e781", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-0591e511d17c2a837", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6669,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b0cce2727e503e9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-0ad981091413bbe1f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6685,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a8c300f3dc489b1", + "ami_id": "ami-0e09d1794b4a86045", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6701,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01955f7a11e0c7e73", + "ami_id": "ami-062a59a4fc108c371", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6717,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03038f8d9f9f52dca", + "ami_id": "ami-0d9a6537e92db700c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6733,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02060ca2607d1f5b7", + "ami_id": "ami-0d4c3852ed0c7b152", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6749,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d806b523361d9ddd", + "ami_id": "ami-01673804c6c2eaee4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6765,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abcf2f1e17e3867b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0227a41f126cb3043", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6781,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf6d6df7dea28cd1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "ami_id": "ami-0e8a250ceb9e3500a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6797,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040f1459740afa1b8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-05aa6432cf4ce7af5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6813,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070635b9f645bf132", + "ami_id": "ami-0dc20a992c730603d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6829,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f338a382ec5b5aa2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-05379e3cc37994a2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6845,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00588d326e50e3411", + "ami_id": "ami-07990da2041f89808", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6861,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078cbd6c11cc97683", + "ami_id": "ami-069e30db87c9093f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6877,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029d9adafa9aab763", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-035622cb616018532", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -6893,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b73efec9d5c01873", + "ami_id": "ami-012cf121c3246ee9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6909,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8e445c90979d141", + "ami_id": "ami-017e32d45d656d59c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6925,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0b111f10c79ea92", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-0abd5174d2c5dc316", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6941,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f0df272430c5f8e", + "ami_id": "ami-0cee21274aa4c905a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6957,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4c9cb2d274e9cf5", + "ami_id": "ami-05682d2068a536262", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -6973,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf6dcf424617dc1c", + "ami_id": "ami-04f52bc66ead60f54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -6989,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c2001e857f634b7", + "ami_id": "ami-0d397f9a1b8fba391", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7005,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de13d49a08d9bfcb", + "ami_id": "ami-095f94a3b9264334d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7021,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad8843ccafd6552e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09b9a82926059b84f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7037,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8a4c711377a90c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-054a6245ba1b2b552", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7053,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c23c7df65a7e080", + "ami_id": "ami-083a186027aa7efb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7069,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0591e511d17c2a837", + "ami_id": "ami-0524b415cc39f6f86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7085,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0171fc36ab8c8349c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-07b3e1be3d1dff8ef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7101,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c39a41a810aa29f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0677b664183938278", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7117,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047645383b6e9ed08", + "ami_id": "ami-0904671410d385364", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7133,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0525937920cb86887", + "ami_id": "ami-0f44e5a1ba9bc0ec2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7149,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8fa48b8c1238e45", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-0cba8098f8099e856", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7165,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071426d0e96bdd5bc", + "ami_id": "ami-04e8fb1923b56bec0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7181,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07990da2041f89808", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08490b8357ad99191", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7197,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abd5174d2c5dc316", + "ami_id": "ami-0ede796dc01cd84c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7213,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc5df49ee1ef0f6d", + "ami_id": "ami-0962e2b9897d143cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7229,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05133df27da76b6c0", + "ami_id": "ami-029cd3ca8576b8e08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7245,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7a4f5aa45125303", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-0ef1cc0abe293f7a1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7261,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011d1017d8342d198", + "ami_id": "ami-09aabcc5c966d28fd", "architecture": "x86_64", "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7277,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07000907f913110b3", + "ami_id": "ami-04a9e8d6efadcba46", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7293,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c465cc2c37030627", + "ami_id": "ami-03d9e547f4fe4ed38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -7309,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab2581386c089832", + "ami_id": "ami-07a74725fbb49cb48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7325,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ba309411813508d", + "ami_id": "ami-0349946f6bab5537e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7341,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8a250ceb9e3500a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-010ab9b1fe2f4bbf4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7357,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080a11bb8540c0d13", + "ami_id": "ami-02b1409cebf6bc876", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7373,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb83d7a3c6e37ae9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-07b582b0ddba1d19e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7389,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04115c70018896c7e", + "ami_id": "ami-0f38dec569846c4bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7405,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0614b7797ea3cd147", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "ami_id": "ami-08aa9bd8413baafc1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7421,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbc0fbd33572a6f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-02e6a18baa62b32bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -7437,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1dbf2a7c909efbe", + "ami_id": "ami-0633b2dd9076036eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7453,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059dd1678912ef983", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09c312317041848aa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7469,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029cd3ca8576b8e08", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07d97d8571c87f208", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7485,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011414432715dd769", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-0dfd46983dfedec59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7501,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049e33212a2eff5af", + "ami_id": "ami-03038f8d9f9f52dca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7517,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb71b7c1535d931c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "ami_id": "ami-072cb95f0532671b4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7533,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4c4be0279fed3a7", + "ami_id": "ami-042163337a8a0d15c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7549,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08248a90dbe8816e0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-055cb64994bb65316", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7565,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c58f754472f81db1", + "ami_id": "ami-002179e606666d90e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7581,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0227a41f126cb3043", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-0fa195c0e130c2f15", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7597,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac7fef6cc73c775b", + "ami_id": "ami-0c0cc2665c1ea4d9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7613,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b16141a2340905e", + "ami_id": "ami-006e5c0d92a90a012", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7629,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7edbd1cc83eff04", + "ami_id": "ami-06340ffad62a88302", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7645,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef98c1a9c41a4a9d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "ami_id": "ami-0c100dcbea96264c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7661,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040b54b3015a22179", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-0d6b28e2acc3113cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7677,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080f43a327bcab1fb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-0b754eb17432c77ab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7693,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a862e0c1c521ad2b", + "ami_id": "ami-08827fcd244999166", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7709,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032fb21dfd8d2d94a", + "ami_id": "ami-08eb295cc2e098d85", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7725,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d89f917dd9ef783", + "ami_id": "ami-0b73efec9d5c01873", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7741,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b596dc442c120e9", + "ami_id": "ami-0005a2ec35d75dd82", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7757,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ab7b13e35cbd554", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0953c1d4227f6a6be", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7773,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe563b5cbb94c06f", + "ami_id": "ami-057209f92a0de19e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7789,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00eba0f6093147060", + "ami_id": "ami-00aa30d1c251c6000", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7805,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b1f56723c6e5bcd", + "ami_id": "ami-07b0cce2727e503e9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7821,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c63ee7e8b657bdb3", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-016d292dbd2f4921b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7837,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0485ae842aa2ce7d8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-07e737bd961dc8258", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7853,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06340ffad62a88302", + "ami_id": "ami-0d8543bf2163740ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7869,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0673e3bcc1324c842", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-0935add59988b48ba", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7885,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0f296cdf6a36d4a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0140ea9c264424170", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7901,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f24ba919c790a300", + "ami_id": "ami-043bc29dad370b393", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7917,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0560747d978aa8ffe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "ami_id": "ami-071c2f7010976d3e2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7933,15 +8445,373 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e430bec3697a3cae", + "ami_id": "ami-088e0bcf81100506d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02a1b77d553feb126", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04fe7355317910c36", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ed1c2a41aedbc170", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01d7ff3676d225ccf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06c13db6901f0b171", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a2794352de737bd2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c4814dfd035ea0d6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0abd3a268c6bfa3f7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d89722cf74929a03", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f5cd946dd8efe685", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-094c8146ee840e32b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07180a5732dbe2e6f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0740e4216370dc0ce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0eb52751b98cde9ab", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e12fbca463270c0a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-054d6e1666e423760", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0abeb9e9ba9e5b295", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-007acac290bfc473b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-049ab54461b7afa4d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-049f03d36dc2e48dc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04d21f539ca87d6d1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7949,15 +8819,271 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0456ded237017a6cd", + "ami_id": "ami-0813162a00dfb201f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f977d8cc2ab3ade8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-097aff2605e60830b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-074400ecdf5eaa354", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b2c79899140af0e2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d3ac10e9826260cb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-053527204a3234c9d", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03636e74b2212185d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0981acf99b45e7042", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-046f4743d4c1bdbbb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0133b0f3044cb1e62", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b66ca41ee1e6118e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d005ae15bee64be6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-031f834b404e9d65c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0640674aee2e17b31", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "owner_id": "640558152053", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0479f9b8e3e686728", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -7965,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09898d5f8269920a4", + "ami_id": "ami-0f521b1fe22f651b1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7981,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9030dbb7c999b79", + "ami_id": "ami-00545da57d00c14ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -7997,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb49238270b94a06", + "ami_id": "ami-05fb15b9ae9c4dad6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8013,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d18a8ffb82444c1c", + "ami_id": "ami-0834966399ec80657", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8029,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095f94a3b9264334d", + "ami_id": "ami-0b79f73a886a534b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8045,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f280cd7fb4fc6f31", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "ami_id": "ami-0cc4d8e177a1cfded", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8061,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071521c876dae81ae", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-0e9635a0fe429dbe2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8077,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026c2558528dee28e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-00d640a53674e00a8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8093,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00276da72c5324d80", + "ami_id": "ami-0c1f6609aba9c52c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8109,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081f7ad8f5466832a", + "ami_id": "ami-032fb21dfd8d2d94a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8125,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecdb6cf8cefb1395", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-071521c876dae81ae", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8141,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d397f9a1b8fba391", + "ami_id": "ami-00eba0f6093147060", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8157,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0257931235deac359", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-011d664945dcc404a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8173,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4c3852ed0c7b152", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-01428175fe5290f9d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8189,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007acac290bfc473b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ab6ff136544ee774", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -8205,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f73e55ba45ba04c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-02422079bd8fc85b3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8221,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a893af4ec1f738d", + "ami_id": "ami-0f0b31639e9a2f5f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8237,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c19aa1b78bd070d", + "ami_id": "ami-06e4dc6d6a69e48fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8253,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb244b7334e4be2c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c7edbd1cc83eff04", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8269,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0309ab3f456d5be11", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-080f43a327bcab1fb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8285,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c9c7ec906adc1e7", + "ami_id": "ami-035458f34823e63f4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8301,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02caf3e4dcd97d0f3", + "ami_id": "ami-0e3b72c58eb6d42a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8317,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0905c53adb556c485", + "ami_id": "ami-0bdf74913cbe66771", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8333,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9eb6bf2d7524954", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-0dbee4f4cc733dd85", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8349,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fedd86a6fb9d8c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-01bf5a686bf991e56", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8365,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097aff2605e60830b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-0d7d65c1848978c79", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8381,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2e39883cd7349f8", + "ami_id": "ami-0bb244b7334e4be2c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8397,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06121203541ea4ea0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "ami_id": "ami-0be50a0617fe50971", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8413,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a3cfc7723f579d8", + "ami_id": "ami-0101569be8c8a66bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8429,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3ac10e9826260cb", + "ami_id": "ami-0960b1fdc34ed82a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8445,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015107b22e1934005", + "ami_id": "ami-0a5d1d43e7d3cc422", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8461,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0834966399ec80657", + "ami_id": "ami-04afd400c371d6e62", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8477,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d02942513bb1c64e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0a232c9ccd8740698", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8493,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07664090398e8895c", + "ami_id": "ami-03b4ac2d7e363a36f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8509,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff5d7261f32e6d31", + "ami_id": "ami-097619e171b3dab1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8525,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d67df6d68fe1d470", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-05d9c61ee821e42c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8541,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da9a1de06cdd1d51", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-0f4a7cd945eee4f5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8557,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a25135d4fca266c7", + "ami_id": "ami-077809565f47d7f33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8573,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db2b916fee09a596", + "ami_id": "ami-06856d5c2f9a15cda", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8589,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0133b0f3044cb1e62", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-0db2b916fee09a596", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -8605,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0027f10d35ec6a33a", + "ami_id": "ami-00d0dc24b4ebfdb98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -8621,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eda186b97ea6bf27", + "ami_id": "ami-0c1a76d1a4133d827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8637,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069e30db87c9093f9", + "ami_id": "ami-08058186f5307ff98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8653,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0740e4216370dc0ce", + "ami_id": "ami-0076a60a73166ab52", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8669,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06856d5c2f9a15cda", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "ami_id": "ami-0d2e39883cd7349f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8685,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c3e50b7a7f0a14f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0011c73becc8bd107", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -8701,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026b43b3950ea0fda", + "ami_id": "ami-0cf539fca61afd8cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8717,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e5d844ce27c5780", + "ami_id": "ami-0707b6e2271f99d65", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8733,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c374aaf85596ce70", + "ami_id": "ami-021c3b5f4d2d84a70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8749,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b3f12258de0b293", + "ami_id": "ami-0cf6dcf424617dc1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8765,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abb4d0a30bdd468a", + "ami_id": "ami-07944fa34f6e155d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8781,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed1c2a41aedbc170", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0308638d473cac4d0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8797,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014bc04ed9e302323", + "ami_id": "ami-06ef0140712c4a3a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8813,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d346faabbffe3cd3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-090066c50f0c675b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8829,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08827fcd244999166", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-0e4153c78801f5a6e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8845,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccb9cafb7a559070", + "ami_id": "ami-0e2262bb36d936176", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8861,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2fb18b18ba93007", + "ami_id": "ami-02caf3e4dcd97d0f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8877,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ede796dc01cd84c5", + "ami_id": "ami-0bdacab9d27830124", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -8893,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b877f7ae6126a34", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-0c635ae065e4fcce0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8909,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00537e9f3c7ab05a8", + "ami_id": "ami-0f8096c0ee2ff236a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8925,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0026276d84d76af2a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "ami_id": "ami-0799b91312f7bd15c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8941,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f8cb07d356f49b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-00276da72c5324d80", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8957,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afb2f3e44773d486", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-0c01d14eb6285ba99", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -8973,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090066c50f0c675b4", + "ami_id": "ami-0bf28fc5192b31ddd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -8989,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffa26db23945cc65", + "ami_id": "ami-0c230e673254bf564", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9005,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b44ce0f14d492bc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "ami_id": "ami-0d346faabbffe3cd3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9021,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a74cbef9eb81a0ea", + "ami_id": "ami-0001b690995bca4ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9037,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046c43c1a610a9449", + "ami_id": "ami-0933d2b166d5be2a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9053,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085a62e14294cc203", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-0d0f296cdf6a36d4a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9069,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fe6cc5c6b1258c9", + "ami_id": "ami-098a69123e70cede2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9085,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e12fbca463270c0a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e8f86ca6722137e7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9101,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e8ef19572c4583a", + "ami_id": "ami-0ce02f368df14940c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -9117,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7259c1766eea49f", + "ami_id": "ami-0a6091185294eb95f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -9133,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b37a2af8cf7a3d2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0427da17d6320840a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9149,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0524b415cc39f6f86", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "ami_id": "ami-0b64c3f46152f7b7a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9165,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0139ae653998aa736", + "ami_id": "ami-03676f1aed9adfc57", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9181,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e556c5a90a646b2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "ami_id": "ami-068d00f33b5ff142b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9197,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a4d5340d7c6f5a8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a3f64a50948795a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9213,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb8487c5eadbf0c9", + "ami_id": "ami-0b82714e2f3ab3f21", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9229,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002179e606666d90e", + "ami_id": "ami-013dfdc5e7160e7e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9245,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08956837ec84d5f8a", + "ami_id": "ami-0dc5df49ee1ef0f6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9261,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c64548fb554ad88", + "ami_id": "ami-015b663d5f79b6d39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9277,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09793ea62dda7bca8", + "ami_id": "ami-0aceb2468b899dbb7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9293,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7cbaa5a0a190ce1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-0c8fa48b8c1238e45", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9309,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c635e3dd7eefb8ce", + "ami_id": "ami-08b058a8627526232", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9325,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090ee8d813a3b4f8e", + "ami_id": "ami-078ace6c1759d9f26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9341,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d767f2abc7c40322", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-083db8758d255f76f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9357,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033b7ac48912338d2", + "ami_id": "ami-01e40a23e358da061", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9373,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afcd55f003d322b7", + "ami_id": "ami-0e9863d2a655f246a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9389,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00aa30d1c251c6000", + "ami_id": "ami-0efa774d5e3583f50", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9405,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0886f0df59ef0c4f5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-0f338a382ec5b5aa2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9421,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b1bf9193572af31", + "ami_id": "ami-008cc7a50a556a162", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9437,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c26f4bce18636799", + "ami_id": "ami-0711a0380403490fe", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9453,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029e4fbae85a4474f", + "ami_id": "ami-09a2191a8ddaa56fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9469,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039cdce81d5d8a21b", + "ami_id": "ami-08aeae8f8ab33792f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9485,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043bc29dad370b393", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "ami_id": "ami-09d1878c6f03f66a1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9501,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3b8eac6460e9c18", + "ami_id": "ami-0a5c476c5a335f3b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -9517,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072feef8abe1bd579", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-00ed1aa493ec63dd5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9533,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f72d098276ab3431", + "ami_id": "ami-0657e2e7731582c72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9549,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3b72c58eb6d42a8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec908f24425f31e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9565,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fa6526c29ed91c9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-037aa18eab7e316dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9581,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090a1958e40e031ff", + "ami_id": "ami-02e839393cf2c097f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9597,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04457c12613bab2e6", + "ami_id": "ami-0f57e022b75bac609", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9613,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a52e8d53c516d7e", + "ami_id": "ami-0456ded237017a6cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9629,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd726462933b6df3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "ami_id": "ami-09b1f56723c6e5bcd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9645,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8fb87c7f920c73f", + "ami_id": "ami-0a66c89b194fbd102", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9661,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f374c4d460574ad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "ami_id": "ami-03f1b92fac3158ee8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9677,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2331d85e9d39bef", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04c3e50b7a7f0a14f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9693,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a2946d5f6a08fb2", + "ami_id": "ami-0aa6e1521e6ace45a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9709,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d0dc24b4ebfdb98", + "ami_id": "ami-0e6dee3b836818105", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9725,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0048e3d89ffc88f05", + "ami_id": "ami-0315b7b2de9ebe077", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9741,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e71f7f27ee912c4", + "ami_id": "ami-07578ad130ebfa1f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9757,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006e5c0d92a90a012", + "ami_id": "ami-0bc1c4b791c4ea5bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9773,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e09d1794b4a86045", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "ami_id": "ami-0026276d84d76af2a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9789,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d271e49b05fa263", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "ami_id": "ami-00fd33aa1da73fae5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9805,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f780028e15d9561d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-01b3a7f7013d06c83", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9821,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1e2cc3127c2d29e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "ami_id": "ami-0341d0efea1d25f3a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9837,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc5a7b6e7feb3acc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-0be20ee8b60d4f99f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9853,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd15b102909321d6", + "ami_id": "ami-06c44f00db619fa6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9869,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0197ca76037bce940", + "ami_id": "ami-080a11bb8540c0d13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9885,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f57e022b75bac609", + "ami_id": "ami-0dd726462933b6df3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9901,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0165e8e9122adf209", + "ami_id": "ami-01cf496bdb7d3f0a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9917,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0403d33ec5349eaf4", + "ami_id": "ami-0adf950f060a6c601", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -9933,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046f4743d4c1bdbbb", + "ami_id": "ami-03468c21378562de6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9949,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0de0b8304997f16", + "ami_id": "ami-08c1c269d8a6d7822", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9965,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fcc12adb431af5b", + "ami_id": "ami-0b70fab3ee2f860f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9981,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0572e71003a2534a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-00012e6b74f4e436b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -9997,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e737bd961dc8258", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-0614b7797ea3cd147", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10013,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053527204a3234c9d", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-01812f2d0a26bd2b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10029,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cee21274aa4c905a", + "ami_id": "ami-09bd77f4a970cccb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10045,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d005ae15bee64be6", + "ami_id": "ami-099a8162475b424ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10061,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f60d162d5e787c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "ami_id": "ami-04fb731131d0eebeb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10077,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c312317041848aa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-0243abac85c1e477d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10093,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc4d8e177a1cfded", + "ami_id": "ami-0f1d769b0995dc93e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10109,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028981989c5d39b9d", + "ami_id": "ami-0a2d2d9a9b852193f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10125,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0633b2dd9076036eb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "ami_id": "ami-0c29ca1b73ad0acf9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10141,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4efbe743de5f941", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "ami_id": "ami-0f0e2c0d708b41524", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10157,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008cc7a50a556a162", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09cc4a0cf12adea57", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10173,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b4ac2d7e363a36f", + "ami_id": "ami-09caed2639d24cee0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10189,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6632a378199164b", + "ami_id": "ami-0c8e445c90979d141", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10205,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fa1f485aaa22d69", + "ami_id": "ami-094b06db47abf28cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10221,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5cd946dd8efe685", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0f9a5ec1072345a7a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10237,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abd3a268c6bfa3f7", + "ami_id": "ami-06f96462695ab6bcd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10253,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088e0bcf81100506d", + "ami_id": "ami-0cb49238270b94a06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10269,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c807c656dc425547", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a5b2baceae445293", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10285,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049ab54461b7afa4d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "ami_id": "ami-0a988e0397e371ca2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10301,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e94e507a290bc34", + "ami_id": "ami-0af91903d0e704eeb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10317,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bfb8acba067ebc8", + "ami_id": "ami-0c9030dbb7c999b79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10333,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1a76d1a4133d827", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "ami_id": "ami-0d2bee698587f440e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10349,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c93ed65985658b5", + "ami_id": "ami-01a893af4ec1f738d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10365,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efa774d5e3583f50", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03a8629bccfec90c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10381,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022f752ddf5dffc2a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f7259c1766eea49f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10397,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043c838d620496a1f", + "ami_id": "ami-05fe6cc5c6b1258c9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10413,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05315854f4262b8b0", + "ami_id": "ami-0c28dc881b14ac7fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10429,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01812f2d0a26bd2b9", + "ami_id": "ami-01efd1eafdd5761d0", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10445,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bf5a686bf991e56", + "ami_id": "ami-040b54b3015a22179", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10461,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d93505cf70b033de", + "ami_id": "ami-04115c70018896c7e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10477,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9a5ec1072345a7a", + "ami_id": "ami-0ece152aaefc82ab0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10493,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b582b0ddba1d19e", + "ami_id": "ami-071426d0e96bdd5bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10509,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096eed8d9b97952c4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-0edea9d91a50ae629", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10525,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0005a2ec35d75dd82", + "ami_id": "ami-03bd845e00281e416", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10541,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f016c4f257f4db6", + "ami_id": "ami-044f4808f16b19a47", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10557,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0330e589c819ddd4a", + "ami_id": "ami-0afb2f3e44773d486", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -10573,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd7ae192deaa23a5", + "ami_id": "ami-0c99d660b2e9b456b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10589,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d36319a320d0d2f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dfc8dd3dcd878121", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10605,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c44f00db619fa6d", + "ami_id": "ami-0c635e3dd7eefb8ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10621,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf539fca61afd8cb", + "ami_id": "ami-0eb6d0cf9f82fa4e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10637,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adf950f060a6c601", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "ami_id": "ami-0048e3d89ffc88f05", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10653,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011d664945dcc404a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03eaa59100701e54a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10669,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0711a0380403490fe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-06a67fedbcd8a207f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10685,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ed7f2aeb805ff90", + "ami_id": "ami-07bbbe825bae8ff9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10701,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03afc943fae56e5a5", + "ami_id": "ami-0ffe17afccc1760c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10717,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fa3d8eed4aef6cd", + "ami_id": "ami-029e4fbae85a4474f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10733,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ab0f1c523fe0185", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0de25677910e52d6c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10749,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd6ee6b4b5efe7c6", + "ami_id": "ami-0e6632a378199164b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10765,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05180a04146377bc0", + "ami_id": "ami-026c2558528dee28e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10781,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7b6d32b2ae221c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a610def0e5883106", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10797,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d769e69a89dbf02d", + "ami_id": "ami-081f7ad8f5466832a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10813,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b3e1be3d1dff8ef", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e8a4c711377a90c8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10829,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03308357f96102ec2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-020d015cf7a90b8ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10845,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bd77f4a970cccb0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0ef98c1a9c41a4a9d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10861,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fb0d1e8cf465bcd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-051aa7f76bca8913a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10877,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094c8146ee840e32b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-03f316f12ec725847", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10893,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8096c0ee2ff236a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0ccb9cafb7a559070", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10909,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a9e8d6efadcba46", + "ami_id": "ami-0adf4574a0dbc5743", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -10925,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f96462695ab6bcd", + "ami_id": "ami-0e235c7632c9e438a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10941,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fc5fd3784bcc1dc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-094bd55977116c729", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10957,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099e7678b678acd04", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-03f48745e806a03a5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10973,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9c0a2355da09b64", + "ami_id": "ami-0e14e8792c6d27d39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -10989,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec908f24425f31e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-0ed14d292edf7283d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11005,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a6dc50273fe5127", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "ami_id": "ami-07c93ed65985658b5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11021,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc4efcbad74071f1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-02f2ef72e44e880ea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11037,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af91903d0e704eeb", + "ami_id": "ami-070635b9f645bf132", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11053,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0573985fa60c559", + "ami_id": "ami-0212764dd22354e6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -11069,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082c7ab3cd6291d65", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-04ed1d585f15de355", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11085,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7338877eaa34273", + "ami_id": "ami-0fd9d599a1d2afc04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11101,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a74725fbb49cb48", + "ami_id": "ami-004351b7a304612cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11117,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0530697ddaad7384c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-01b1bf9193572af31", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -11133,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6dee3b836818105", + "ami_id": "ami-04f1d2d5c05876378", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11149,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057be7c4424c84735", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-073169272c2c648d8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11165,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072e7317532069fd3", + "ami_id": "ami-0673e3bcc1324c842", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11181,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c242397746b7a9be", + "ami_id": "ami-0a052e3b557f04c20", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11197,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d89722cf74929a03", + "ami_id": "ami-0bfb830bd9e60efdd", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11213,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d4f8d432f798fb6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-0da9a1de06cdd1d51", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11229,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efc4386e1c1c180d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fcaecccabf06e681", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11245,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012cf121c3246ee9d", + "ami_id": "ami-0572e71003a2534a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11261,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057209f92a0de19e5", + "ami_id": "ami-05b0d18f5b70dee2b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11277,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e40a23e358da061", + "ami_id": "ami-038da6bfd4f22626e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11293,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdbab43acafb9f52", + "ami_id": "ami-03afc943fae56e5a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11309,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0076a60a73166ab52", + "ami_id": "ami-0bc3385f8a72f4c5f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11325,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6f28d32ec95a49e", + "ami_id": "ami-07efdd474c3fd897d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11341,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037df8e9c39a6177f", + "ami_id": "ami-090ee8d813a3b4f8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11357,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b084ccd8ac70ede", + "ami_id": "ami-043c838d620496a1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -11373,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bbbe825bae8ff9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "ami_id": "ami-085b6134ed3346d22", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11389,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c1330fad355dd6d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05b93f828edd15e66", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11405,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c28dc881b14ac7fd", + "ami_id": "ami-0671f0fee16d025d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11421,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00886b6e5ae5c9fb2", + "ami_id": "ami-0ac6439c810631c8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11437,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf8bb35461937b76", + "ami_id": "ami-046bf8695d4c7412f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11453,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0394500e4e871b2e0", + "ami_id": "ami-06bfb8acba067ebc8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11469,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046fc8a5e7e972c5e", + "ami_id": "ami-00537e9f3c7ab05a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11485,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04aac7c64e1b4a9bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-0d36319a320d0d2f5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11501,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d9c61ee821e42c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "ami_id": "ami-0f0c62e8b4902647e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11517,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09674a935271df9fa", + "ami_id": "ami-063a4d55d6f35715a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11533,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f271a4568030f3a", + "ami_id": "ami-099e7678b678acd04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11549,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012a9c0951b76619a", + "ami_id": "ami-0132333ec62d90f4d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11565,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01088f23e721619df", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0d5164e3a66d7cb63", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11581,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a238d4676cf8a24", + "ami_id": "ami-0c547531d50ab33ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11597,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e70db269ed1b814", + "ami_id": "ami-0c47d5b2f673d5612", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11613,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071141d4637827336", + "ami_id": "ami-0bdbab43acafb9f52", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11629,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f2ef72e44e880ea", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d18a8ffb82444c1c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11645,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c87c7e33d1a5a10", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-02702bab4efc6667c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11661,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010e7ae61c3646d10", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b737ffb686a36b9e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11677,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07578ad130ebfa1f6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "ami_id": "ami-030d3b89c91b6dbfd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11693,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0e2c0d708b41524", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-0f904a6ccf982724f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11709,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fac6d885958b68ae", + "ami_id": "ami-0e4a5e3415982a6c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11725,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b3ac9a66b1bb7f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-046fc8a5e7e972c5e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11741,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07efdd474c3fd897d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d5f3272ddb489532", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11757,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a12e1561558dd78", + "ami_id": "ami-060d648204e3c7187", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11773,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2c79899140af0e2", + "ami_id": "ami-046c43c1a610a9449", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11789,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05128e1c71e4f4280", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a4debc7543c63844", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -11805,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f23b9821338874cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d806b523361d9ddd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11821,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044f4808f16b19a47", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "ami_id": "ami-0cf8bb35461937b76", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11837,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5c476c5a335f3b9", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-08cd250a4bbf2e610", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11853,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aeea4e0dd6d4856e", + "ami_id": "ami-0ccf9c0052bc256ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11869,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0140ea9c264424170", + "ami_id": "ami-09c9c7ec906adc1e7", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11885,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef0140712c4a3a2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "ami_id": "ami-0fa23d210cf918d1a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11901,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffe17afccc1760c0", + "ami_id": "ami-06526fda46b75f165", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11917,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02702bab4efc6667c", + "ami_id": "ami-0afcd55f003d322b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11933,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d24d7241bea00b43", + "ami_id": "ami-096eed8d9b97952c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11949,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07944fa34f6e155d6", + "ami_id": "ami-011d1017d8342d198", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11965,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07cf6f2469c657432", + "ami_id": "ami-04c69e99e4f064234", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11981,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025639c215a13191a", + "ami_id": "ami-03a87edd98e8035a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -11997,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06526fda46b75f165", + "ami_id": "ami-0fe563b5cbb94c06f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12013,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072cb95f0532671b4", + "ami_id": "ami-069ffe9e97205eeb8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "640558152053", "platform": null, "public": true, @@ -12029,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004df3695115904a5", + "ami_id": "ami-0a50c4e5f02b9b8ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12045,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05eaf23803f9465ff", + "ami_id": "ami-04f271a4568030f3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -12061,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca9c0a540ad33dc0", + "ami_id": "ami-0c4ac3e1385aec74a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12077,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc1c4b791c4ea5bd", + "ami_id": "ami-0f686fd5c681de0bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -12093,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a7d39ec982570c3", + "ami_id": "ami-036a719759f6f672c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12109,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f7e68acbf75234a", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-0b918ac194abd95f1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12125,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0566ce8d5f0c467fb", + "ami_id": "ami-066e950b57da48f37", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12141,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8df6c5844c259f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-073c181d4d59cc8bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "640558152053", "platform": null, "public": true, @@ -12157,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd9d599a1d2afc04", + "ami_id": "ami-0298289c2e3ca21cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12173,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d1d02bfdd28faff", + "ami_id": "ami-0ecdc3baed602093d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -12189,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a894187d8dab7b9", + "ami_id": "ami-0f585ec70257ab0e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12205,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed14d292edf7283d", + "ami_id": "ami-0998223bb9553caf0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12221,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04aeaead1781b3550", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-007a3bee0ad16bdb2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12237,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047693ce3560b17e5", + "ami_id": "ami-06ad3ed6cc7b92ddb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12253,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdacab9d27830124", + "ami_id": "ami-0314cd5552e46865a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12269,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b2ec52bada5761e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-03405ad6dbdb5ad25", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "640558152053", "platform": null, "public": true, @@ -12285,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aceb2468b899dbb7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-054741de77fad89b4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12301,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeea8983962ef325", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-02255304b482256df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12317,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d21f539ca87d6d1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-0e4d5cf6c0e6a0daa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "640558152053", "platform": null, "public": true, @@ -12333,6 +13732,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json b/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json index 5be1ee9ea138..5a8adc06e56d 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-east-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-099301d0dd2ec9614", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02332ae2a02fb9af2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0449aa4ed7eb4d866", + "ami_id": "ami-063398b16b3936450", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069abd341ccce757a", + "ami_id": "ami-06ebcaaf489bc93a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dabc3a94d6e7cfc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "ami_id": "ami-08ccfe0c1a7049b77", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e7b9615e9d4f868", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-04679c9a73e51eb4f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0587103265e5ca42d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0a0de4f7170ccc873", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e62516dd70eb5bd9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f463394340acadb3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fdf573fd6c32999", + "ami_id": "ami-09b8d68a22930c4eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5973b659dab6d22", + "ami_id": "ami-03cf5d326fa9f79aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9d0bcd14ff4c5f0", + "ami_id": "ami-01a1b21e837d3f66a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07980c8b90ceae60f", + "ami_id": "ami-0c3d854d4a24ff64e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011ecba9c6d097187", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-0f1542cf81b90be1e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae281baebb746a09", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-0a86fc88f690c9e08", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc45c0d30b6f7742", + "ami_id": "ami-02468fe0f010a5fa9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047ea035729cf7106", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-061ec2161c1f4ec83", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc65f4de7569b2ba", + "ami_id": "ami-0aad9ee84cc491ac2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a33bf45a229dadb8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "ami_id": "ami-03168d13bfc7eba08", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f49f21da2acaf2b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "ami_id": "ami-0f93ce4c47c381ed3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a60657af2c8e218d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "ami_id": "ami-02d8c174a27104ecf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2a8c05b8eafc4de", + "ami_id": "ami-05383ea897f4fc1db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed3f2a65ed86607c", + "ami_id": "ami-05c2716639c89830c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095f9c76a627e2094", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-02e7b9615e9d4f868", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0981c8ab389a661ec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-011ac343654cbe7aa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043a06624ef009e20", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04c877234456ef418", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00035b4ad2ed1a5e4", + "ami_id": "ami-026f4f632d21865cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e774a74d9f9c779", + "ami_id": "ami-0d11d0013e645620a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09851c81d1889d6a4", + "ami_id": "ami-03e6364be6e1869ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce3d235459e63e82", + "ami_id": "ami-0019caa960c67a4ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0019caa960c67a4ac", + "ami_id": "ami-0516bee3e9aa7cbf2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0ee543e38920359", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-06b54402f931ad867", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3b1dea76bcba654", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-04db0d68df1a62558", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0135964a71e3c68c8", + "ami_id": "ami-09769e1a58dff64f4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0062f2b02f5985a41", + "ami_id": "ami-0abcbf138e274baa0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0681f002ee90a0758", + "ami_id": "ami-0b0abaaca1a89803a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c15ac8844c2c34d4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e6c00f7de099be6e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee8e6af4dee72487", + "ami_id": "ami-04091e47aa9d33198", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067339edd33cef029", + "ami_id": "ami-04e688c046d8312df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00aac3e4ab34a86b7", + "ami_id": "ami-041ccec6bcba0965d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06906c8a3dbc96c06", + "ami_id": "ami-0e26cecf2dc467d14", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0143176203e51d774", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-047ea035729cf7106", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ef3fa3d05617040", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-0fb5726455c8d3509", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f464fec95abc18b1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-0fc37822f4b6fc287", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c44129173c02cd27", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-0c199e581f456f5d3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3dd30ea1a06cc1c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-09b39ce5d102bb590", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bc233b4d030634a", + "ami_id": "ami-0d3536d82da06e790", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d40e2d19610a2c5", + "ami_id": "ami-0649c84819cbb5d5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b59545185ecf4a42", + "ami_id": "ami-0f53ea131e5c0278d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3536d82da06e790", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-04eabbd4a587ed39e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f53ea131e5c0278d", + "ami_id": "ami-0f396e61e1f4cfb25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04695414afcf61dfc", + "ami_id": "ami-0676c9d238828beb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a96483a01782be4a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "ami_id": "ami-0f8365acfd511bfaf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059787c3294f0cdda", + "ami_id": "ami-0825cb606b6d47a6e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d41e1df08cdc043", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0408000cee4b0aa61", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f6211050ab94d48", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02521b2086b92bf60", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069616a3f7806d00e", + "ami_id": "ami-0015127c7a6c9e398", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0285b329981b672e2", + "ami_id": "ami-0385b373aab4c2a8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02873da33b9a4fc49", + "ami_id": "ami-0ebf52f5c73350d23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065936aecc9a0fa18", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-08918544646537f64", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002462b60f65e3932", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0135964a71e3c68c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5d65ab3a6e86e54", + "ami_id": "ami-03f92554635d220a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe4141fca297779b", + "ami_id": "ami-002c6c5f72bedd2b4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a79d42ec9db2f1b7", + "ami_id": "ami-063162857e414fbcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03192d5de86c6e236", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-092f913fa69a35852", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003eafbce4399d043", + "ami_id": "ami-0a87664dc8fe0c7d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054913b56a51c5e2e", + "ami_id": "ami-03e319b6c5ddf8ad9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f94a96f5ed539604", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "ami_id": "ami-09a36aec350ab2229", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03538bbf42c8d7fcc", + "ami_id": "ami-08010debc3a6c3b27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041ccec6bcba0965d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fefb8637c0ac04de", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6367eaad0faf659", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "ami_id": "ami-03bd14405ab1b0154", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062505cebd31f0f3d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "ami_id": "ami-05a53a974aa77b5d1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb4e4ab6dae97ad4", + "ami_id": "ami-0351cb504acd79c75", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a36aec350ab2229", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-075648075a899ac63", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0827449e7288c3eaa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e99e4ac1f6f546de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f6886a25c4ca370", + "ami_id": "ami-057fe54e8b3c6baa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0644cf9f4a1debd87", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-093e7e7ffb5c2a06a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a5bb17a02aba84f", + "ami_id": "ami-0c72baa916d9ff320", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05934442de8cfe933", + "ami_id": "ami-0eaa6150ff18c15bd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064427a3a31c69719", + "ami_id": "ami-0a04367a2f16615bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04091e47aa9d33198", + "ami_id": "ami-04d511840a5c15993", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d942d35ea2bea9e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "ami_id": "ami-0e5330df4b075a9fe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05997bf0a742d4925", + "ami_id": "ami-0579e15eb900eba6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d705415ea2020779", + "ami_id": "ami-00035b4ad2ed1a5e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ce95da96c1b8b35", + "ami_id": "ami-05b26fdd87df012c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084ffdabdc678292f", + "ami_id": "ami-0900d76909d31e4e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0864c17a8e78ebce7", + "ami_id": "ami-0c2a8c05b8eafc4de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b65dab5853311176", + "ami_id": "ami-0070ccd921ee9c95c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041384700bf8405c5", + "ami_id": "ami-02252d984c7e3595d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a04b7eab6d8fe2df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e43c9159aa3c1e15", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb2e73ede1df3d8f", + "ami_id": "ami-010664b4166ad98a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf0493cf0e444cfa", + "ami_id": "ami-0163b2ea8413feab3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01491d7d619170b60", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-04389118226e38849", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04389118226e38849", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0d68db6184efa9cd1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0094211cda7d66173", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e7cd20e258146099", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084890a7373498109", + "ami_id": "ami-03cdb554bd2b18a82", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0845b1604dd4a08c2", + "ami_id": "ami-081b7e40c285efdda", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03494bb6f22f3ad0f", + "ami_id": "ami-0c426513b8ef49f27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b2dc364ca38f23c", + "ami_id": "ami-0f0ee543e38920359", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0459045381e3b3d3e", + "ami_id": "ami-0dc65f4de7569b2ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055711e802352a0a9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "ami_id": "ami-055357babdfa5b19e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058ef492546ad38f7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-0b4e3231d6df4c92c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a933e1aa3720698", + "ami_id": "ami-05c9bd0fcee6b2495", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0593a7efb1b79b714", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01d705790390c5bef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f880cc379d193af", + "ami_id": "ami-066ceb36d1c2033a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0018092d5639b97ab", + "ami_id": "ami-000dbd1f565db2d12", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d68db6184efa9cd1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-0e62516dd70eb5bd9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0a9adcba4c19b8e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0827449e7288c3eaa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048909f34070ba0e1", + "ami_id": "ami-0dff8c438ad05a3a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bf9dda25f41fa22", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0917949157ce189f6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03768500778b42ca5", + "ami_id": "ami-07ea86bdb786ffe18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098921f504044c817", + "ami_id": "ami-05527f18b5a74ddd8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bd260799af0852a", + "ami_id": "ami-092f491257454b2e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092f913fa69a35852", + "ami_id": "ami-02e12b267878d92fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a4bc5c83ed3e918", + "ami_id": "ami-0d8fa0a8b78b25785", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be1891b40fbd5e94", + "ami_id": "ami-0003a62076aa0c9ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0938ad5ecad163de6", + "ami_id": "ami-097bb5345b9af913f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b98bda1294b72d64", + "ami_id": "ami-028e9bdc80ac4658c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04679c9a73e51eb4f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-0459045381e3b3d3e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0337bde5c75e0259e", + "ami_id": "ami-0c8c3b4eee040a6b6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d393f57e39c5e25", + "ami_id": "ami-096044727939d5ce2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f6023c1d772938d", + "ami_id": "ami-080e6f9fdc6d2d035", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05527f18b5a74ddd8", + "ami_id": "ami-0c1ad878e8a1499b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aad9ee84cc491ac2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-025615be903a12e6b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02332ae2a02fb9af2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-0aac5cd663896aeee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f10a0801aff4b10c", + "ami_id": "ami-0deb59dc0c53bcd3f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab70f8bd0c501ce1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-01083052d2e973556", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cefb1f6b149dc8ce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-009521f5890271ad1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e26cecf2dc467d14", + "ami_id": "ami-084577859c26b5cad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dff32b08f41bd0e0", + "ami_id": "ami-0a8c5f3a25ca96136", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da282b208d35a847", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-055711e802352a0a9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0009a19dfe47f1413", + "ami_id": "ami-08e9fef56874b00e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d5803e52af6882d", + "ami_id": "ami-0595a53337a9307d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081b7e40c285efdda", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-07842a4e3376fcf13", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7e72a6176cd9811", + "ami_id": "ami-00384f6078a0a18a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0276b68bd05f75c95", + "ami_id": "ami-060e75303a332ae55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02468fe0f010a5fa9", + "ami_id": "ami-03b88b97a52835709", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011c2c14e8bc247ec", + "ami_id": "ami-0899967548d55c0ce", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ea8426c3bd7441f", + "ami_id": "ami-0f8d5ec531e9290d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041eb5e03d392a131", + "ami_id": "ami-040a7c25d2783c41c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd6161d5701a2e75", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "ami_id": "ami-0e21bfe80b613041a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04584a58ca223e184", + "ami_id": "ami-0a76da13e0dc877d1", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d749126cc31ec820", + "ami_id": "ami-08c7b422bbe74b251", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1b0ee11e41aed3d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-003eafbce4399d043", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2269,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ea6cbe393f13736", + "ami_id": "ami-0ffd6db77f05addcf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2285,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0927f5082c82091a1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-025cfb922999de549", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028003468a8dd255f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-0d920e1b3cecaad58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b89a7b8b47f3522a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "ami_id": "ami-0d749126cc31ec820", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036a123f156e65985", + "ami_id": "ami-07c01d515dd225e53", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b64ced8712d8d93", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-09b129d4f7686ac92", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040dbc711ec3afd8c", + "ami_id": "ami-0dd8f8c4a2baad0e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059462ec2cd08f781", + "ami_id": "ami-04bf39b1bc112d601", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b78d9358c9c7d6d", + "ami_id": "ami-0bc7acc76d7f52884", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed946f80f0e889d0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-05bfb1f0113c8006a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063162857e414fbcc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0845b1604dd4a08c2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0341552b0459e275e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0990969bfe768f329", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c30eb5a1fc192f75", + "ami_id": "ami-0ed946f80f0e889d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0240f05e143a39075", + "ami_id": "ami-0bf0493cf0e444cfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063106e5418bb3c38", + "ami_id": "ami-026585324f8047b90", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075106a821ebb3f1c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "ami_id": "ami-03d0adf84e296813b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc6f26cc954106a5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-044a05965eb71371f", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079a6bdfb437c6a0d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ed2d504135985f57", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061c2a0dbb2b80813", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "ami_id": "ami-0f5973b659dab6d22", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2573,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d42f33e8800f638f", + "ami_id": "ami-0322456df4829a16f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2589,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097bb5345b9af913f", + "ami_id": "ami-0bb6b2c20c79249d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2605,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c21dea37f991cda1", + "ami_id": "ami-0daa3641c1416b782", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2621,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00298690d5879e2f5", + "ami_id": "ami-0bf82190073a786f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2637,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ea680bd5f78c008", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "ami_id": "ami-0d705415ea2020779", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2653,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d434c82fee1c98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "ami_id": "ami-02809fe6fcc23ea4b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2669,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b34a4c5654df318b", + "ami_id": "ami-04b9d52fbfa4763d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2685,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c8022367b0673d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0e149c96678445f36", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2701,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c426513b8ef49f27", + "ami_id": "ami-0aab0ad803f08c986", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2717,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e82b00f788b3e0b", + "ami_id": "ami-0efc42c708d9e3f8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2733,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0626b9c2e837f9e52", + "ami_id": "ami-0864c17a8e78ebce7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2749,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0825cb606b6d47a6e", + "ami_id": "ami-0e9423594f153558a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2765,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebd3fcdab79eaec6", + "ami_id": "ami-004e6d3c07109b230", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2781,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b8d68a22930c4eb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-01adf64ac462ddd47", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2797,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7f60679a042f957", + "ami_id": "ami-01cd075cff3e29675", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2813,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ef62bb6968c1e74", + "ami_id": "ami-08fd4157756be2564", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2829,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a1b21e837d3f66a", + "ami_id": "ami-0c6b286a1785b50be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2845,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0baec0a8bd21d2ebe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "ami_id": "ami-0d736adaa0d06004a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2861,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08010debc3a6c3b27", + "ami_id": "ami-0f86edf6193519111", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2877,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0250392c4994bc61f", + "ami_id": "ami-032592096a94e8bac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2893,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbaefe19d2bea21c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08d942d35ea2bea9e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -2909,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091b3007a73dd3d8c", + "ami_id": "ami-0e315796cdc00eaf6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2925,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09961eb6842a63f5e", + "ami_id": "ami-0329368c3bf715b96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2941,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093e7e7ffb5c2a06a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0af811c48f7172abc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2957,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011405d85cc6028e6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-0ba100e9131ba5dc5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2973,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e8b34e65a51ec5b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-041384700bf8405c5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -2989,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a33a4eb0fed03da2", + "ami_id": "ami-04a5bb17a02aba84f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3005,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031ad61137e0bc3a1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "ami_id": "ami-0fe7b73768f014f72", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3021,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2bac217704acfce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-03c6d566cbbf62de0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3037,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01083052d2e973556", + "ami_id": "ami-0c04bba9865209c8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3053,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f3cbcd44ee2c9fb", + "ami_id": "ami-0f842781b5639f950", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3069,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a39c27ab33824e4d", + "ami_id": "ami-0d20e886c040c7dfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3085,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c6d566cbbf62de0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-028a0cd9e6054c919", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3101,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040a7c25d2783c41c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c845021a6d6b284a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3117,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080baf8ae9ff13655", + "ami_id": "ami-0ce5c3573555e15f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3133,15 +3328,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af21c1c4bd49f39d", + "ami_id": "ami-0f062b069c6c5de25", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f5f4b585fbc9f215", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -3149,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac4bbb2e22ce8f7d", + "ami_id": "ami-0afbcae2ce9de2797", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3165,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e149c96678445f36", + "ami_id": "ami-009da939b2098aadb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -3181,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0639cf444fd5a1383", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-03cfa44d08d1ac309", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3197,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a50df91797c2441", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "ami_id": "ami-031a22187cf1ff556", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3213,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039ba22e26efc5968", + "ami_id": "ami-0aa5f9ec04088c467", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3229,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ceab211e70e5a665", + "ami_id": "ami-0b102b328e609e1df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3245,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04dcc1dc5edf5a47b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-07fc00de96eeb3206", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3261,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ba074b7204bc4fe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0817ffaccc7248709", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3277,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06969aae4e32b2418", + "ami_id": "ami-052cc8d3aea01c266", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3293,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c505f9f7466e117d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04f0ddbd22c3eb4d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3309,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bf39b1bc112d601", + "ami_id": "ami-0f48113da4d4650d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3325,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed2d504135985f57", + "ami_id": "ami-03e774a74d9f9c779", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3341,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0397a003afe341ef0", + "ami_id": "ami-0f69a619186b42f71", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3357,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c533a569092338ab", + "ami_id": "ami-0940120b5b09be296", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3373,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d736adaa0d06004a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-069abd341ccce757a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3389,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f7765ccaaa54afc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-097d4041da10f316c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3405,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0debdfcd568afc157", + "ami_id": "ami-091b3007a73dd3d8c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3421,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081bde1d3504c5a5c", + "ami_id": "ami-0c4ee923e0c6be825", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3437,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065dfa37efd7fce05", + "ami_id": "ami-05a50bf30a602b3e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3453,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdfad2de56506738", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "ami_id": "ami-07f1e9a6b1a1e7e22", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3469,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e04fc38119e24a83", + "ami_id": "ami-0ad06756f8b6eaa68", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3485,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083f751f6f801e2c4", + "ami_id": "ami-01fd54fd5c7b132db", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3501,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e069f28244902b22", + "ami_id": "ami-05702f3e9e66e4a83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3517,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3d52f81ef0c86a8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-08c74275cfc821cb7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3533,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ecc36b66f4ef02f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-0efcfed1c6c9e0932", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3549,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0003a62076aa0c9ed", + "ami_id": "ami-0f41b961d074ebdb1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3565,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00be61003d88c544a", + "ami_id": "ami-0ad0b2d9f8c18c778", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -3581,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039048b51e6c55a34", + "ami_id": "ami-0f39f6fd48d756867", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3597,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b7f3dfd195ada5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "ami_id": "ami-01e0f5a29e91d6ad4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3613,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0478a59a70b2c402f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-0927f5082c82091a1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3629,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cd075cff3e29675", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6367eaad0faf659", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3645,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084cf1a1ec61de0af", + "ami_id": "ami-0fc45c0d30b6f7742", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3661,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a6706bd249258b5", + "ami_id": "ami-0c505f9f7466e117d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3677,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014d7efd6547d9a60", + "ami_id": "ami-08971ebb60e4906f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3693,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b236792f01b01f00", + "ami_id": "ami-07fdf573fd6c32999", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3709,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e7e4149ca4e17a4", + "ami_id": "ami-083abb08ed315cb90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3725,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e315796cdc00eaf6", + "ami_id": "ami-0c6b2177873251123", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3741,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3d854d4a24ff64e", + "ami_id": "ami-01788344cf8eb122f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3757,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c9bd0fcee6b2495", + "ami_id": "ami-0a4fbf7f8b0db42a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3773,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbbf2550d400081c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-0c423a22a6a50511d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3789,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dff8c438ad05a3a7", + "ami_id": "ami-04ce95da96c1b8b35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3805,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c9692cb940ce75c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05108c90eb62a1771", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3821,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deffd6f3312f2ec1", + "ami_id": "ami-0dd2d56c1fc2291ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3837,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dd6ffd5b6ea1b12", + "ami_id": "ami-082da16b9f025ebcb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3853,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011ac343654cbe7aa", + "ami_id": "ami-01f4bfc23acac6831", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3869,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f0589b3b24bcb07", + "ami_id": "ami-07b0a1132ac59453a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3885,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e37327fbe85e38c3", + "ami_id": "ami-0062f2b02f5985a41", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3901,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efc42c708d9e3f8d", + "ami_id": "ami-097859aade08c08ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3917,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085bd251463d70785", + "ami_id": "ami-014f30b51b9d3b2b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3933,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d20e886c040c7dfa", + "ami_id": "ami-03a6972b7b2d1dbcf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -3949,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b7683b7d8b1e6af", + "ami_id": "ami-0559c9e3ac3557cbe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3965,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067e77c5d74f989a7", + "ami_id": "ami-0822e32dedc03e193", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3981,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0121576ccf78a7802", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-0337bde5c75e0259e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -3997,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db3be235bc0590c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-0961b6ae44804072d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4013,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db55c2cf6c6f3770", + "ami_id": "ami-0ab5b96612446fcfe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4029,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b86044a959e3357c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "ami_id": "ami-05e8b34e65a51ec5b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4045,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082da16b9f025ebcb", + "ami_id": "ami-092ad8e95f117047a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -4061,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01564ed81302ef739", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-01cda42836b3aa423", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -4077,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0043d910c89aa17ad", + "ami_id": "ami-05e79c652680a3a45", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -4093,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0169d18988da4a660", + "ami_id": "ami-0716e14edd84956e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4109,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bb50e3a80487cc0", + "ami_id": "ami-0f6ed46c24b5c0854", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -4125,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00be37238356aa075", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "ami_id": "ami-095d5cf97acf212aa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4141,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064087d81128ffcec", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-0cbbf2550d400081c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4157,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0832a6beb16e40a5b", + "ami_id": "ami-0f527454bb13225fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4173,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce4a02adbd0783e2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-06cbc2ea9222a9f30", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4189,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e97f80243f7262d", + "ami_id": "ami-0f4095ad7380c1336", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4205,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3715744db0c725a", + "ami_id": "ami-0a78f7457a925be01", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4221,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a76da13e0dc877d1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0003c72ecaa96aa7c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4237,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0588a03eaee9fc754", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "ami_id": "ami-0816edf457fec8cdd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4253,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5ef2fbe55de0835", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0229dbf47de66d953", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4269,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0408000cee4b0aa61", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "ami_id": "ami-0c220d3742f66fdfd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4285,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04395b6b57569cf99", + "ami_id": "ami-08ad2e524643401fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4301,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e6364be6e1869ca", + "ami_id": "ami-0a5d65ab3a6e86e54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4317,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fbf7f8b0db42a4", + "ami_id": "ami-0aa69bd059c48ea84", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4333,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ba8538adab68c66", + "ami_id": "ami-0d16b3cc0c19e3c6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4349,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ff48a91a237514a", + "ami_id": "ami-095bd92c6a6d0f952", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4365,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe7b73768f014f72", + "ami_id": "ami-0fdfad2de56506738", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4381,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a451777a6de50e65", + "ami_id": "ami-0d945ab95e9b0a106", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4397,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d11d0013e645620a", + "ami_id": "ami-0b89a7b8b47f3522a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4413,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4095ad7380c1336", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-04c39d53819d0b392", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4429,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a42c83adc61e6d7", + "ami_id": "ami-08337ad8dd7f6ac6a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4445,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a6972b7b2d1dbcf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-052f76e9c67b866f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221025 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20221025-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4461,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffd6db77f05addcf", + "ami_id": "ami-0e37327fbe85e38c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4477,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4fea1cde469519f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "ami_id": "ami-0bbaf09e8f7f8b417", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4493,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd2d56c1fc2291ee", + "ami_id": "ami-0ca3b484534ab1bc9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4509,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0808d03a1f0a73f66", + "ami_id": "ami-0018092d5639b97ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4525,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0caa9fbe0b3b2fd47", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "ami_id": "ami-0ae281baebb746a09", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4541,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022107441225782b7", + "ami_id": "ami-052e29e067a9de1e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4557,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5f8053d341c79ae", + "ami_id": "ami-0db55c2cf6c6f3770", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4573,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dde619cbe8e30f0", + "ami_id": "ami-0a0391a2a394787f1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4589,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f396e61e1f4cfb25", + "ami_id": "ami-084890a7373498109", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4605,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01faa577a9505767a", + "ami_id": "ami-0cb5b14c21ea5be6e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4621,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f93ce4c47c381ed3", + "ami_id": "ami-0ed5ab776f11c4e96", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4637,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e27f3571ddddc67", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-05934442de8cfe933", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4653,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f842781b5639f950", + "ami_id": "ami-0b65dab5853311176", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4669,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009521f5890271ad1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "ami_id": "ami-08bf9dda25f41fa22", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4685,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a86fc88f690c9e08", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-0af21c1c4bd49f39d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4701,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000a1dd4e93db7a4e", + "ami_id": "ami-0373dcfd336664d7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4717,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b9a97d481813fd5", + "ami_id": "ami-085bd251463d70785", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4733,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042011b730db69976", + "ami_id": "ami-0b34a4c5654df318b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4749,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095512251ffce59ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "ami_id": "ami-0c7e72a6176cd9811", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4765,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f727d294cb8ccbb5", + "ami_id": "ami-0b0a9adcba4c19b8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4781,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028e9bdc80ac4658c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "ami_id": "ami-0e54b2e8b44dd885d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4797,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087116a12783facfb", + "ami_id": "ami-059787c3294f0cdda", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4813,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2783a35e5033b2a", + "ami_id": "ami-0cc00d9daf6443a0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4829,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09defcbc907ea3cf6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-032ddca1e3f30668d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4845,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e426fc6963ff5c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-06338c01af25be69f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4861,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05db782977a8c4fda", + "ami_id": "ami-01dd6ffd5b6ea1b12", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4877,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000dbd1f565db2d12", + "ami_id": "ami-04393b9a6d6e8fa56", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4893,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005ec0034d80f58f2", + "ami_id": "ami-09d957614a1b4afbb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4909,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa5f9ec04088c467", + "ami_id": "ami-04a2253f4000b6761", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4925,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6efd82d4ee228b4", + "ami_id": "ami-0d73c06e2b3d14023", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -4941,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a467328bdc99a6de", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "ami_id": "ami-0ed717dadcf20f6b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4957,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b927fc550a900f8", + "ami_id": "ami-025966c2d78149d15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4973,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf606008cb5a369d", + "ami_id": "ami-0a3715744db0c725a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -4989,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4add3e8184693ec", + "ami_id": "ami-03538bbf42c8d7fcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5005,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d16b3cc0c19e3c6f", + "ami_id": "ami-031ad61137e0bc3a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5021,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0d08d2f89d4cbdb", + "ami_id": "ami-0589c961583e88dc0", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5037,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9068dbbbf8bb070", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-07dde619cbe8e30f0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5053,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092f2632bf87dcf39", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-091554d0371917bee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5069,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02521b2086b92bf60", + "ami_id": "ami-029b6c75713b74af9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5085,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006f50588b2b51542", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "ami_id": "ami-00dabc3a94d6e7cfc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5101,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e319b6c5ddf8ad9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-032fa250f6d9da8f2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5117,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a358b79eea1cd46e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05f38fec1d505ce43", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5133,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014ed64e7cd696beb", + "ami_id": "ami-0f94220b5f6dc25d6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5149,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f367647009a5fbcb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-0d338489dc33030e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5165,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3da60ae8e8b8a81", + "ami_id": "ami-0b2bac217704acfce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5181,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025cfb922999de549", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-0f367647009a5fbcb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5197,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05763f6c68783b170", + "ami_id": "ami-063106e5418bb3c38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -5213,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b5be4613d96334e", + "ami_id": "ami-0a45a9b568259a677", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5229,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09123ab084827c297", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-05bc233b4d030634a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5245,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044a05965eb71371f", + "ami_id": "ami-0ed3f2a65ed86607c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5261,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070211c24fbf3b059", + "ami_id": "ami-0094211cda7d66173", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5277,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b7e6035b7ce0cdd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-04b9a97d481813fd5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5293,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4285663101d9fc0", + "ami_id": "ami-0d17bee971b5b7271", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5309,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0817ffaccc7248709", + "ami_id": "ami-054913b56a51c5e2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5325,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0468350a0f3701217", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "ami_id": "ami-0ed43c0a8a305b667", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5341,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c72baa916d9ff320", + "ami_id": "ami-0e069f28244902b22", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5357,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0961b6ae44804072d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d42f33e8800f638f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5373,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0960ff5fa05cf8af1", + "ami_id": "ami-00be61003d88c544a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5389,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1f80565b74402f0", + "ami_id": "ami-0a6c6a0d3ed4d1ee2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5405,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0daa3641c1416b782", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-0d44202cc78a8d41a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5421,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b235a07acf65d70", + "ami_id": "ami-0121ac62cef6cd38b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5437,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082481df64b006389", + "ami_id": "ami-0f6ee7a4ecb6022f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5453,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a49a4c286b46f5a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07e0953b030bd34cb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5469,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053fbb6bbe67d3919", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "ami_id": "ami-0f3b1dea76bcba654", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5485,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b7f561edd57e36c", + "ami_id": "ami-0a7ac3b2066e63352", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5501,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f38fec1d505ce43", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "ami_id": "ami-08103cb54209bdae7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5517,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eabbd4a587ed39e", + "ami_id": "ami-02b2eb0b4ed7d9d88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5533,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d86d8f4a39f85d3", + "ami_id": "ami-0e749bd7b5f65a077", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5549,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0579e15eb900eba6b", + "ami_id": "ami-0c1f80565b74402f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5565,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0775ef3a0a644d149", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-0d7116208110b5d1b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5581,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0072e4cf363f65ab6", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-013f0e9482e0d713c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5597,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07842a4e3376fcf13", + "ami_id": "ami-0f10a0801aff4b10c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5613,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c7b422bbe74b251", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fa530797a166adea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5629,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6ee7a4ecb6022f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-095512251ffce59ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5645,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af811c48f7172abc", + "ami_id": "ami-0072e4cf363f65ab6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -5661,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0229dbf47de66d953", + "ami_id": "ami-0159c3f769748a68e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -5677,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a903c52a7a5a89b9", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "ami_id": "ami-06af94c11c0d3e455", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5693,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d705790390c5bef", + "ami_id": "ami-0feee3e8247260fa3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5709,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0649c84819cbb5d5d", + "ami_id": "ami-0250392c4994bc61f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5725,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09555c334e87e1b5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-082481df64b006389", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5741,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029b6c75713b74af9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-078909fbe6be7dad2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5757,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e88b28955e3e5044", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0a467328bdc99a6de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5773,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aab0ad803f08c986", + "ami_id": "ami-0a9d8c3d666c420b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5789,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf812933a13a443e", + "ami_id": "ami-02b7f3dfd195ada5a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5805,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eacb9338102efa03", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-041eb5e03d392a131", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5821,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbf8abf16c73c83b", + "ami_id": "ami-0c72f1bd4787533f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5837,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042e8051e6ae5871a", + "ami_id": "ami-0deffd6f3312f2ec1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5853,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba19f1616d60c3c7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-005ec0034d80f58f2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5869,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6b2177873251123", + "ami_id": "ami-0db3be235bc0590c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5885,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035b30703daa9fb01", + "ami_id": "ami-05e6fe8029d7e37ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5901,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0597b468e12c6af7b", + "ami_id": "ami-092f2632bf87dcf39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5917,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0159c3f769748a68e", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-01564ed81302ef739", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5933,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06faec1deb9c7c3b9", + "ami_id": "ami-0b0107ef5fa32b407", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5949,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f33d5dc1b58ad19b", + "ami_id": "ami-0d6b155ff859f4d14", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5965,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080e6f9fdc6d2d035", + "ami_id": "ami-010ae42b3ea319737", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -5981,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cba1d5765c79a10", + "ami_id": "ami-01199b027f05a59ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -5997,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fc00de96eeb3206", + "ami_id": "ami-02d86d8f4a39f85d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6013,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029ab293d713f9eb1", + "ami_id": "ami-0582d8da312b21697", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6029,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d77dbbace5dfd94d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "ami_id": "ami-039ba22e26efc5968", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6045,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08103cb54209bdae7", + "ami_id": "ami-0b1d0e366bc68b233", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6061,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae5d7ed2c5d5df9d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-01491d7d619170b60", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6077,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05eb6a8448934365d", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-083f751f6f801e2c4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6093,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efcfed1c6c9e0932", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-0276b68bd05f75c95", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6109,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e976bf37b1acc88c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "ami_id": "ami-0a7f60679a042f957", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6125,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f2dbaae64c32e87", + "ami_id": "ami-0619b7bc78258664f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6141,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ed721c5ddf9d9f7", + "ami_id": "ami-075f5297a2743d1f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6157,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074d43acad7b48b3e", + "ami_id": "ami-0a96483a01782be4a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6173,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce8005900adbb0da", + "ami_id": "ami-0da12d3a99bbb213c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6189,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028a0cd9e6054c919", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", - "hypervisor": "xen", + "ami_id": "ami-0f51f72cd780e3d95", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6205,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f86edf6193519111", + "ami_id": "ami-0a33a4eb0fed03da2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6221,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d2c5db3a33b11b5", + "ami_id": "ami-08d1a45bc6e0e1132", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6237,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e2e328e9f9e3813", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01d63152d33cc105a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6253,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8d5ec531e9290d6", + "ami_id": "ami-0db5d9c5cc6118dde", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6269,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c2c786f3cd21637", + "ami_id": "ami-0be1891b40fbd5e94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6285,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c220d3742f66fdfd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-0ed72c47dcc4e9a62", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6301,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09edb35ef8b9a69d6", + "ami_id": "ami-09cba1d5765c79a10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6317,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0310475131f19b60d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-08ea680bd5f78c008", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6333,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d17fc204cb138ad", + "ami_id": "ami-0588a03eaee9fc754", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6349,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d338489dc33030e4", + "ami_id": "ami-09a950877ed428072", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6365,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f0831524c0965d8", + "ami_id": "ami-0a451777a6de50e65", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6381,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013f0e9482e0d713c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "ami_id": "ami-017e55b3a86add45f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6397,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fecaf6bae5cef855", + "ami_id": "ami-02e82b00f788b3e0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6413,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b129d4f7686ac92", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-002462b60f65e3932", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6429,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052e29e067a9de1e7", + "ami_id": "ami-0f4add3e8184693ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6445,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ec2eeaff474825b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-0bc5416baf15a2d78", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6461,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04988098b7c74c633", + "ami_id": "ami-0a3800e686fa97012", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6477,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f1e9a6b1a1e7e22", + "ami_id": "ami-0ae9fc43e2d9804da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6493,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eed68e0c24ffda6a", + "ami_id": "ami-016035e8f1e7f6475", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6509,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f5a77f74b8b72ed", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7b187429c2baf48", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6525,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0386c4d0e4d0df02a", + "ami_id": "ami-0bd31ee5981910c59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6541,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095d5cf97acf212aa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-02873da33b9a4fc49", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6557,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002803fed899f0c35", + "ami_id": "ami-04695414afcf61dfc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6573,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7e1477a199cd06d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00be37238356aa075", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6589,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0676c9d238828beb5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "ami_id": "ami-0d15a1f982209a387", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6605,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0899967548d55c0ce", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-011405d85cc6028e6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6621,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d15a1f982209a387", + "ami_id": "ami-02cd357857b1f4d9d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6637,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e96052d67efb7f1", + "ami_id": "ami-0a122faeaf9d5a8ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6653,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b180e0367c0ac11", + "ami_id": "ami-0e0367bae001cd611", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6669,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f6dab4ee27f5352", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-0e0d9316220f340b7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6685,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cc560c5c9cbcdf6", + "ami_id": "ami-03ba8538adab68c66", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6701,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c72f1bd4787533f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05345a74f3cc76395", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6717,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dd0fa64e142e5b1", + "ami_id": "ami-09ee4c346f3f6b6d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6733,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0748732f4c5629331", + "ami_id": "ami-00ef69a0198eea3e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6749,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07541d2f471b15ced", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0491aa54d2186d575", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6765,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a87664dc8fe0c7d1", + "ami_id": "ami-05763f6c68783b170", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6781,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04657d0dcc412728d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-0afb75017dea8b899", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6797,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0691cff8620c1ad47", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", - "hypervisor": "xen", + "ami_id": "ami-0c5ef2fbe55de0835", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6813,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb6b2c20c79249d9", + "ami_id": "ami-03e97f80243f7262d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6829,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b162795ceef03f8", + "ami_id": "ami-0c6ca8d7defe5ebd7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6845,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4ee923e0c6be825", + "ami_id": "ami-0ee8e6af4dee72487", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6861,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ea86bdb786ffe18", + "ami_id": "ami-0b28a8e47bb243be4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6877,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0903ddd32c9c8e544", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bea03634432579ad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6893,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ee4c346f3f6b6d4", + "ami_id": "ami-09edb35ef8b9a69d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6909,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd31ee5981910c59", + "ami_id": "ami-0fe4141fca297779b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6925,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ae211e4436e95d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-0d5fe83224b49b5ca", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6941,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068f3fa2af258bc77", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-02ce4b2ca14ccbe4e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6957,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051c123a21bf27f67", + "ami_id": "ami-04f6dab4ee27f5352", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -6973,15 +7425,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1909e139b414cbb", + "ami_id": "ami-0938ad5ecad163de6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06c894284ffda60cd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -6989,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c48927ef674e311", + "ami_id": "ami-0e3fa95c238f42f09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7005,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011f9c1077510eb6c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0f94a96f5ed539604", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7021,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f062b069c6c5de25", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "ami_id": "ami-05a1e0659832af300", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -7037,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ceeac5f0e6b71ff", + "ami_id": "ami-067e77c5d74f989a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7053,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ac99a9f0446770e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-00c9692cb940ce75c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7069,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b102b328e609e1df", + "ami_id": "ami-034fa6b25a8973ef0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7085,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008c4de519a9e4fa6", + "ami_id": "ami-08d1a9914042118a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7101,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05cc0eaed26e13057", + "ami_id": "ami-0b8667721cb79ebc3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7117,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058f545a9f09324dd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e88b28955e3e5044", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7133,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096044727939d5ce2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "ami_id": "ami-00d4b2412e90baa7a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7149,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ce4b2ca14ccbe4e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-07474a17d0d1905dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7165,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b26fdd87df012c1", + "ami_id": "ami-0debdfcd568afc157", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7181,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0747b7a1291b23342", + "ami_id": "ami-04b7683b7d8b1e6af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7197,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08217e08760f64797", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "ami_id": "ami-0872536b4b2d4cf22", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7213,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e893cb9c7ba471b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02f2a3f8cf1b14d6c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7229,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aedfb3373162f8d4", + "ami_id": "ami-0cbc94941761b615c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7245,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f690cb152b5151fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-0c4d8ae504080659e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7261,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8fa0a8b78b25785", + "ami_id": "ami-0a79d42ec9db2f1b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7277,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ef69a0198eea3e7", + "ami_id": "ami-049ab3105ea10a5d7", "architecture": "x86_64", "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7293,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad0b2d9f8c18c778", + "ami_id": "ami-040dbc711ec3afd8c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7309,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06af94c11c0d3e455", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "ami_id": "ami-0baccf08c03160bb7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7325,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05383ea897f4fc1db", + "ami_id": "ami-082996014d988b93f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7341,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b9d57a1020b82f5", + "ami_id": "ami-04cccbade3cc5e684", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7357,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d17bee971b5b7271", + "ami_id": "ami-09b927fc550a900f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7373,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fb36308230a9bce", + "ami_id": "ami-0bf1168d2a8cfce06", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7389,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d945ab95e9b0a106", + "ami_id": "ami-035b30703daa9fb01", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7405,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083abb08ed315cb90", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-09e97138f8201c8c3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7421,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05805dcb45709c554", + "ami_id": "ami-0e04fc38119e24a83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -7437,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ec31b2bff7aefbe", + "ami_id": "ami-006f50588b2b51542", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7453,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0559c9e3ac3557cbe", + "ami_id": "ami-03494bb6f22f3ad0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7469,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02809fe6fcc23ea4b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-0b473a7037a364fc2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7485,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059c2e182e6ad9515", + "ami_id": "ami-0fe54437fd1ea50da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7501,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0717a0f0d864a1e3a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "ami_id": "ami-09d0f9b8940240c4a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7517,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd40f5219c3e0a01", + "ami_id": "ami-04395b6b57569cf99", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7533,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009361d16a8049473", + "ami_id": "ami-04d5803e52af6882d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7549,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e688c046d8312df", + "ami_id": "ami-09123ab084827c297", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -7565,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe54437fd1ea50da", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce4a02adbd0783e2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7581,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc00d9daf6443a0a", + "ami_id": "ami-0ce2e8db7fc00fa37", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7597,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7116208110b5d1b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-04748e7d59674c732", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7613,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e54b2e8b44dd885d", + "ami_id": "ami-08a49021aedd3e082", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7629,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac49d72a2cd05843", + "ami_id": "ami-04f6211050ab94d48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7645,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0367bae001cd611", + "ami_id": "ami-0a82ab2518a9d6466", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7661,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f94220b5f6dc25d6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "ami_id": "ami-0343f172f59d6fa09", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7677,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef36341140da07d0", + "ami_id": "ami-0eacb9338102efa03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7693,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc37822f4b6fc287", + "ami_id": "ami-002803fed899f0c35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7709,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0822e32dedc03e193", + "ami_id": "ami-0597b468e12c6af7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7725,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e0953b030bd34cb", + "ami_id": "ami-0644cf9f4a1debd87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7741,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0343f172f59d6fa09", + "ami_id": "ami-0384cee1a0d531875", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -7757,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bfb1f0113c8006a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-03b180e0367c0ac11", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7773,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1616ec2b1d78d5e", + "ami_id": "ami-06a0749a511e50635", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7789,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030657b11be0e0712", + "ami_id": "ami-0799256c49f2bc747", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7805,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b54402f931ad867", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-0cf1f1ef6fae8436a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7821,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a04367a2f16615bf", + "ami_id": "ami-0ef9dbfd114069de7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7837,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f69a619186b42f71", + "ami_id": "ami-0386c4d0e4d0df02a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7853,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010664b4166ad98a4", + "ami_id": "ami-0680807f26ef7d7d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7869,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6bc47c9986a6a8d", + "ami_id": "ami-0ce3d235459e63e82", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7885,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc5416baf15a2d78", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-030657b11be0e0712", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7901,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac9d29184f2949e4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-0981c8ab389a661ec", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7917,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f91388fadbe6e0f0", + "ami_id": "ami-03b24a5f1dbf8be7e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7933,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c9a531faa5419d6", + "ami_id": "ami-04027a85b1a57db10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7949,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e9fef56874b00e2", + "ami_id": "ami-03ec2eeaff474825b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7965,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063398b16b3936450", + "ami_id": "ami-05997bf0a742d4925", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -7981,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fd54fd5c7b132db", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-005d1c6f16304d946", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -7997,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8830516c400f843", + "ami_id": "ami-09e2e328e9f9e3813", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8013,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0322456df4829a16f", + "ami_id": "ami-0b98bda1294b72d64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8029,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c199e581f456f5d3", + "ami_id": "ami-0d7df4273340aa127", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8045,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023c5ee1d3b08da2c", + "ami_id": "ami-0ab9b99eef01865f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8061,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01adf64ac462ddd47", + "ami_id": "ami-0ac06c1624dc989f1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8077,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021acdc93c326fa10", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04207e738bbaa59c4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8093,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afb75017dea8b899", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-0a1909e139b414cbb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8109,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031a22187cf1ff556", + "ami_id": "ami-0832a6beb16e40a5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8125,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075648075a899ac63", + "ami_id": "ami-048909f34070ba0e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8141,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092f491257454b2e1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a7e1477a199cd06d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8157,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d0f6d6dec51da75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-03ecc36b66f4ef02f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8173,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef9dbfd114069de7", + "ami_id": "ami-06f3cbcd44ee2c9fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8189,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002c6c5f72bedd2b4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-094af3091162578e7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8205,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049ab3105ea10a5d7", + "ami_id": "ami-091ea6f92a46cacfd", "architecture": "x86_64", "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8221,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0395c12122e84ec1f", + "ami_id": "ami-072c622da5c89deff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8237,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b39a9e38e14c1f4", + "ami_id": "ami-0e9d0bcd14ff4c5f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8253,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0d9316220f340b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-000a1dd4e93db7a4e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8269,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0619b7bc78258664f", + "ami_id": "ami-0ef382f13d428e043", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8285,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c74275cfc821cb7", + "ami_id": "ami-070fa149a6554c0c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8301,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014f86aad7a3604c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09a3e20aff83997bf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8317,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a813acf35487af6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "ami_id": "ami-06431bd6a4197326b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8333,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf1168d2a8cfce06", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-0a2d173cabdf7cb38", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8349,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005d1c6f16304d946", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-08ca11b946ddadb06", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8365,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afb6f37d9c99899b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09555c334e87e1b5a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8381,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8c213be4a6d1ff3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-011f9c1077510eb6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8397,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2d173cabdf7cb38", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-09ef3fa3d05617040", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8413,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7c81a2144a4b7fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-0ab70f8bd0c501ce1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8429,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0086510968b8583c7", + "ami_id": "ami-06f0831524c0965d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8445,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ac817f93adbdbed", + "ami_id": "ami-0e8cc50df8252c6b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8461,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed43c0a8a305b667", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0395c12122e84ec1f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8477,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e43c9159aa3c1e15", + "ami_id": "ami-07f6e608a55d60875", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8493,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0de4f7170ccc873", + "ami_id": "ami-0639cf444fd5a1383", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8509,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ca11b946ddadb06", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-064427a3a31c69719", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8525,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045991c71c0f17c05", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "ami_id": "ami-0043d910c89aa17ad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8541,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ad2e524643401fa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-0593a7efb1b79b714", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8557,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09971df1f4e1d42ef", + "ami_id": "ami-0240f05e143a39075", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8573,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036f4c6c912170ed1", + "ami_id": "ami-078bc0e5d5d48eb69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -8589,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075f5297a2743d1f7", + "ami_id": "ami-0f93d753f2649ddd7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8605,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f463394340acadb3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03f9ab7a46d970fa2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8621,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce2e8db7fc00fa37", + "ami_id": "ami-04e27f3571ddddc67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8637,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d920e1b3cecaad58", + "ami_id": "ami-0c533a569092338ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8653,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026f4f632d21865cf", + "ami_id": "ami-0626b9c2e837f9e52", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8669,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05345a74f3cc76395", + "ami_id": "ami-02c8022367b0673d2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8685,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d13f6de91bb2386", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-0b3da60ae8e8b8a81", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8701,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3800e686fa97012", + "ami_id": "ami-065dfa37efd7fce05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8717,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac7ab7d199c6d407", + "ami_id": "ami-0a903c52a7a5a89b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -8733,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072c622da5c89deff", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a28d893edae1c7dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8749,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000d24b99d5e04771", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0903490e028d75f33", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8765,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097859aade08c08ee", + "ami_id": "ami-0960ff5fa05cf8af1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -8781,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a122faeaf9d5a8ae", + "ami_id": "ami-098921f504044c817", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8797,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cd357857b1f4d9d", + "ami_id": "ami-095f9c76a627e2094", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8813,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a49021aedd3e082", + "ami_id": "ami-028003468a8dd255f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8829,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03168d13bfc7eba08", + "ami_id": "ami-0fd40f5219c3e0a01", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -8845,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf1f1ef6fae8436a", + "ami_id": "ami-019127cc697b1ed96", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8861,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f0ddbd22c3eb4d2", + "ami_id": "ami-0df523fbd28347c75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8877,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c613babf8ce0b0c9", + "ami_id": "ami-08f641e17abf90bdd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8893,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091554d0371917bee", + "ami_id": "ami-07a8044c23a0c2c61", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8909,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0940120b5b09be296", + "ami_id": "ami-01ba503043ef1f809", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8925,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdaf29d33085116b", + "ami_id": "ami-0dc6f26cc954106a5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8941,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0baccf08c03160bb7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "ami_id": "ami-0341552b0459e275e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8957,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f93d753f2649ddd7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-05d0f6d6dec51da75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -8973,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0900d76909d31e4e1", + "ami_id": "ami-058f545a9f09324dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -8989,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019faff7c0f940098", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03c9a531faa5419d6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9005,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095db223c6fa56e5d", + "ami_id": "ami-0fecaf6bae5cef855", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9021,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f92554635d220a4", + "ami_id": "ami-07eae8f7228a8fc79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9037,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076633aeab371fc97", + "ami_id": "ami-043a06624ef009e20", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9053,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a8044c23a0c2c61", + "ami_id": "ami-09f784594fcb05e42", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9069,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05674e20627195338", + "ami_id": "ami-0582c39ea7eb4f459", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9085,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b0a1132ac59453a", + "ami_id": "ami-00d17fc204cb138ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9101,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06602fe52def09770", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-009361d16a8049473", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9117,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0216f55b0aa83a675", + "ami_id": "ami-090570ee8e050371b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9133,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4290a9e29affc63", + "ami_id": "ami-08bb50e3a80487cc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9149,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079c42e382b22d7b0", + "ami_id": "ami-0ebd3fcdab79eaec6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9165,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1d0e366bc68b233", + "ami_id": "ami-02f6886a25c4ca370", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9181,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8667721cb79ebc3", + "ami_id": "ami-0009a19dfe47f1413", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9197,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d751f72aaa716dc5", + "ami_id": "ami-077e6f46b2e436ef3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9213,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06444d5c97865824f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-021c3c90caa683a96", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9229,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeea8948a8e5a7fd", + "ami_id": "ami-0ac9d29184f2949e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9245,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021c3c90caa683a96", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-08217e08760f64797", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9261,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c01d515dd225e53", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-0e1b0ee11e41aed3d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9277,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0351cb504acd79c75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-039048b51e6c55a34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9293,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d4b2412e90baa7a", + "ami_id": "ami-0b65dc911912f84a4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9309,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058adfe2fa71e8101", + "ami_id": "ami-01f1cd15704234e8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9325,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfe913a985480376", + "ami_id": "ami-046b182699d0954ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9341,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04027a85b1a57db10", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06a1f8f5f368c23f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9357,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a1e0659832af300", + "ami_id": "ami-0ac4bbb2e22ce8f7d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9373,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da742e4424fb6960", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cc787e07ec40bac2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9389,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0408caed5ff88f60e", + "ami_id": "ami-07f829e38a954ee91", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9405,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ade86ccb2c7ed8a3", + "ami_id": "ami-0470a2caf083299bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9421,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a26a1449b99c018b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-059462ec2cd08f781", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9437,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0516bee3e9aa7cbf2", + "ami_id": "ami-05c7b42dd47122ae3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9453,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b28a8e47bb243be4", + "ami_id": "ami-0c21dea37f991cda1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9469,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076aa5e48d7390eb3", + "ami_id": "ami-051e8522d28bfd89e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9485,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01027ac0aba9b55c8", + "ami_id": "ami-0a1616ec2b1d78d5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9501,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cf5d326fa9f79aa", + "ami_id": "ami-079c42e382b22d7b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9517,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c845021a6d6b284a", + "ami_id": "ami-02d41e1df08cdc043", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9533,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b2eb0b4ed7d9d88", + "ami_id": "ami-06faec1deb9c7c3b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9549,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024b5a689d2e53a42", + "ami_id": "ami-0d8c213be4a6d1ff3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9565,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032fa250f6d9da8f2", + "ami_id": "ami-0b4136b42ae1dcef4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9581,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a0749a511e50635", + "ami_id": "ami-0543fe9b915d1fbb3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9597,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b2c2066f12731ae", + "ami_id": "ami-068164afbc3dd6fd5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9613,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d82cf35fbb81203", + "ami_id": "ami-05d2c5db3a33b11b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9629,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004e6d3c07109b230", + "ami_id": "ami-083c41d85431217f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9645,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1542cf81b90be1e", + "ami_id": "ami-01faa577a9505767a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9661,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08971ebb60e4906f0", + "ami_id": "ami-0b6bc47c9986a6a8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9677,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c877234456ef418", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-00298690d5879e2f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9693,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f1cd15704234e8b", + "ami_id": "ami-085ef01704303cfcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9709,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0107ef5fa32b407", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "ami_id": "ami-0e4fea1cde469519f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9725,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04393b9a6d6e8fa56", + "ami_id": "ami-0e12b6e5b7068967c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9741,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1ad878e8a1499b1", + "ami_id": "ami-0a39c27ab33824e4d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9757,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06338c01af25be69f", + "ami_id": "ami-09961eb6842a63f5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9773,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a1f8f5f368c23f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "ami_id": "ami-0e22b9f87895ab11e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9789,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08337ad8dd7f6ac6a", + "ami_id": "ami-03f15852c50f91131", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9805,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060e75303a332ae55", + "ami_id": "ami-0a4285663101d9fc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9821,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2d4d76132ccc584", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "ami_id": "ami-04657d0dcc412728d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9837,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052cc8d3aea01c266", + "ami_id": "ami-09c2c786f3cd21637", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9853,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da1aa097b5dcea70", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b6f5a304a670d07b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9869,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046b182699d0954ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "ami_id": "ami-05f6023c1d772938d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -9885,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7c1cfcce68754cb", + "ami_id": "ami-068aa16d2dd53e5f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9901,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9f802baca4f2a00", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-066e4603ea83d0a13", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9917,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0015127c7a6c9e398", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-02f84ff17c5da08cc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9933,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cbc2ea9222a9f30", + "ami_id": "ami-07980c8b90ceae60f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9949,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4d8ae504080659e", + "ami_id": "ami-09ba074b7204bc4fe", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9965,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f51f72cd780e3d95", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05d82cf35fbb81203", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9981,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0163b2ea8413feab3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-04ae211e4436e95d0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -9997,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f829e38a954ee91", + "ami_id": "ami-029ab293d713f9eb1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10013,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ccfe0c1a7049b77", + "ami_id": "ami-02b39a9e38e14c1f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10029,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7cd20e258146099", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "ami_id": "ami-02a50df91797c2441", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10045,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07eae8f7228a8fc79", + "ami_id": "ami-05cc0eaed26e13057", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10061,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc0b365e04727f5c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-0cfe913a985480376", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10077,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa530797a166adea", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "ami_id": "ami-0d482c7149ba33a2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10093,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f48113da4d4650d9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "ami_id": "ami-014ed64e7cd696beb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10109,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd3326ab5ee6581c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08565026d888724c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10125,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0abaaca1a89803a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-0f8796714a9cb1351", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10141,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ac98cda2d210571", + "ami_id": "ami-0cd8ffdff966f566d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10157,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c04bba9865209c8e", + "ami_id": "ami-0588a20733e9165b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10173,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bd14405ab1b0154", + "ami_id": "ami-097d434c82fee1c98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10189,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0952149f8cd5cdabd", + "ami_id": "ami-022107441225782b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10205,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055357babdfa5b19e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-0aedfb3373162f8d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10221,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa69bd059c48ea84", + "ami_id": "ami-0e6841dd320c6d4bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10237,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009da939b2098aadb", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-061c2a0dbb2b80813", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10253,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2993724b902cd4b", + "ami_id": "ami-02b30e8363a2147e2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10269,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0589c961583e88dc0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-0ac49d72a2cd05843", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10285,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a29fe556a9791298", + "ami_id": "ami-021acdc93c326fa10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10301,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd042e3743a6527f", + "ami_id": "ami-0808d03a1f0a73f66", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10317,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d73c06e2b3d14023", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-038127d96c61e7698", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10333,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0872536b4b2d4cf22", + "ami_id": "ami-06d6fdd4f805c65e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10349,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b39ce5d102bb590", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-0d45541ed0c3e7606", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10365,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc787e07ec40bac2", + "ami_id": "ami-0952149f8cd5cdabd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10381,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e29d71d10e9b12c", + "ami_id": "ami-0bc9d250c1476f9b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10397,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09aec15e9dca02f8c", + "ami_id": "ami-0eeea8948a8e5a7fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10413,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0384cee1a0d531875", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-000d24b99d5e04771", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10429,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03879452a01387cef", + "ami_id": "ami-0e7c1cfcce68754cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10445,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051e8522d28bfd89e", + "ami_id": "ami-08b2c2066f12731ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10461,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f77766733c83fb8f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07a813acf35487af6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10477,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ea802245fed00b5", + "ami_id": "ami-0b2698337c7b04894", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10493,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070fa149a6554c0c1", + "ami_id": "ami-0478a59a70b2c402f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10509,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0990969bfe768f329", + "ami_id": "ami-0b7a99bacc4dc14a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -10525,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbaf09e8f7f8b417", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "ami_id": "ami-016c0c72faeba97db", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10541,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0582d8da312b21697", + "ami_id": "ami-088ed336de2cfee77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10557,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb5b14c21ea5be6e", + "ami_id": "ami-09cca3aaace004758", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10573,31 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5330df4b075a9fe", + "ami_id": "ami-08920aa95100a0bef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", - "owner_id": "665337139932", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-010ae42b3ea319737", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10605,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f75fdab48df2ad9d", + "ami_id": "ami-00ff48a91a237514a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10621,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d1a45bc6e0e1132", + "ami_id": "ami-06b162795ceef03f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10637,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fefb8637c0ac04de", + "ami_id": "ami-05b9d57a1020b82f5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10653,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a0daf1a1d300bd4", + "ami_id": "ami-0ceab211e70e5a665", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10669,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a53a974aa77b5d1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-093ebe8df646cb25e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10685,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d1a9914042118a3", + "ami_id": "ami-05ed721c5ddf9d9f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10701,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eaa6150ff18c15bd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-0691cff8620c1ad47", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10717,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0097995919581927f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-0fb2e73ede1df3d8f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10733,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0408b48a68b26d49e", + "ami_id": "ami-02ca651394d7e3d94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10749,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095bd92c6a6d0f952", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "ami_id": "ami-03192d5de86c6e236", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10765,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002c39c23b03fbe8b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0169d18988da4a660", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10781,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c9256ba75ff21b1", + "ami_id": "ami-0382a86c24fd02a39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10797,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab9b99eef01865f4", + "ami_id": "ami-08f49f21da2acaf2b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10813,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c894284ffda60cd", + "ami_id": "ami-06b7e6035b7ce0cdd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10829,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c7960eb93d14741", + "ami_id": "ami-07f7765ccaaa54afc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10845,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e12b6e5b7068967c", + "ami_id": "ami-0681f002ee90a0758", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10861,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebf52f5c73350d23", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-07541d2f471b15ced", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10877,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afbcae2ce9de2797", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-096425e78b4ff3ffc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10893,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca3b484534ab1bc9", + "ami_id": "ami-067beae5cbb4e5785", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -10909,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3151bbabd76af2a", + "ami_id": "ami-09fee273a2097037c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10925,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ba503043ef1f809", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "ami_id": "ami-04e426fc6963ff5c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10941,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003c7d8e798248d99", + "ami_id": "ami-00aac3e4ab34a86b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10957,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d63152d33cc105a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06906c8a3dbc96c06", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10973,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a2253f4000b6761", + "ami_id": "ami-0a33bf45a229dadb8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -10989,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba0b3d7842bdf035", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0216f55b0aa83a675", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11005,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091ea6f92a46cacfd", + "ami_id": "ami-01dd0fa64e142e5b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11021,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc7acc76d7f52884", + "ami_id": "ami-0dc0b365e04727f5c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11037,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed717dadcf20f6b9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-042011b730db69976", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11053,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f4bfc23acac6831", + "ami_id": "ami-076633aeab371fc97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11069,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04db0d68df1a62558", + "ami_id": "ami-0a150a5b11fd927fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11085,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032592096a94e8bac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "ami_id": "ami-069616a3f7806d00e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11101,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078bc0e5d5d48eb69", + "ami_id": "ami-058ef492546ad38f7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11117,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085ef01704303cfcc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-075106a821ebb3f1c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11133,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fee273a2097037c", + "ami_id": "ami-0f75fdab48df2ad9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11149,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6841dd320c6d4bf", + "ami_id": "ami-0b9f34c8b03c52df3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11165,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08565026d888724c1", + "ami_id": "ami-0c2783a35e5033b2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11181,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3313ab53966f16b", + "ami_id": "ami-07e29d71d10e9b12c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11197,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ae2c9762b797a60", + "ami_id": "ami-008c4de519a9e4fa6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11213,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092e4d4b48db659bf", + "ami_id": "ami-0ae5d7ed2c5d5df9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11229,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6f5a304a670d07b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0397a003afe341ef0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11245,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0716e14edd84956e6", + "ami_id": "ami-092e4d4b48db659bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11261,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbc94941761b615c", + "ami_id": "ami-02f880cc379d193af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11277,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b65dc911912f84a4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-06ee1ed5e8b02d8b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11293,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cccbade3cc5e684", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0408caed5ff88f60e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11309,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01199b027f05a59ee", + "ami_id": "ami-0ce8005900adbb0da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11325,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0543fe9b915d1fbb3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "ami_id": "ami-08fb36308230a9bce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11341,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0588a20733e9165b7", + "ami_id": "ami-09851c81d1889d6a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11357,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a78f7457a925be01", + "ami_id": "ami-02d10fa17a222e90b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11373,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068aa16d2dd53e5f3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "ami_id": "ami-06444d5c97865824f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11389,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d482c7149ba33a2a", + "ami_id": "ami-05674e20627195338", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11405,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deb59dc0c53bcd3f", + "ami_id": "ami-05805dcb45709c554", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11421,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e749bd7b5f65a077", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-0a49a4c286b46f5a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11437,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063dc946f562b57b5", + "ami_id": "ami-0d751f72aaa716dc5", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11453,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061ec2161c1f4ec83", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-03ad297390651d32d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11469,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038127d96c61e7698", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-08b5be4613d96334e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11485,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0304c5256ede662c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-084ffdabdc678292f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11501,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f2a3f8cf1b14d6c", + "ami_id": "ami-0da1aa097b5dcea70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11517,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096425e78b4ff3ffc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00e9c1677b7b1fab1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11533,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e97138f8201c8c3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-0143176203e51d774", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11549,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d45541ed0c3e7606", + "ami_id": "ami-04988098b7c74c633", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11565,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8cc50df8252c6b8", + "ami_id": "ami-08bd260799af0852a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11581,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017e55b3a86add45f", + "ami_id": "ami-0449aa4ed7eb4d866", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11597,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6c6a0d3ed4d1ee2", + "ami_id": "ami-0285b329981b672e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11613,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc9d250c1476f9b8", + "ami_id": "ami-059c2e182e6ad9515", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11629,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fcd5230eb4e91bb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "ami_id": "ami-03879452a01387cef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11645,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034fa6b25a8973ef0", + "ami_id": "ami-0e6efd82d4ee228b4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11661,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aee12f2a6dd3e715", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a26a1449b99c018b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11677,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04207e738bbaa59c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-0e4290a9e29affc63", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11693,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5f4b585fbc9f215", + "ami_id": "ami-00e96052d67efb7f1", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11709,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029b2d03039f970f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-019d711afefaafa97", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11725,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0595a53337a9307d8", + "ami_id": "ami-03ef62bb6968c1e74", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -11741,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d8c174a27104ecf", + "ami_id": "ami-0fb4e4ab6dae97ad4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11757,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d44202cc78a8d41a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "ami_id": "ami-07ea6cbe393f13736", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11773,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6ed46c24b5c0854", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-017b607a724c70d41", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11789,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b24a5f1dbf8be7e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "ami_id": "ami-029b2d03039f970f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11805,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0373dcfd336664d7d", + "ami_id": "ami-0b236792f01b01f00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11821,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019d711afefaafa97", + "ami_id": "ami-0cf606008cb5a369d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11837,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09769e1a58dff64f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-0ac7ab7d199c6d407", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11853,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01eb2f5408415540e", + "ami_id": "ami-051c123a21bf27f67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11869,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d957614a1b4afbb", + "ami_id": "ami-08c7960eb93d14741", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11885,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014f30b51b9d3b2b2", + "ami_id": "ami-0fa95b053a59ea833", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11901,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d10fa17a222e90b", + "ami_id": "ami-05eb6a8448934365d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -11917,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052f76e9c67b866f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221025 arm64 ECS HVM EBS", + "ami_id": "ami-058adfe2fa71e8101", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221025-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11933,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9423594f153558a", + "ami_id": "ami-0c0d08d2f89d4cbdb", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -11949,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066e4603ea83d0a13", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cbf8abf16c73c83b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11965,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8c3b4eee040a6b6", + "ami_id": "ami-068f3fa2af258bc77", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11981,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef382f13d428e043", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "ami_id": "ami-0f464fec95abc18b1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -11997,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02252d984c7e3595d", + "ami_id": "ami-0587103265e5ca42d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12013,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e21bfe80b613041a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-036a123f156e65985", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12029,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e79c652680a3a45", + "ami_id": "ami-0a7c81a2144a4b7fc", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12045,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac06c1624dc989f1", + "ami_id": "ami-0da282b208d35a847", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12061,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fd4157756be2564", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c5f3aa2998ccfb5d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12077,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa95b053a59ea833", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-0656f5f467148fdf4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12093,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058c836210c2dd4f2", + "ami_id": "ami-01529539bda60a0b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12109,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008834de6141fb49b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "ami_id": "ami-084cf1a1ec61de0af", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12125,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05df8c912495894ce", + "ami_id": "ami-0a358b79eea1cd46e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12141,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067beae5cbb4e5785", + "ami_id": "ami-0ec7793082081e3ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12157,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06431bd6a4197326b", + "ami_id": "ami-07ac99a9f0446770e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12173,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df523fbd28347c75", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "ami_id": "ami-06602fe52def09770", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12189,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066ceb36d1c2033a7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "ami_id": "ami-003ef431eff740361", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12205,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077e6f46b2e436ef3", + "ami_id": "ami-0f33d5dc1b58ad19b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12221,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cdb554bd2b18a82", + "ami_id": "ami-07ac817f93adbdbed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12237,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03093b101683fe061", + "ami_id": "ami-003c7d8e798248d99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12253,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f41b961d074ebdb1", + "ami_id": "ami-042e8051e6ae5871a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12269,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4136b42ae1dcef4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-0748732f4c5629331", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12285,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ee1ed5e8b02d8b1", + "ami_id": "ami-03093b101683fe061", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12301,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cfa44d08d1ac309", + "ami_id": "ami-064087d81128ffcec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12317,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d511840a5c15993", + "ami_id": "ami-031c3d8d9ec8da6e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12333,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01788344cf8eb122f", + "ami_id": "ami-01eb2f5408415540e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12349,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bfcfa8f9c11caab", + "ami_id": "ami-05df8c912495894ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12365,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed72c47dcc4e9a62", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08f2dbaae64c32e87", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12381,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00384f6078a0a18a0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "ami_id": "ami-019faff7c0f940098", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12397,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d24e4d32866eb768", + "ami_id": "ami-074d43acad7b48b3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12413,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f527454bb13225fc", + "ami_id": "ami-014d7efd6547d9a60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12429,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8796714a9cb1351", + "ami_id": "ami-00a6706bd249258b5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12445,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b88b97a52835709", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-0b2993724b902cd4b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12461,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092ad8e95f117047a", + "ami_id": "ami-036f4c6c912170ed1", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12477,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0121ac62cef6cd38b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "ami_id": "ami-09defcbc907ea3cf6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12493,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0582c39ea7eb4f459", + "ami_id": "ami-063dc946f562b57b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -12509,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d6fdd4f805c65e3", + "ami_id": "ami-0310475131f19b60d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12525,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce5c3573555e15f7", + "ami_id": "ami-0f690cb152b5151fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12541,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ca651394d7e3d94", + "ami_id": "ami-0a1259537874f1f55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12557,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0feee3e8247260fa3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-04dcc1dc5edf5a47b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12573,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019127cc697b1ed96", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "ami_id": "ami-0baec0a8bd21d2ebe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12589,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6c00f7de099be6e", + "ami_id": "ami-04584a58ca223e184", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -12605,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0816edf457fec8cdd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06cee516d88304860", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12621,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08920aa95100a0bef", + "ami_id": "ami-014f86aad7a3604c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12637,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016c0c72faeba97db", + "ami_id": "ami-04b18b80d108d0a84", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12653,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0391a2a394787f1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08cc560c5c9cbcdf6", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "665337139932", "platform": null, "public": true, @@ -12669,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025966c2d78149d15", + "ami_id": "ami-0e3dd30ea1a06cc1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12685,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0470a2caf083299bf", + "ami_id": "ami-05d393f57e39c5e25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12701,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083c41d85431217f0", + "ami_id": "ami-0aee12f2a6dd3e715", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12717,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db5d9c5cc6118dde", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-0d3d52f81ef0c86a8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12733,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd8ffdff966f566d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-0d77dbbace5dfd94d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12749,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd8f8c4a2baad0e2", + "ami_id": "ami-03768500778b42ca5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12765,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d0adf84e296813b", + "ami_id": "ami-0afb6f37d9c99899b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12781,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090570ee8e050371b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02fcd5230eb4e91bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12797,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0850955a49a0c20bc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bd6161d5701a2e75", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12813,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0903490e028d75f33", + "ami_id": "ami-067339edd33cef029", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12829,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078909fbe6be7dad2", + "ami_id": "ami-0717a0f0d864a1e3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12845,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6b155ff859f4d14", + "ami_id": "ami-065936aecc9a0fa18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12861,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bea03634432579ad", + "ami_id": "ami-01b235a07acf65d70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12877,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7b187429c2baf48", + "ami_id": "ami-0304c5256ede662c1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -12893,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7ac3b2066e63352", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0c15ac8844c2c34d4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12909,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068164afbc3dd6fd5", + "ami_id": "ami-00e94d07e29d6ec48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12925,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a28d893edae1c7dc", + "ami_id": "ami-008834de6141fb49b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12941,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3fa95c238f42f09", + "ami_id": "ami-0c9068dbbbf8bb070", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12957,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4e3231d6df4c92c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-0d4d22c724d2f4eec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12973,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f9ab7a46d970fa2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-0c613babf8ce0b0c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -12989,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a13727b4e72aa12", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-024b5a689d2e53a42", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13005,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0680807f26ef7d7d8", + "ami_id": "ami-07a933e1aa3720698", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13021,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021e6d2ecdbeb1ca6", + "ami_id": "ami-045991c71c0f17c05", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13037,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a45a9b568259a677", + "ami_id": "ami-0086510968b8583c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13053,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0003c72ecaa96aa7c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08a0daf1a1d300bd4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13069,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003ef431eff740361", + "ami_id": "ami-05a42c83adc61e6d7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13085,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d0f9b8940240c4a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-080baf8ae9ff13655", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13101,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026585324f8047b90", + "ami_id": "ami-06c48927ef674e311", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13117,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032ddca1e3f30668d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "ami_id": "ami-0903ddd32c9c8e544", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13133,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e10a4233687c25e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-011ecba9c6d097187", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13149,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f784594fcb05e42", + "ami_id": "ami-05ac98cda2d210571", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13165,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f39f6fd48d756867", + "ami_id": "ami-076aa5e48d7390eb3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13181,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0070ccd921ee9c95c", + "ami_id": "ami-08a6e439c7c518f74", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13197,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f6e608a55d60875", + "ami_id": "ami-00b64ced8712d8d93", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13213,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0917949157ce189f6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d5f8053d341c79ae", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13229,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b18b80d108d0a84", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-09aec15e9dca02f8c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13245,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094af3091162578e7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-0b962740176e2f247", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13261,15 +14106,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9f34c8b03c52df3", + "ami_id": "ami-0c30eb5a1fc192f75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13277,15 +14123,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da12d3a99bbb213c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-011c2c14e8bc247ec", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13293,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0382a86c24fd02a39", + "ami_id": "ami-0cbaefe19d2bea21c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13309,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b30e8363a2147e2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-02bfcfa8f9c11caab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13325,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7a99bacc4dc14a0", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-0caa9fbe0b3b2fd47", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13341,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e22b9f87895ab11e", + "ami_id": "ami-0ff8e6ffb20521380", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13357,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04748e7d59674c732", + "ami_id": "ami-031c72f4dd680ab91", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13373,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057e92ba99cf8ace7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "ami_id": "ami-0eed68e0c24ffda6a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13389,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a3e20aff83997bf", + "ami_id": "ami-02e893cb9c7ba471b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13405,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b9d52fbfa4763d8", + "ami_id": "ami-05db782977a8c4fda", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13421,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a6e439c7c518f74", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-021e6d2ecdbeb1ca6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13437,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b473a7037a364fc2", + "ami_id": "ami-079a6bdfb437c6a0d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13453,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e94d07e29d6ec48", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0cd3326ab5ee6581c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13469,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6ca8d7defe5ebd7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "ami_id": "ami-002c39c23b03fbe8b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13485,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c2716639c89830c", + "ami_id": "ami-0358687604e160891", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13501,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082996014d988b93f", + "ami_id": "ami-03d40e2d19610a2c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13517,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5f3aa2998ccfb5d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0747b7a1291b23342", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13533,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a150a5b11fd927fc", + "ami_id": "ami-0f727d294cb8ccbb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13549,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088ed336de2cfee77", + "ami_id": "ami-0dff32b08f41bd0e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13565,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4d22c724d2f4eec", + "ami_id": "ami-0468350a0f3701217", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13581,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01529539bda60a0b9", + "ami_id": "ami-04ea8426c3bd7441f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13597,15 +14463,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7e100be5816c38f", + "ami_id": "ami-06969aae4e32b2418", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0cf812933a13a443e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13613,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0385b373aab4c2a8b", + "ami_id": "ami-06d7820eb946070ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13629,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cb319d5cd1f091e", + "ami_id": "ami-07f0589b3b24bcb07", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13645,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2698337c7b04894", + "ami_id": "ami-0f77766733c83fb8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13661,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a950877ed428072", + "ami_id": "ami-09971df1f4e1d42ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13677,15 +14565,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031c72f4dd680ab91", + "ami_id": "ami-0e976bf37b1acc88c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-099301d0dd2ec9614", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01027ac0aba9b55c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13693,15 +14616,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed5ab776f11c4e96", + "ami_id": "ami-04ceeac5f0e6b71ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ba19f1616d60c3c7", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13709,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e0f5a29e91d6ad4", + "ami_id": "ami-08cb319d5cd1f091e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13725,15 +14667,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8365acfd511bfaf", + "ami_id": "ami-0d9f802baca4f2a00", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e2d4d76132ccc584", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0da742e4424fb6960", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13741,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cca3aaace004758", + "ami_id": "ami-03e7e4149ca4e17a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13757,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7df4273340aa127", + "ami_id": "ami-0a29fe556a9791298", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13773,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0799256c49f2bc747", + "ami_id": "ami-095db223c6fa56e5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13789,15 +14769,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae9fc43e2d9804da", + "ami_id": "ami-0a04b7eab6d8fe2df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06e10a4233687c25e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13805,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abcbf138e274baa0", + "ami_id": "ami-00b7f561edd57e36c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13821,15 +14820,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ad297390651d32d", + "ami_id": "ami-05f5a77f74b8b72ed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09b2dc364ca38f23c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13837,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ebcaaf489bc93a4", + "ami_id": "ami-0ef36341140da07d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13853,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e12b267878d92fd", + "ami_id": "ami-01ae2c9762b797a60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "665337139932", "platform": null, "public": true, @@ -13869,15 +14888,458 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c7b42dd47122ae3", + "ami_id": "ami-0d24e4d32866eb768", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c44129173c02cd27", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ade86ccb2c7ed8a3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-057e92ba99cf8ace7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fdaf29d33085116b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a60657af2c8e218d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-062505cebd31f0f3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0cefb1f6b149dc8ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09a13727b4e72aa12", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0121576ccf78a7802", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-087116a12783facfb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b3151bbabd76af2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ba0b3d7842bdf035", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-058c836210c2dd4f2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05ea802245fed00b5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-053fbb6bbe67d3919", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b59545185ecf4a42", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-023c5ee1d3b08da2c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04ec31b2bff7aefbe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0dd042e3743a6527f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-081bde1d3504c5a5c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08d13f6de91bb2386", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-070211c24fbf3b059", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b3313ab53966f16b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0850955a49a0c20bc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e7e100be5816c38f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "owner_id": "665337139932", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02c9256ba75ff21b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "665337139932", "platform": null, "public": true, @@ -13885,6 +15347,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json index 8ae7e442ae85..b1b26f28550d 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-03b9e774a29e5be32", + "ami_id": "ami-040a7dcfd701fead5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c33a5d21bc5ea7f", + "ami_id": "ami-0b451daa8b95c4c9e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e3b7a027fb764b1", + "ami_id": "ami-03ebda6a9a9466fa3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2bac67ab1818a2e", + "ami_id": "ami-06529e47653e571ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea8be7cdf2c2f02f", + "ami_id": "ami-0fd6e34935c475cba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4ee1b850968cdf0", + "ami_id": "ami-02efda1c9acf581f9", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e935c8d81aa16afe", + "ami_id": "ami-0bfb48bfaf6b3c4b4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0633805928291a0db", + "ami_id": "ami-06f8ce52b85365651", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d3e049dd930fad7", + "ami_id": "ami-05fbc79937c97dad3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e361dfa337bad035", + "ami_id": "ami-069ad92205268127f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d514398745616a7", + "ami_id": "ami-06eb554b6e6b096c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c3cc448ed26388d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", + "ami_id": "ami-079ecdbfea6b5e4ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d3387b174d5f524", + "ami_id": "ami-05c56cf7888ba280e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,31 +217,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069bd7e3be6f06735", + "ami_id": "ami-005621ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01657dbb023c82c11", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "ami_id": "ami-022f49f8a3418ea67", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0454831ad6419901b", + "ami_id": "ami-0639d0f1e9d4f38d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095da95a2ac4e3951", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c0f578e974d9cd7c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04015631c351a3da6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-0053837a9c545f995", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064cd720702bd3b47", + "ami_id": "ami-00d513081f78c1a42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3769ff70e8ed2c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "ami_id": "ami-086d3db8e2195ebf0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,31 +336,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f749efb7ede7b1b", + "ami_id": "ami-07839df9eec55ac8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2019.03.07", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0108e95d91133853d", + "ami_id": "ami-04b96940b64c926e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-7d0c7a90", + "ami_id": "ami-0bd759f775cff946f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.c x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.c-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f5e911df6fafd28", + "ami_id": "ami-074d0a32aaca40b79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02546b361e9bbf323", + "ami_id": "ami-064cd720702bd3b47", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008bd8c850925e558", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-049c902f5a06cff94", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca6d4eb36c5aae78", + "ami_id": "ami-0dfe368dbeea6f1dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e006ea580e9717c4", + "ami_id": "ami-2b4d26c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", + "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0304e243aa7d14962", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "ami_id": "ami-092f9be53fb4d1170", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04247b7cfde8bf7e7", + "ami_id": "ami-06db78f8586465c5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0496e471c5b4f61e2", + "ami_id": "ami-0b801b65918d03239", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b347740f06f9dd72", + "ami_id": "ami-05b43c0c0a3ae81be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190815-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f63539464af1e10", + "ami_id": "ami-09ce5b1c8cca6f467", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf83e20e6e7fb52e", + "ami_id": "ami-0f519b7a14dde593c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e37e42dff65024ae", + "ami_id": "ami-00dab1fa3f346aaa7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0071f83bec849eb19", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "ami_id": "ami-05b73c3146cc77de0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bc7e16e8c5847bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-022a0c9d8802172a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210413-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049d01b4df8c53075", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-0bf5388ca7bc0b2bd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067a91128cae9c11a", + "ami_id": "ami-0eceb414529a60916", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1aa8c2e9d719f58", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", + "ami_id": "ami-0fed4209ed5cc03ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dee0b525da780e0", + "ami_id": "ami-0417c5084c177618a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6c393117fdd547a", + "ami_id": "ami-0d71a3ea8e6c55c9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7af38919cf6a55c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e9ccbc73a9022f69", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071c5ffb884b16119", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "ami_id": "ami-070f9179f7fe16060", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036a253e8bad90c00", + "ami_id": "ami-0d910b5d748cb51f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004c53c08557609f9", + "ami_id": "ami-070f7e54dfb7a2d5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b06d9587de078f8", + "ami_id": "ami-0eddfbcb2ffda4640", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f8ce52b85365651", + "ami_id": "ami-047f2650201e31d0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06eda73e98c475507", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04d4b859d3c8a9010", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2f46c4dd8f7d530", + "ami_id": "ami-097c45e918c083305", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c9c3789fbcfd64c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-0c32a62969bbc83ce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b9ad37f4bdd72f3", + "ami_id": "ami-0ee598279ae71574b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dfab3c16bd14c89", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-01bce5a96eae5a67c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc810827c2741e93", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02a07b9e528f0eda5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c7135a72823a950", + "ami_id": "ami-09363ef7dc62e5829", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097c45e918c083305", + "ami_id": "ami-0073ef7ae2e1a1c68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0763fff45988661c8", + "ami_id": "ami-00271158626748a42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0999dbd522282f9aa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "ami_id": "ami-0fc252555aaf8c280", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b0aca171072e94f", + "ami_id": "ami-03b9e774a29e5be32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07259a121c2c3b64e", + "ami_id": "ami-0712d45e964e4be04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbf97ded841d824b", + "ami_id": "ami-022c876406b7ee039", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b474e263590e77c", + "ami_id": "ami-0a4ca1add076d90a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0413dfd52d9b8ba", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "ami_id": "ami-0ee74614fb0497aa8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e432635473484865", + "ami_id": "ami-035a99fea66fca7ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf4e5492ba545251", + "ami_id": "ami-0038727bc19be9974", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf5388ca7bc0b2bd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", + "ami_id": "ami-094e370bc3bb20850", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7c0c3399a3201e1", + "ami_id": "ami-0a5ab6f3bcdb7efe4", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021e3a34293625b6d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", + "ami_id": "ami-00c7135a72823a950", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0687306953fc08244", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "ami_id": "ami-09f0383e8149148c2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fccdb46e227b9538", + "ami_id": "ami-0f01bc670e8ea3982", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a321a96cd528e26", + "ami_id": "ami-0822fa1ed6836019b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abd1ae4c36b91fc6", + "ami_id": "ami-0d96043019b911dc3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d611708103529858", + "ami_id": "ami-033b436c51bcdbc9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0862d756a69c011c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-056a8d945ddfdfe8f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b08610a6fdbdf2f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "ami_id": "ami-025087bd386c74dd2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02898546ea44fc778", + "ami_id": "ami-0b7368a7a931fee7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e18fe8bd34225f9", + "ami_id": "ami-042aaca211dcdcd51", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a469c04a483c1231", + "ami_id": "ami-0401ff7e39345ec2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4b5b999281c955b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "ami_id": "ami-0be9dece64be2bcda", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fea20b3b73e3fe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "ami_id": "ami-0b1775a3c302d45f3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20200905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b55da2ca03a4b0ef", + "ami_id": "ami-0140d1ef6d38ab79e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc252555aaf8c280", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-03c384ee0033046b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cfa258272c37c0b", + "ami_id": "ami-0d08fd634b87db878", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1b351d882f80bda", + "ami_id": "ami-0defbaada82eb9cdc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b2bb76dbce0ccc3", + "ami_id": "ami-04b8d55a2aec12ee0", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e52aad6ac7733a6a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", + "ami_id": "ami-06c2285ccb30d1614", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b786f78c8434ba76", + "ami_id": "ami-0df997e8ed0f79566", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02702445bc94fa217", + "ami_id": "ami-09f43ca191c371485", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210819 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0924d58c4e052575d", + "ami_id": "ami-02aaec7dafb9b601d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04779564410203fb2", + "ami_id": "ami-0ba2904a0623b3b27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0411dcc56267b8be1", + "ami_id": "ami-0d15066b7869438ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084d4626fec6f3ca3", + "ami_id": "ami-0f41637f4f807814e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030a3c0aac93cf290", + "ami_id": "ami-0b23c122484f8bf90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ba272e7d4272771", + "ami_id": "ami-0e361dfa337bad035", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a383c80c6e10e47b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-0cfb47194b0752293", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b85fb5ee19e58b8f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-0cda4bbd18f922fed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068db5185cc397a92", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03944426c0793f043", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e774845c219c62f0", + "ami_id": "ami-09acc689bdf119020", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fda573abc329ed59", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "ami_id": "ami-0c833d2f94e193dd5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fa14f37492325da", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-0e24606e4e1826efe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8089aa2c658e0cf", + "ami_id": "ami-065fd01648ca74747", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5ab46d1bb6aa49d", + "ami_id": "ami-0488a7e92dd526030", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023cc60dfe13d716c", + "ami_id": "ami-0027b11001ed32ebf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b88a6b8e63fe7c4b", + "ami_id": "ami-026d869c538fb9cad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056f4b885eafbb887", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "ami_id": "ami-052f2fa11c7145e04", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0879857690d02a38c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-04b9c03dc115828a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7931a4f868bd9b7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-052fcb1b7ec74b9c7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074d8a7495dfd5a79", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-0e729ff40b3b4c8d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a88c0d1dd5935bab", + "ami_id": "ami-07fa24c38c41a864f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020c1c40305acd18c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0471cad87b2bfe928", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad5a3959c516f3a5", + "ami_id": "ami-0b9d3a1f64a4e952c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a07b9e528f0eda5", + "ami_id": "ami-03914b93bdf76c7c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0427f4a4a5576d4bd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bfaf0223bcbbdefc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6872111e3f86fbb", + "ami_id": "ami-0b9443f156c3ec804", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f71eca2099f1d38", + "ami_id": "ami-08ab17dfa42b980b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a6ca9802e7f97f9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211209 arm64 ECS HVM GP2", + "ami_id": "ami-0013f7c005123f191", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eaee9a0f797e6919", + "ami_id": "ami-0b60185623255ce57", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cf490adab546176", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c4ccc30b1fc66a9a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b230f4e50e7b4298", + "ami_id": "ami-0fe542bbe6d01a1cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038a4711f40178914", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-00271b29b1c81b52f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069ad92205268127f", + "ami_id": "ami-03a91dfac25790c32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee0c841e0940c58f", + "ami_id": "ami-0a9a97b3af14eceb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9def8def64a90c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-0855568930ba72f34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0467c3f85975d8a26", + "ami_id": "ami-0a09fe686e5ce143c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210210-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b79df31cff8be22b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "ami_id": "ami-00957d2a0b74e97d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057631c6a4834e06d", + "ami_id": "ami-00142625a81775502", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bd67ff481a13d7f", + "ami_id": "ami-0f4c82daf9cef7e23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08011916b613f6c22", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220209 arm64 ECS HVM GP2", + "ami_id": "ami-0fb4933bf0f2ec595", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037b37aa454cfdecd", + "ami_id": "ami-0b8cd5eb058344392", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da45eecfd392886a", + "ami_id": "ami-0687306953fc08244", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06759db879dd8410e", + "ami_id": "ami-0aa1e3dc63ece82e5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a179ac42b1bb8aa", + "ami_id": "ami-0b37663be8bbe0d3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.k x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn-ami-2018.03.k-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059e2d0957dcaeaac", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-019929ec96f6e8c9d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb335c2e9c9cefea", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-020c1c40305acd18c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09281bd684c755a65", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-0cfd079c617c2487b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c17f9b928dde293", + "ami_id": "ami-036df9fd27c75b5dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f74fc09b7f6f7f07", + "ami_id": "ami-08e97cfa3e0eeb58a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040ff9a34b6b2a8dd", + "ami_id": "ami-038a4711f40178914", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062962eab8dde2393", + "ami_id": "ami-064cbb9f38a66103d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09584833cc30ecda3", + "ami_id": "ami-084cb340923dc7101", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07071898f220fa930", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-07423a3aa5c997261", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d8ede6b44c24268", + "ami_id": "ami-0a24dd0a1f711c291", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,31 +2410,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005621ed", + "ami_id": "ami-0afd6c9431a9be6a9", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082f0b7a2739d8de0", + "ami_id": "ami-0fb5ea8ed71349dcf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0866ba41ed184f73c", + "ami_id": "ami-0957249ebe74a0d4f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d19c8f61da15625f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-0d50450c6fe28da6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e53530943a45a303", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", + "ami_id": "ami-03e11de03c83b999c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0027b11001ed32ebf", + "ami_id": "ami-057631c6a4834e06d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062ef2a2561c9364a", + "ami_id": "ami-035d9640118d0afca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00142625a81775502", + "ami_id": "ami-0c764053c0b28dc68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cffef88bfdf9d6b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fd391d35ea8d9005", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1687c002851a5dd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "ami_id": "ami-0071f83bec849eb19", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03679b7d3f9df1a02", + "ami_id": "ami-0284063662503ed64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06482d4f804adef6c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-095da95a2ac4e3951", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0736ce0743f07a9e9", + "ami_id": "ami-0f357681ff81d029a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d969c3936b4c0b8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "ami_id": "ami-06b1f095307baa177", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ff5bdc2228a7c51", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210708 arm64 ECS HVM GP2", + "ami_id": "ami-0df1291a4189796e8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ca9c792b90c0563", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-08423e2b2ad3d24e8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c660ddf57f66e78", + "ami_id": "ami-04f5e911df6fafd28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e0f6239e0abfbea", + "ami_id": "ami-0b69d46afd4d620b0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2fa1d3ea9272caa", + "ami_id": "ami-0424e141104b33f27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026d869c538fb9cad", + "ami_id": "ami-0b4793e87f9ca8769", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dd79a478ef2a81c", + "ami_id": "ami-06af2836669f050d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8b097bc318373e7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0ed1560bb509908b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055691e79320cfd0e", + "ami_id": "ami-0099ea0eda21b41dc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d201513065e491a4", + "ami_id": "ami-0c9e8319eecd29f44", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8600d2547675724", + "ami_id": "ami-06e89e6310ed62b9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b70b04940eb6d388", + "ami_id": "ami-09828b3adacf5de31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fad19977aad9d17d", + "ami_id": "ami-0b1ddf3b2ec659a5d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cbb3456c28d5f79", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b90f1d41bfc9384d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f76165197ae7f7a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-01a655ab9ee3a7e17", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1122aba4476525d", + "ami_id": "ami-07cf7fe7c46346d92", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c865e0f6120c0c63", + "ami_id": "ami-0bb46cc2aa89cf874", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2765,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07091d72d3f196495", + "ami_id": "ami-0bcd24d57866f856b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095db8006d4a6555e", + "ami_id": "ami-08ce40082c064ebcd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c6b536f410fe9aa", + "ami_id": "ami-0de034380407e9ac2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074b3bec3ed0e69b8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "ami_id": "ami-0fad19977aad9d17d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210819-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a32d9b36af77b72e", + "ami_id": "ami-01de36b1b2e2d98f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b43af010ed134ece", + "ami_id": "ami-039bb4d7fe1979807", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d02aa42bf0edb7d1", + "ami_id": "ami-03dfa6f29c758d66b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f7ef57680985bbe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-00c1d905453440e91", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b8d749575e1cc1a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fb0e4009394f13db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba2904a0623b3b27", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "ami_id": "ami-066665d8473be90b8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210902-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05db638db4083f945", + "ami_id": "ami-07d8ede6b44c24268", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb4933bf0f2ec595", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "ami_id": "ami-06759db879dd8410e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea2db48107931458", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", + "ami_id": "ami-064cd9123f2cab323", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ff96c48728f029c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-008bd8c850925e558", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052fcb1b7ec74b9c7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-08c1a891ca39bb035", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3005,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01de36b1b2e2d98f0", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-05b1be95a7823c3b0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbfc0960c7c81bec", + "ami_id": "ami-063077360198a3c6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210202-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c8ef3e310fe5dc7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "ami_id": "ami-0725760eac0602582", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e6382ac1e3e8349", + "ami_id": "ami-04a735b489d2a0320", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053fd71b7bde5800a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6d5529bcaaab049", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f357681ff81d029a", + "ami_id": "ami-082f8df526a2f6a79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad7078644f90bb2c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210121 arm64 ECS HVM GP2", + "ami_id": "ami-02a4c3d081eb08097", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd1bbdcf3bc56a83", + "ami_id": "ami-01ad4a30f7d26b061", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04644d06307a7b335", + "ami_id": "ami-0f338271adeb38855", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bafe0fad2b34560f", + "ami_id": "ami-0ea322c77fc5ff655", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3165,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06575b946c18c734a", + "ami_id": "ami-07199dfe3cb5abb3f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d9c8ed098d536c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0049422eda1bb52a7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a7c6c5fdc816432", + "ami_id": "ami-08c047cf7fd9b70c5", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05adc0943b5c2899f", + "ami_id": "ami-09be0ed865d76f57c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc9ec58a64099403", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-0b1f2d638a680edf2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5088828379afba7", + "ami_id": "ami-0374741421f827827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06eb554b6e6b096c7", + "ami_id": "ami-06f5620b4551acc4d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09351a3afe4fa9eeb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b80c5ae33850c6f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0966831dffd7e915a", + "ami_id": "ami-0a52e05214d8dc2a4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b63b8d06ce4db732", + "ami_id": "ami-051faaeb38e8fec2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190321-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0358ca9c980a49a61", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-07e356cbd940a6e43", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075d1fc51b6ae4870", + "ami_id": "ami-02e4a173c5142d7a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c2bb8eed5749bcc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01f3dc6656effd4e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056a8d945ddfdfe8f", + "ami_id": "ami-0763fff45988661c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0013f7c005123f191", + "ami_id": "ami-029678e4f0fddbf9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00329dc67b199c6ed", + "ami_id": "ami-0dca70218ac24bd38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b96940b64c926e3", + "ami_id": "ami-057ff763763055073", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d0ab405e6a32def", + "ami_id": "ami-02dead3b82003d918", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09675b12122481357", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04b6d7efc25a82f71", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5c7bfb31b5e577e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", + "ami_id": "ami-052d076b09200dd2c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016d3c75481ae6b79", + "ami_id": "ami-0a92d93fbaf67fda7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ce5b1c8cca6f467", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-002491bf297a7838d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e24606e4e1826efe", + "ami_id": "ami-036661d040bb0df2e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b4167119a1a8af0", + "ami_id": "ami-0495d0d4c0c01a002", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0026d70bfe392949d", + "ami_id": "ami-0d4fecf0f502472a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0962ed30e1e6bd35f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-053fd71b7bde5800a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4d22ab38a6e8e2f", + "ami_id": "ami-08681de00a0aae54f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffb5f4e03c892bc5", + "ami_id": "ami-0d611708103529858", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edf19001c48838c7", + "ami_id": "ami-0cce6d42057730765", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee84a3224f9d5c20", + "ami_id": "ami-036b72d308fc0682d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c596642496cf4062", + "ami_id": "ami-0b07d8cf063973670", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3661,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07845e44ed9a98fad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09ffdd43fd4c7ed9a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0547b6c14aa622f1c", + "ami_id": "ami-03179588b2f59f257", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f97a8c11f6d8e29", + "ami_id": "ami-03a52109e6b6a896b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e153964328957a8", + "ami_id": "ami-060ec39b77d728799", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094f5bccdde41dbe8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-0bdefa2ae23d38851", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bbc04d168366d27", + "ami_id": "ami-06eda73e98c475507", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060107a83b374ef7b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-050e20903bac9f61c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0055994fc4655e79b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-0a68828a11d23d504", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0646a02ce2da5a207", + "ami_id": "ami-09281bd684c755a65", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db78dede3fd15c0b", + "ami_id": "ami-0f716ef06165b6e61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa2ad3f51711653a", + "ami_id": "ami-044c2ccece2d7df4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045cfe0fb4cb2da95", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "ami_id": "ami-0068ba22cff229c5b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b9c03dc115828a6", + "ami_id": "ami-0fcfb0266308303f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1ba9ab25da7f1d5", + "ami_id": "ami-0ba46945fe4414e8a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e781fa005b6a4cf", + "ami_id": "ami-0a224d669953e42f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b595e6eef15f2e74", + "ami_id": "ami-0b8933b7fd93e97e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b084b13eedc8061", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", + "ami_id": "ami-0b5ab46d1bb6aa49d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f519b7a14dde593c", + "ami_id": "ami-03fa5108d9164d2a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023ec1c000b5029be", + "ami_id": "ami-084d4626fec6f3ca3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d106750277e63e3a", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", + "ami_id": "ami-0d65fe8bdc931e7f1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2e42cc34dd05b0d", + "ami_id": "ami-07bb8b208a1d5a801", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f41637f4f807814e", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "ami_id": "ami-0427f4a4a5576d4bd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bda03d1672ff597", + "ami_id": "ami-0496e471c5b4f61e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069d22fdb4b08241a", + "ami_id": "ami-0d96e92012d4089b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a4c3d081eb08097", + "ami_id": "ami-01703abf1e5cede54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4ea2004b1254071", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.t x86_64 ECS HVM GP2", + "ami_id": "ami-020a0f46c407184ea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.t-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09be0ed865d76f57c", + "ami_id": "ami-02378d43835d39ff4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00521bdbbf6ebba5f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-0000ee17a312c0d0f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08798a629a97d8551", + "ami_id": "ami-06475a21a71ed909c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2e24673baad078e", + "ami_id": "ami-0eb335c2e9c9cefea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0855568930ba72f34", + "ami_id": "ami-03c194c58b1b788aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004cb6b845589bef9", + "ami_id": "ami-0031a745da0bb1445", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02efda1c9acf581f9", + "ami_id": "ami-0a893420e4a75c534", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aff740d4f39d9827", + "ami_id": "ami-0ee091be3145fd1e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b62cd163f837e749", + "ami_id": "ami-0103a5ea780d1497a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f64c69840caa891e", + "ami_id": "ami-02894e8acfb0fe8c8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ed89cb05c02ce1e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02fafeee0a3a29281", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e330faed58ea9b29", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0010cee1268e08d68", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd2a3a98f50b4740", + "ami_id": "ami-02d3387b174d5f524", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041843b72dde36df4", + "ami_id": "ami-0b146a20f84891ad2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01503a703029d506e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-04eabbe898ffa5851", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06795e3b9439f8c0a", + "ami_id": "ami-0f59d95a497685c67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4333,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b724a436b2f1bf3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "ami_id": "ami-0f2d79a6f477dae20", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee0304a4d95aef69", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07bd0fbe229b8227f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d4b859d3c8a9010", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-0f6b41f5f02fdb35e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03596ac16ae084511", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211020 arm64 ECS HVM GP2", + "ami_id": "ami-081de1a6040ee9d31", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-arm64-ebs", + "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ab17dfa42b980b9", + "ami_id": "ami-07932765b08ae3232", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d0281a5868f0b5e", + "ami_id": "ami-064b9714d515c0d7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f98514fbfdf4660", + "ami_id": "ami-0d8bd6ea89c6c9d3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016802197aea037d4", + "ami_id": "ami-05b9ad37f4bdd72f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dca23eec4c8dc45", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-0c1eb6a63ac3b9bb1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190614-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cce6d42057730765", + "ami_id": "ami-08aba6714243b1bf9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200813-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d08fd634b87db878", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "ami_id": "ami-04ff080014e51537b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063c89f793deac642", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-0fe9b4e88469a80e2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2aaee29b2f7ef46", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-0681e2fe559bb4f3f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017299da407ce51ee", + "ami_id": "ami-07f76165197ae7f7a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da3f6102efc659cf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-0b91177238fc9c1b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0711ef27ddcb4577b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-02898546ea44fc778", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029678e4f0fddbf9b", + "ami_id": "ami-0547b6c14aa622f1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00bb9020b4f098329", + "ami_id": "ami-09951948f8ea75932", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d2cf3cd86e0ea76", + "ami_id": "ami-08952cc3c3b6e7723", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201013-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9a067fe76fe78bf", + "ami_id": "ami-0752b1d81232e2008", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051c3f475d316437f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210802 arm64 ECS HVM GP2", + "ami_id": "ami-01970e8e5f147178d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088eebdee8784bf4b", + "ami_id": "ami-0c82489c30e04140d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010cecfe308ec7f44", + "ami_id": "ami-037b37aa454cfdecd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b6d7efc25a82f71", + "ami_id": "ami-0aad3760f55ba06c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed1560bb509908b1", + "ami_id": "ami-0145b625b17242573", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0031a745da0bb1445", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-0fb00550ddcf8a6e4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032bde7ec9334158e", + "ami_id": "ami-00102a56092c82448", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a54c98167bdbd4a5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "ami_id": "ami-059e2d0957dcaeaac", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2af069d9039587c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-0a9f99e7067f14c27", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4797,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03179588b2f59f257", + "ami_id": "ami-0d567487508d0833c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d29e33605765ba5d", + "ami_id": "ami-021541b9f47c3c5cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b259cf26af37c3a", + "ami_id": "ami-0988436332d0dd80b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004d2a2ebfb8d5766", + "ami_id": "ami-05bc7e16e8c5847bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0507900fcd2e544ec", + "ami_id": "ami-075a465239dedd54d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087da40e7559e6193", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0fea584c98632306e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f07e4e8715e65961", + "ami_id": "ami-0c3e672a10e2c13fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4909,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c660627a82fb24f", + "ami_id": "ami-04e73c8d85e0d6ff9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a21843353f18c86", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-064ec1bb4bc7159eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036934c06085e0c05", + "ami_id": "ami-0eab5973a4ee406ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0caa436c5566f8b9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", + "ami_id": "ami-097960f93234ea664", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0725243f5b26f0c", + "ami_id": "ami-0e82876f0279700c6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084d901e63a6a7a1e", + "ami_id": "ami-02c660ddf57f66e78", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e4a173c5142d7a6", + "ami_id": "ami-0caa436c5566f8b9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c4258ce9b81642c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-068db5185cc397a92", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0769ad20e12396a0a", + "ami_id": "ami-08c834e58473d808d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3e672a10e2c13fe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0155b87c97080709d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097960f93234ea664", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "ami_id": "ami-0c76d299e72176192", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4cc739f9006e747", + "ami_id": "ami-0fda573abc329ed59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094c588953f6bb41d", + "ami_id": "ami-0eb5702cf092d5edb", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d23216d0b17f157", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-09c88bbcb6757b619", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0703d0ef2ace5b561", + "ami_id": "ami-0ad0ec682fc4e9c1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d846042730bcbbb5", + "ami_id": "ami-0454831ad6419901b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0766484859707fe1b", + "ami_id": "ami-082f0b7a2739d8de0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06024841798d8f6d3", + "ami_id": "ami-0ea4c84455ccddbd8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bc4efd944c41c69", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "ami_id": "ami-02c9d7ba0aaef8837", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20201209 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6bc42de7e557b59", + "ami_id": "ami-011feed6bd08b19c2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d179baf46aa9423", + "ami_id": "ami-02a321a96cd528e26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0489ef448228ec2db", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "ami_id": "ami-068ddbef06e0e5d0f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a0270a232f442b0", + "ami_id": "ami-08e781fa005b6a4cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc4fd4cb4c34b467", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0e58605321a25be8d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071d5131a9ed5a176", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-02a43abc7afcabce0", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1643a3ac59a4ef2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-0366776cdec913241", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9eb1f6d521d07d4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "ami_id": "ami-05b729e8219c5d4f3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01450d8adc0a0114c", + "ami_id": "ami-036934c06085e0c05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06790f427f8a781bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "ami_id": "ami-07d1c7515eda71165", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8aadb857b0e04a0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-051c3f475d316437f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031be117d483c506b", + "ami_id": "ami-076918b8c221d2268", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075a465239dedd54d", + "ami_id": "ami-0d106750277e63e3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3462b1ea19fbc89", + "ami_id": "ami-0d8b04defc788bd2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0337de610eccac828", + "ami_id": "ami-07c3d69a91301f698", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057160ce2b1e2388e", + "ami_id": "ami-0b229fb8956ace6cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007484c2c2bf85757", + "ami_id": "ami-056d305ed60a8c958", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068975cf1f6f9f9f9", + "ami_id": "ami-037218ec15fef42cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067f3b20190d6bf4f", + "ami_id": "ami-0293c404bd605841a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a2375cfef712d1b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-08ad5c2a251335d9b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c408a8b71d5c614", + "ami_id": "ami-0451144886bbee7fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0572f5d47a4b120d0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", - "hypervisor": "xen", + "ami_id": "ami-05a945d9e08353ed1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07beb9196f84744a6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-0fabb4367a984049b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bbece3387b2a514", + "ami_id": "ami-03a9b50718282f444", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e82876f0279700c6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-0f8089aa2c658e0cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092ae2dc3b576675c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "ami_id": "ami-0962ed30e1e6bd35f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afd6c9431a9be6a9", + "ami_id": "ami-0472fbde4af3d849e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7933110c7710e4c", + "ami_id": "ami-0abd8e15980efb3c6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047281402e27cf0c5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", + "ami_id": "ami-0bc7f11e875a91d06", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd759f775cff946f", + "ami_id": "ami-009f2f7fbeeefbfea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06db78f8586465c5b", + "ami_id": "ami-0e5088828379afba7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f53880976e2369ba", + "ami_id": "ami-021822ef94a814156", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0850897bcfb101967", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-0a4fc69d083499cb4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0005baddcf7bd41fb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-0b63b8d06ce4db732", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040a7dcfd701fead5", + "ami_id": "ami-05c772839212ea435", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0526caafea7abe42c", + "ami_id": "ami-0cd5f7cdb91b35390", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0505476bb51744ad9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-030a3c0aac93cf290", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5805,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f35062e7f407ce32", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-084ceb2ac4b523463", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3fcf3655e4e637e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "ami_id": "ami-07091d72d3f196495", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a340424294db766c", + "ami_id": "ami-02b9540848dd4195f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20210316-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf0edfd3add7038b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", + "ami_id": "ami-06ee72c3360fd7fad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07932765b08ae3232", + "ami_id": "ami-0c6c393117fdd547a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b07d8cf063973670", + "ami_id": "ami-05d0281a5868f0b5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0267b4c44b04cac22", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.s x86_64 ECS HVM GP2", + "ami_id": "ami-074d8a7495dfd5a79", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.s-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080952ca58eeb6823", + "ami_id": "ami-0a9c3afe374bafa35", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07199dfe3cb5abb3f", + "ami_id": "ami-08e2a6705267dbad2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5949,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cef25d196855a26", + "ami_id": "ami-035e4121ab28d4328", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf2781568620edef", + "ami_id": "ami-0556590a4def95b6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2417de76fc2cc3c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "ami_id": "ami-033b2ecc02f49d4d6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01703abf1e5cede54", + "ami_id": "ami-0ee0c841e0940c58f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9c3afe374bafa35", + "ami_id": "ami-07d02adaf07dfc926", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0451144886bbee7fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f6cbe8f01e6e0080", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1002c2a81c98277", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-09e604c2f331737ee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a624d9beed9c113", + "ami_id": "ami-06cc74de6f755b73f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04160d8890e528009", + "ami_id": "ami-0aa304c4f31fe3d21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047f2650201e31d0a", + "ami_id": "ami-037edace5d7b7caeb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0847264f8522092f2", + "ami_id": "ami-02084c4f47c9a16b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1f2d638a680edf2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-031be117d483c506b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032b1a02e6610214e", + "ami_id": "ami-0a469c04a483c1231", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb0e4009394f13db", + "ami_id": "ami-0502f5e2c7ed3ca69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03944426c0793f043", + "ami_id": "ami-0ee84a3224f9d5c20", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0626449a4905bf95f", + "ami_id": "ami-03acc0fb084500c29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034b5a35635716769", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05e3b7a027fb764b1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033b436c51bcdbc9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-02e0f6239e0abfbea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096e08f9d8a9f57b1", + "ami_id": "ami-06d3e049dd930fad7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f87d679e2fccd272", + "ami_id": "ami-04bbc04d168366d27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ac9b505789fcbe0", + "ami_id": "ami-02763164842d4f3a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0401ff7e39345ec2d", + "ami_id": "ami-09584833cc30ecda3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bb8b208a1d5a801", + "ami_id": "ami-041843b72dde36df4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc8a461ebb1c98fa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", + "ami_id": "ami-060bcbabf79399936", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a24dd0a1f711c291", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-0b79df31cff8be22b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,31 +6745,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048bfa6274cc01254", + "ami_id": "ami-0de9f680eb139f5f2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d013671fdb41ff6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-0e077025c30909820", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6381,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee091be3145fd1e2", + "ami_id": "ami-07b9ff658cef9e09f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcfb0266308303f6", + "ami_id": "ami-05581e24d79ddc96c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b779bb5c1f8d4c08", + "ami_id": "ami-0895981c8dad2665b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05cfb632170b25758", + "ami_id": "ami-095db8006d4a6555e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dbf9dd0307563a3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e53530943a45a303", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d0c363c4cd22d7b", + "ami_id": "ami-0390c31c55dc35ba9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb5777dc3a19f1ae", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-09ab4b51b72020b66", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b9ff658cef9e09f", + "ami_id": "ami-0cf76af6793748e8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad9e88d971ac38f5", + "ami_id": "ami-01503a703029d506e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1a4e01fd7ccf44a", + "ami_id": "ami-0a74600a766240274", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e89e6310ed62b9f", + "ami_id": "ami-0bd1bbdcf3bc56a83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08df3b1d409883919", + "ami_id": "ami-04b614331a6ead963", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afd7d28133ee3381", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "ami_id": "ami-0fd887c1c82174a76", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094e370bc3bb20850", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", + "ami_id": "ami-016d3c75481ae6b79", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1128510bc4a3843", + "ami_id": "ami-040ff9a34b6b2a8dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ccf242ab11f0554", + "ami_id": "ami-0818b562f27619a99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0039af6c6e8269e15", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01e9b1393f6f885a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00957d2a0b74e97d4", + "ami_id": "ami-0a3cde619b563ae0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d15066b7869438ea", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c9def8def64a90c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d02adaf07dfc926", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-0ffb5f4e03c892bc5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6701,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043df6ccca357ecdf", + "ami_id": "ami-01b2bb76dbce0ccc3", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a945d9e08353ed1", + "ami_id": "ami-0a1f76a09efad9619", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c32a62969bbc83ce", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0ea2db48107931458", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-256c15c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", + "ami_id": "ami-0242df57ec05de54d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0712d45e964e4be04", + "ami_id": "ami-0ca6d4eb36c5aae78", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0103a5ea780d1497a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "ami_id": "ami-0a7edd69bbca1d1f0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.x x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.x-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ad4a30f7d26b061", + "ami_id": "ami-0e1aa8c2e9d719f58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d57dfaac90c9293", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220318 arm64 ECS HVM GP2", + "ami_id": "ami-0b88a6b8e63fe7c4b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010dab37297c19748", + "ami_id": "ami-0e964ad1036d88610", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0835fb5e683789ecd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07db9ecc68d336311", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b1f095307baa177", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-0766484859707fe1b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c98c6fe6f20c437", + "ami_id": "ami-0ff8df45400dc4e3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0013c26b21fd14031", + "ami_id": "ami-016802197aea037d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e58605321a25be8d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-06835586e21c19dea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01612020450e98286", + "ami_id": "ami-0556d3f1efa9636e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04958171303876da0", + "ami_id": "ami-0b43af010ed134ece", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b801b65918d03239", + "ami_id": "ami-0ec3dcc987d10643f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07184de0e75630922", + "ami_id": "ami-0cf2781568620edef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0010cee1268e08d68", + "ami_id": "ami-0b6cb315bb78dc140", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09398298c8de034b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0faa3d854e450a6e6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0988436332d0dd80b", + "ami_id": "ami-0e6083ac154674e9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190127-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9443f156c3ec804", + "ami_id": "ami-0cfbea394f9891edd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0231081bed20efd8b", + "ami_id": "ami-0f6872111e3f86fbb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04afc8b795c4b8b71", + "ami_id": "ami-05bda03d1672ff597", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01215dfd2ef9a9d61", + "ami_id": "ami-010cecfe308ec7f44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ae95482240c819e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "ami_id": "ami-04d57dfaac90c9293", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220318 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b18b49afd5698a84", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-010a40dc2f8f97feb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0168f9134cb96e399", + "ami_id": "ami-f3f8098c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0943d79d548b6bf3a", + "ami_id": "ami-060107a83b374ef7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6cb315bb78dc140", + "ami_id": "ami-088b25c260467447d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035e4121ab28d4328", + "ami_id": "ami-027eb64adb0164f57", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a09936d377567ff4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0633a17b2b57bf1c9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cc74de6f755b73f", + "ami_id": "ami-05db638db4083f945", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f59d95a497685c67", + "ami_id": "ami-a99d8ad5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010fc17871c820993", + "ami_id": "ami-0a09936d377567ff4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08952cc3c3b6e7723", + "ami_id": "ami-09ca9c792b90c0563", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a6e9551ec085e95", + "ami_id": "ami-062962eab8dde2393", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd4bb49e3134c823", + "ami_id": "ami-078c0d9ab81c5e3e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6b33396fa56abe8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-0f3be93b9ff21e167", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9b5cc9496576dfa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "ami_id": "ami-07fefcd9bdc24f227", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0390c31c55dc35ba9", + "ami_id": "ami-0168f9134cb96e399", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dc182d070160fce", + "ami_id": "ami-0dce80ca0967ce623", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff19895cd07d6496", + "ami_id": "ami-056690359c9aa7d5f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ef246396ac16543", + "ami_id": "ami-0b9a067fe76fe78bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03114e040779d982a", + "ami_id": "ami-02cf490adab546176", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd33d221995c1c55", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-043df6ccca357ecdf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079282e2a310098c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "ami_id": "ami-0a0023bf44d7bf97e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022f49f8a3418ea67", + "ami_id": "ami-0a83a6b5b4af0163c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f839709b07ffb58", + "ami_id": "ami-0999dbd522282f9aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8e7a6d2d5266274", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "ami_id": "ami-0f1643a3ac59a4ef2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f13068003e3f9b6", + "ami_id": "ami-0db78dede3fd15c0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebd293956ce449d9", + "ami_id": "ami-067f3b20190d6bf4f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09169dbaf39f37881", + "ami_id": "ami-06dc182d070160fce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f386dc4885ec169f", + "ami_id": "ami-0826dc8e3bb2dda7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d5bddc0c9695f8c", + "ami_id": "ami-0dfdfc8b1610d7337", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5f884dada5562c6", + "ami_id": "ami-0c118943bd2f1ae02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.f x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.f-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f8d94a2c7fddbc2", + "ami_id": "ami-08ab4fd4fd271e3c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064b9714d515c0d7f", + "ami_id": "ami-051215f238bccbd26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084c38188165973db", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-03114e040779d982a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0338ad83d373558b4", + "ami_id": "ami-067bdd209ca2241dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa998afcf8084b59", + "ami_id": "ami-0a1a4e01fd7ccf44a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edfd71f026c31f0d", + "ami_id": "ami-01095f41e2e233ffa", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b11787f6fb7005a9", + "ami_id": "ami-081add15c8d7269ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfb5e7c31b73ae98", + "ami_id": "ami-0c09def73ce08a205", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddda3130219aa90b", + "ami_id": "ami-03435bdf0fba7d43e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2f0f6a9a3d960a6", + "ami_id": "ami-0039ec23c625367ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbcab4eeccb29e30", + "ami_id": "ami-038052796b96c6ecb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032d502e57548c71b", + "ami_id": "ami-0d1d2d267e9f62cad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098d30bbda339e859", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-0896000d5403831c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d93b3d742dc5fd6", + "ami_id": "ami-0d201513065e491a4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7368a7a931fee7f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "ami_id": "ami-0e2af069d9039587c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087d2eca241bcafaf", + "ami_id": "ami-00f0b7d50890e2f02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f20e6925a68e9f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a09139a9d1dd49bf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0633a17b2b57bf1c9", + "ami_id": "ami-02546b361e9bbf323", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bbb60e3ec48a8f9", + "ami_id": "ami-044c75f886d133e0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0000ee17a312c0d0f", + "ami_id": "ami-088d9a38123ee2d21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e2a6705267dbad2", + "ami_id": "ami-06482d4f804adef6c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d71a3ea8e6c55c9b", + "ami_id": "ami-0b595e6eef15f2e74", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d4b8058db9e5fb3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-0d1b351d882f80bda", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df997e8ed0f79566", + "ami_id": "ami-068975cf1f6f9f9f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e52ebe16985adb0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-0dc810827c2741e93", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014077712514e9b20", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "ami_id": "ami-0edfd71f026c31f0d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faa3d854e450a6e6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-067f84295f16b5eeb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c75b5357dfa0597", + "ami_id": "ami-0a62ac074b57314ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009ba048afeeb4e50", + "ami_id": "ami-03bd67ff481a13d7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e933297ad3190482", + "ami_id": "ami-086ca990ae37efc1b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084cb340923dc7101", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", + "ami_id": "ami-070928a0ea2cca929", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee74614fb0497aa8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00f63539464af1e10", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08438ff304613ed61", + "ami_id": "ami-09169dbaf39f37881", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08739004f9fbd2f1e", + "ami_id": "ami-01612020450e98286", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0896000d5403831c0", + "ami_id": "ami-0337de610eccac828", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4750e62374e797f", + "ami_id": "ami-07b645ec0e3e54e1b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff8df45400dc4e3d", + "ami_id": "ami-0fccdb46e227b9538", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075ad203822cc266b", + "ami_id": "ami-048bfa6274cc01254", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06475a21a71ed909c", + "ami_id": "ami-0a50b50d3f0255ea3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0895981c8dad2665b", + "ami_id": "ami-047281402e27cf0c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09400a5c36cb0ad90", + "ami_id": "ami-0b48c464a0a50d955", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010a40dc2f8f97feb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-0a2f0f6a9a3d960a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07be8f61e3569b360", + "ami_id": "ami-0572f5d47a4b120d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b146a20f84891ad2", + "ami_id": "ami-0e2bac67ab1818a2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e438d0329724cd4c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-01b4618bd94fb0b84", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e1fe2d32ac41230", + "ami_id": "ami-01c4a3ca4b5f6e5e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210708-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ed2edeed923e721", + "ami_id": "ami-0f64c69840caa891e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +8870,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006e3e3b382331f34", + "ami_id": "ami-0f74fc09b7f6f7f07", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-075ad203822cc266b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b60185623255ce57", + "ami_id": "ami-0866ba41ed184f73c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002491bf297a7838d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d19c8f61da15625f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05054360aff58719e", + "ami_id": "ami-036a253e8bad90c00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a92d93fbaf67fda7", + "ami_id": "ami-08739004f9fbd2f1e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c345f1b6aa4652f6", + "ami_id": "ami-09947c2dc48cb920a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d65fe8bdc931e7f1", + "ami_id": "ami-0b08610a6fdbdf2f5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea322c77fc5ff655", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", + "ami_id": "ami-04ce6aa71e4376864", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b56c805c4165e39e", + "ami_id": "ami-087da40e7559e6193", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c194c58b1b788aa", + "ami_id": "ami-08f8d94a2c7fddbc2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056d305ed60a8c958", + "ami_id": "ami-09351a3afe4fa9eeb", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd5b30f9b0a4de8e", + "ami_id": "ami-09c8ef3e310fe5dc7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8541,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3e9a6f074dde6e2", + "ami_id": "ami-0bc4fd4cb4c34b467", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0463acfa38e44479b", + "ami_id": "ami-0a9ba282e95c848ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082f8df526a2f6a79", + "ami_id": "ami-00afec874ecbf7b2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064ec1bb4bc7159eb", + "ami_id": "ami-00d65eac88e8a5816", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4df76af35ee695d", + "ami_id": "ami-01b4167119a1a8af0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05363e7ca6af61275", + "ami_id": "ami-02702445bc94fa217", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb45bf8be760ff5d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b779bb5c1f8d4c08", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d96e92012d4089b8", + "ami_id": "ami-009ba048afeeb4e50", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8be33c358a98829", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0492cd6ea67bdc61a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c40b830d3c216e2", + "ami_id": "ami-0f87d679e2fccd272", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09951948f8ea75932", + "ami_id": "ami-0aff740d4f39d9827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0417c5084c177618a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "ami_id": "ami-0505476bb51744ad9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0920e1db62029f4d1", + "ami_id": "ami-04b084b13eedc8061", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b32bddcf15b4eb6e", + "ami_id": "ami-081d32b82f0ce942c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d567487508d0833c", + "ami_id": "ami-08d175f1b493f205f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b9540848dd4195f", + "ami_id": "ami-0ca7fab7b651d4c65", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210316-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-f3f8098c", + "ami_id": "ami-097fba18b80faf614", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f716ef06165b6e61", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-06ec07e8c7c1f6091", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b73c3146cc77de0", + "ami_id": "ami-08ba21da116c1c02d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07169933192804477", + "ami_id": "ami-0fc12bf8298a34e36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a1c5579a7e6ef33", + "ami_id": "ami-01faac4984b9ff42e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1eb6a63ac3b9bb1", + "ami_id": "ami-076afc413766b50f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190614-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2f9088980d57faf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "ami_id": "ami-0850897bcfb101967", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00270622c0d464e56", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fb2b610c14ab19bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfe368dbeea6f1dc", + "ami_id": "ami-096e08f9d8a9f57b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f5620b4551acc4d", + "ami_id": "ami-0c647eb45b1429b1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0127c05c46ec414c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "ami_id": "ami-0dbfc0960c7c81bec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0471cad87b2bfe928", + "ami_id": "ami-0b5a77676363b3de2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0517c1ec06322c08b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-0d7f22d6755eea788", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c3d69a91301f698", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08b474e263590e77c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eddfbcb2ffda4640", + "ami_id": "ami-0f9b5cc9496576dfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021541b9f47c3c5cc", + "ami_id": "ami-0f1128510bc4a3843", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0825d169c70881cd7", + "ami_id": "ami-05b62dadbf3d75bf4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b43c0c0a3ae81be", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "ami_id": "ami-00ec47715ffdb5518", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078c0d9ab81c5e3e0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f35062e7f407ce32", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0039ec23c625367ff", + "ami_id": "ami-07be8f61e3569b360", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b729e8219c5d4f3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "ami_id": "ami-0ae451dcc36be7bb3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e09fe1f0eb14b55b", + "ami_id": "ami-0ccf28d7b4966979d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abd8e15980efb3c6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-0920e1db62029f4d1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010f1a60fb6a98d01", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-072f0ffb9f5abdd87", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057796497e41a1fab", + "ami_id": "ami-0075096e2859693cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057ff763763055073", + "ami_id": "ami-0abd1ae4c36b91fc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064cd9123f2cab323", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00494661595ac2b60", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f338271adeb38855", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "ami_id": "ami-0c3e9a6f074dde6e2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9e8319eecd29f44", + "ami_id": "ami-075e2cac7e99828a8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c772839212ea435", + "ami_id": "ami-0b230f4e50e7b4298", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3006daefdd3b5d2", + "ami_id": "ami-0a9d6be36a45666cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b66758b5f93f6d51", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-041ebf62ac303b3c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b80c5ae33850c6f5", + "ami_id": "ami-0eed8ba9ae3fc0a7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1c92cee08df5b3b", + "ami_id": "ami-07a1c5579a7e6ef33", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a735b489d2a0320", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "ami_id": "ami-0b85fb5ee19e58b8f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a52109e6b6a896b", + "ami_id": "ami-0e8600d2547675724", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1775a3c302d45f3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20200905 arm64 ECS HVM GP2", + "ami_id": "ami-0b786f78c8434ba76", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d96043019b911dc3", + "ami_id": "ami-0646a02ce2da5a207", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5bf648916654560", + "ami_id": "ami-0005baddcf7bd41fb", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0424e141104b33f27", + "ami_id": "ami-00ed2edeed923e721", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdee34a8d358a620", + "ami_id": "ami-0d846042730bcbbb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf76af6793748e8f", + "ami_id": "ami-07845e44ed9a98fad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0957249ebe74a0d4f", + "ami_id": "ami-00c408a8b71d5c614", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a2cf9b3a87e729f", + "ami_id": "ami-00f71eca2099f1d38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056690359c9aa7d5f", + "ami_id": "ami-01a818286958067c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035a99fea66fca7ad", + "ami_id": "ami-0a423b1f7ab64bc09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0073ef7ae2e1a1c68", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "ami_id": "ami-07c660627a82fb24f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071b9ab8b4774a54c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08ae95482240c819e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076afc413766b50f5", + "ami_id": "ami-0b662e4fb7756f8fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041ebf62ac303b3c3", + "ami_id": "ami-039eab797f0355eee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eff6e18314dcb341", + "ami_id": "ami-0b155218d6916661a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037218ec15fef42cb", + "ami_id": "ami-0e774845c219c62f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074d0a32aaca40b79", + "ami_id": "ami-0e4d22ab38a6e8e2f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09828b3adacf5de31", + "ami_id": "ami-07ab97183b907936a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036661d040bb0df2e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "ami_id": "ami-017299da407ce51ee", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052715f2b6b530c5c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09fb85065ba215934", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bd0fbe229b8227f", + "ami_id": "ami-0e4750e62374e797f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03914b93bdf76c7c5", + "ami_id": "ami-08dd79a478ef2a81c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5c4a1d674980dd6", + "ami_id": "ami-0ddda3130219aa90b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de034380407e9ac2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-052715f2b6b530c5c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059fab84a3cc4b17f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-08ef246396ac16543", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b07a6e4735fb50c9", + "ami_id": "ami-0c6bc42de7e557b59", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bce5a96eae5a67c", + "ami_id": "ami-0026d70bfe392949d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9d3a1f64a4e952c", + "ami_id": "ami-069a4dbb408cb3435", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fad2cf04f5c87a97", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-0e5bf648916654560", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b662e4fb7756f8fd", + "ami_id": "ami-041f4054c17093ce7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbd0b1215526ea05", + "ami_id": "ami-0711ef27ddcb4577b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063077360198a3c6d", + "ami_id": "ami-0dd329f1a3978a31b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ff2c0e1c4b1661f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", - "hypervisor": "xen", + "ami_id": "ami-0ce14253719296f3d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01095f41e2e233ffa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "ami_id": "ami-0beeb550824c38c69", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4e2eac39aab67fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "ami_id": "ami-02a6ca9802e7f97f9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211209 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067bdd209ca2241dd", + "ami_id": "ami-0404c4909c1117ad1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08423e2b2ad3d24e8", + "ami_id": "ami-0e744640a683f8b3a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aa1b1b5225aeac1", + "ami_id": "ami-02a0270a232f442b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f0b7d50890e2f02", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-0ee0304a4d95aef69", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e993a27d22fca827", + "ami_id": "ami-0bd91163b93a73fe1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b155218d6916661a", + "ami_id": "ami-06024841798d8f6d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04953f6ff333944b4", + "ami_id": "ami-0bf4e5492ba545251", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e9b1393f6f885a6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04d4b8058db9e5fb3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3cde619b563ae0f", + "ami_id": "ami-06575b946c18c734a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfdfc8b1610d7337", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-0693553bc7d643c93", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a68c6f3f6d5aab35", + "ami_id": "ami-04a6fd55ba2e134bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfd079c617c2487b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e4cc739f9006e747", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073d68c1160921246", + "ami_id": "ami-01787191377d0a411", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9a97b3af14eceb0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-04d013671fdb41ff6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6cbe8f01e6e0080", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0526caafea7abe42c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd329f1a3978a31b", + "ami_id": "ami-0b8db47483f7b1c79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052f2fa11c7145e04", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", + "ami_id": "ami-070a0dadf84210633", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028e46812532b667a", + "ami_id": "ami-09e52ebe16985adb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079d813d04571915e", + "ami_id": "ami-0013c26b21fd14031", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190107 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190107-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027eb64adb0164f57", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-0b18b49afd5698a84", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b2d07efb11f520b", + "ami_id": "ami-07bd3458cd515f9b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0752b1d81232e2008", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-0ad7078644f90bb2c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee1b6c2fe477fe59", + "ami_id": "ami-0cdf0c91f1d10e38e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088b25c260467447d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "ami_id": "ami-040c7db8985d96325", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ffdd43fd4c7ed9a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-02c75b5357dfa0597", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bf8376fd92e61bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200915 x86_64 ECS HVM GP2", + "ami_id": "ami-03596ac16ae084511", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211020 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200915-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a232f93c48d8b96", + "ami_id": "ami-0f4146903324aaa5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035d9640118d0afca", + "ami_id": "ami-0231081bed20efd8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fe2425a42e8e068", + "ami_id": "ami-03003e0e2f7489bfa", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a09139a9d1dd49bf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "ami_id": "ami-030330c0ef62a190b", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b37663be8bbe0d3a", + "ami_id": "ami-04ba272e7d4272771", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.k x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.k-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ba5210887f6b9c3", + "ami_id": "ami-01657dbb023c82c11", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec3dcc987d10643f", + "ami_id": "ami-00b259cf26af37c3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c2285ccb30d1614", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-0fa2ad3f51711653a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081add15c8d7269ec", + "ami_id": "ami-08d2cf3cd86e0ea76", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20201013-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03003e0e2f7489bfa", + "ami_id": "ami-0c0ca60dcad8fe10c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fc69d083499cb4", + "ami_id": "ami-00329dc67b199c6ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210514-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a423b1f7ab64bc09", + "ami_id": "ami-0c2f76be1028ff599", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d513081f78c1a42", + "ami_id": "ami-0cff62d83189e5c67", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfbea394f9891edd", + "ami_id": "ami-084d1b533070a8b53", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009f2f7fbeeefbfea", + "ami_id": "ami-0c2bc7fbaf3e42b3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c56cf7888ba280e", + "ami_id": "ami-06790f427f8a781bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ff53aea7883cf67", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09ed89cb05c02ce1e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b296a384694dfa4", + "ami_id": "ami-0a4fea20b3b73e3fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049db30b91f71cec6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-010fc17871c820993", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063f75a211902eff8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-055691e79320cfd0e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04dc27fdd74087776", + "ami_id": "ami-09398298c8de034b7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f17a6f704de15899", + "ami_id": "ami-0fa4aa6e5baffa0ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e81245ac751f6db", + "ami_id": "ami-08c7a300a7b644aa7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,31 +11403,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07839df9eec55ac8d", + "ami_id": "ami-0e006ea580e9717c4", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2019.03.07", + "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a130e7ffeaf9192a", + "ami_id": "ami-04c3cc448ed26388d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00271158626748a42", + "ami_id": "ami-075d1fc51b6ae4870", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c04d0a264f17259e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-02af03988afacfca4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b4ae0549c4d0d45", + "ami_id": "ami-016aba5feb2a70f73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b30350a7e009fc9f", + "ami_id": "ami-0c7b0735348cc07b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012257be7b9aa638a", + "ami_id": "ami-068a18571f2d1d5a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10829,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021822ef94a814156", + "ami_id": "ami-084c38188165973db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fb85065ba215934", + "ami_id": "ami-0a788951425d127f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a6fd55ba2e134bc", + "ami_id": "ami-0f1002c2a81c98277", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a893420e4a75c534", + "ami_id": "ami-0830b2f458c922c25", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,31 +11590,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de9f680eb139f5f2", + "ami_id": "ami-0d9eb1f6d521d07d4", "architecture": "x86_64", - "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a91dfac25790c32", + "ami_id": "ami-0c7af38919cf6a55c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041f4054c17093ce7", + "ami_id": "ami-0b30350a7e009fc9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0492cd6ea67bdc61a", + "ami_id": "ami-04160d8890e528009", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064bf9846657106e1", + "ami_id": "ami-0fdaeee4d1d9d5a83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eabbe898ffa5851", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-0467c3f85975d8a26", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0117f1e9973b67764", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ad9e88d971ac38f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c918fb78eb0e78d", + "ami_id": "ami-0662a9e48490a50e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06529e47653e571ff", + "ami_id": "ami-0134efac34652d6ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a1805a6f5355d52", + "ami_id": "ami-07695fdb89e41b9f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ebda6a9a9466fa3", + "ami_id": "ami-007484c2c2bf85757", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220421 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd5f7cdb91b35390", + "ami_id": "ami-00dee0b525da780e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8933b7fd93e97e9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", + "ami_id": "ami-0862d756a69c011c4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081d32b82f0ce942c", + "ami_id": "ami-0c4f6037b71571806", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b8bec201793dcb6", + "ami_id": "ami-05054360aff58719e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e0a09b53246fc1c", + "ami_id": "ami-0ce793e8219fd5e8b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b614331a6ead963", + "ami_id": "ami-03f98514fbfdf4660", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092f9be53fb4d1170", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-0dbcab4eeccb29e30", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe9b4e88469a80e2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "ami_id": "ami-012fb2e859402ad58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02785c360673fb843", + "ami_id": "ami-0e6cc797d8a36c7cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051215f238bccbd26", + "ami_id": "ami-0267b4c44b04cac22", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.s x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn-ami-2018.03.s-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,31 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7e661324c1ffbcb", + "ami_id": "ami-0489ef448228ec2db", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0156666b857dff108", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfb47194b0752293", + "ami_id": "ami-036bc1741361fe5d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1d2d267e9f62cad", + "ami_id": "ami-04c6b536f410fe9aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea4c84455ccddbd8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a130e7ffeaf9192a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0081393cc2f713db6", + "ami_id": "ami-08985809101457c72", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0556d3f1efa9636e6", + "ami_id": "ami-0411dcc56267b8be1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eed8ba9ae3fc0a7d", + "ami_id": "ami-06795e3b9439f8c0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c630bae9dbba70f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-0a32d9b36af77b72e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05709a752ab2dd82f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-0e438d0329724cd4c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a48d8c856acdd0b1", + "ami_id": "ami-02785c360673fb843", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-2b4d26c6", + "ami_id": "ami-09b8bec201793dcb6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cbb430e58b06641", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "ami_id": "ami-0f53880976e2369ba", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0495d0d4c0c01a002", + "ami_id": "ami-0426fed36770173b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1e880452cd345b7", + "ami_id": "ami-0c596642496cf4062", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0826dc8e3bb2dda7f", + "ami_id": "ami-0c345f1b6aa4652f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084ceb2ac4b523463", + "ami_id": "ami-07864337e7a80c504", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb548ccfd2a33544", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", + "ami_id": "ami-080952ca58eeb6823", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011991d2ba82064d5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "ami_id": "ami-045cfe0fb4cb2da95", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03acc0fb084500c29", + "ami_id": "ami-09e1fe2d32ac41230", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c88bbcb6757b619", + "ami_id": "ami-0e2e42cc34dd05b0d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dba57a21a03d3f66", + "ami_id": "ami-0f07b31ae158be656", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c118943bd2f1ae02", + "ami_id": "ami-06641e665cfa00e62", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5ab6f3bcdb7efe4", + "ami_id": "ami-034d80ad4d8330b48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f43ca191c371485", + "ami_id": "ami-094c588953f6bb41d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a1f057a1a8e1a50", + "ami_id": "ami-0a3fcf3655e4e637e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eed46c7eaecb7b58", + "ami_id": "ami-0fd2a3a98f50b4740", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b571418e7ec23f20", + "ami_id": "ami-06228cb76d02ff1c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03908683ce69a9791", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-09a84fc7ed14071cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b69d46afd4d620b0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0471ea40c46b4325d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089ef4dbd07ae65ce", + "ami_id": "ami-0633805928291a0db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9d6be36a45666cc", + "ami_id": "ami-0eed46c7eaecb7b58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0662a9e48490a50e6", + "ami_id": "ami-04779564410203fb2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c7a300a7b644aa7", + "ami_id": "ami-0e37e42dff65024ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5a77676363b3de2", + "ami_id": "ami-0e432635473484865", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7b0735348cc07b9", + "ami_id": "ami-00d0c363c4cd22d7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce793e8219fd5e8b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-010f1a60fb6a98d01", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c281501e4cf55e11", + "ami_id": "ami-0c865e0f6120c0c63", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4cb7ae9a06c40c9", + "ami_id": "ami-0ba238c6cfa8b1e42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037edace5d7b7caeb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a13dae389271b87f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0818b562f27619a99", + "ami_id": "ami-004d2a2ebfb8d5766", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b90f1d41bfc9384d", + "ami_id": "ami-04958171303876da0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc12bf8298a34e36", + "ami_id": "ami-084a623491ebc402c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031cb62cff0e27519", + "ami_id": "ami-0a7415e0f9a1d559e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac2c635f3ea6482d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-056f4b885eafbb887", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ce40082c064ebcd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-0117f1e9973b67764", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be9dece64be2bcda", + "ami_id": "ami-061a3dd695a81b8ef", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eceb414529a60916", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-086098c7a7d31b4b5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051faaeb38e8fec2e", + "ami_id": "ami-0ed2c92404a0bc5e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01faac4984b9ff42e", + "ami_id": "ami-05c9c3789fbcfd64c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12029,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4793e87f9ca8769", + "ami_id": "ami-0a48d8c856acdd0b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0589540ea73795be2", + "ami_id": "ami-00c2bb8eed5749bcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0639d0f1e9d4f38d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0966831dffd7e915a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12077,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019929ec96f6e8c9d", + "ami_id": "ami-03679b7d3f9df1a02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccf28d7b4966979d", + "ami_id": "ami-0e52aad6ac7733a6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2f76be1028ff599", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00521bdbbf6ebba5f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0140d1ef6d38ab79e", + "ami_id": "ami-0463acfa38e44479b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ab4fd4fd271e3c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-049f231a6d31cfc28", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00102a56092c82448", + "ami_id": "ami-092ae2dc3b576675c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8cd5eb058344392", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-05709a752ab2dd82f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dab1fa3f346aaa7", + "ami_id": "ami-256c15c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086098c7a7d31b4b5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-06c98c6fe6f20c437", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0693553bc7d643c93", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-0b9e2e7fc35b6a100", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d65eac88e8a5816", + "ami_id": "ami-04c630bae9dbba70f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee598279ae71574b", + "ami_id": "ami-01d5bddc0c9695f8c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b48c464a0a50d955", + "ami_id": "ami-7d0c7a90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.c x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.c-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fbc79937c97dad3", + "ami_id": "ami-0a428a8bcfce0f804", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072f0ffb9f5abdd87", + "ami_id": "ami-094879c0caf901de8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c1a891ca39bb035", + "ami_id": "ami-06304ab668ca0caea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4ca1add076d90a9", + "ami_id": "ami-076bc74621af511c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b91177238fc9c1b4", + "ami_id": "ami-0cf83e20e6e7fb52e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb46cc2aa89cf874", + "ami_id": "ami-0f2fa1d3ea9272caa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075e2cac7e99828a8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "ami_id": "ami-0987b16161a355262", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn-ami-2018.03.20220209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0defbaada82eb9cdc", + "ami_id": "ami-08b2d07efb11f520b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096f402fed7eb6f40", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "ami_id": "ami-0f6b33396fa56abe8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e729ff40b3b4c8d2", + "ami_id": "ami-0e5c7bfb31b5e577e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044c2ccece2d7df4c", + "ami_id": "ami-08ff6e20289df821d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00afec874ecbf7b2c", + "ami_id": "ami-034b5a35635716769", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad0ec682fc4e9c1f", + "ami_id": "ami-0b70b04940eb6d388", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02894e8acfb0fe8c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0127c05c46ec414c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c834e58473d808d", + "ami_id": "ami-09ff2c0e1c4b1661f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12525,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c973dc9c4675efe4", + "ami_id": "ami-0b07a6e4735fb50c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12541,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0374741421f827827", + "ami_id": "ami-0b3e9f9644b0b684b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12557,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d175f1b493f205f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", + "ami_id": "ami-09675b12122481357", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12573,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e11de03c83b999c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d5f884dada5562c6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.f x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn-ami-2018.03.f-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12589,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c1d905453440e91", + "ami_id": "ami-0825d169c70881cd7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12605,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0471ea40c46b4325d", + "ami_id": "ami-084d901e63a6a7a1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12621,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c76d299e72176192", + "ami_id": "ami-0fa642bfedc102025", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12637,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de57e8aae354672b", + "ami_id": "ami-04d327adfa9bb42d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12653,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a428a8bcfce0f804", + "ami_id": "ami-089ef4dbd07ae65ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12669,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1f76a09efad9619", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-0f2e24673baad078e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12685,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a50b50d3f0255ea3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "ami_id": "ami-04dc27fdd74087776", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12701,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfaf0223bcbbdefc", + "ami_id": "ami-07beb9196f84744a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12717,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012fb2e859402ad58", + "ami_id": "ami-07259a121c2c3b64e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12733,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c647eb45b1429b1e", + "ami_id": "ami-06df9f3e7bda88769", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12749,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06835586e21c19dea", + "ami_id": "ami-0f135e438f21648bd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12765,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdefa2ae23d38851", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b56c805c4165e39e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12781,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bcdcc4181bc9081", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-03d9c8ed098d536c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12797,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0957f5ac34e5a9e3a", + "ami_id": "ami-07b06d9587de078f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12813,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05581e24d79ddc96c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-09dbf9dd0307563a3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12829,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0488a7e92dd526030", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cfa84956cde58703", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190215-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12845,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d2d0c649a13ad5a", + "ami_id": "ami-0ac2c635f3ea6482d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12861,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa642bfedc102025", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-03908683ce69a9791", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12877,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069a4dbb408cb3435", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "ami_id": "ami-04015631c351a3da6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12893,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0502f5e2c7ed3ca69", + "ami_id": "ami-079d813d04571915e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190107 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20190107-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12909,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc7f11e875a91d06", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-094f5bccdde41dbe8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12925,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02378d43835d39ff4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-000f45a90a4044e1f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12941,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d910b5d748cb51f2", + "ami_id": "ami-09400a5c36cb0ad90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12957,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070a0dadf84210633", + "ami_id": "ami-08cef25d196855a26", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12973,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a43abc7afcabce0", + "ami_id": "ami-04247b7cfde8bf7e7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12989,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ee72c3360fd7fad", + "ami_id": "ami-0f9058649c12307d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13005,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2ebe6e521738d99", + "ami_id": "ami-0066013aebadb9420", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13021,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1af78539b7537cb", + "ami_id": "ami-00270622c0d464e56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13037,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038052796b96c6ecb", + "ami_id": "ami-05416558a20b248c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13053,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8b04defc788bd2e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a8be33c358a98829", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13069,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e356cbd940a6e43", + "ami_id": "ami-0d880aef4f7069509", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13085,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c7a6df036bf6ecd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08cbb3456c28d5f79", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13101,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036b72d308fc0682d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-091cf5121adb3a3c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13117,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc29b2f6c179d1bc", + "ami_id": "ami-05b724a436b2f1bf3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13133,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06304ab668ca0caea", + "ami_id": "ami-0b32bddcf15b4eb6e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13149,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0934e28fe3e390537", + "ami_id": "ami-08df3b1d409883919", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13165,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06076c3d5ce4a6c7a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0879857690d02a38c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13181,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0181154f75a442785", + "ami_id": "ami-0fb70df3c97fdfc7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13197,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7edd69bbca1d1f0", + "ami_id": "ami-0918d9f93efd9eb63", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.x x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.x-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13213,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b62dadbf3d75bf4", + "ami_id": "ami-0aa998afcf8084b59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13229,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09acc689bdf119020", + "ami_id": "ami-0d4df76af35ee695d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13245,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba46945fe4414e8a", + "ami_id": "ami-06bc4efd944c41c69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13261,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7f22d6755eea788", + "ami_id": "ami-03e153964328957a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13277,15 +14106,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dfa6f29c758d66b", + "ami_id": "ami-0c2c86884919f16ea", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20200623-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13293,15 +14123,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07cf7fe7c46346d92", + "ami_id": "ami-0b347740f06f9dd72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13309,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8bd6ea89c6c9d3d", + "ami_id": "ami-0d02aa42bf0edb7d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13325,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fed4209ed5cc03ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fb820b9ae6b8a4dd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13341,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0822fa1ed6836019b", + "ami_id": "ami-0c38293d60d98af86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13357,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6b41f5f02fdb35e", + "ami_id": "ami-05adc0943b5c2899f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13373,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e077025c30909820", + "ami_id": "ami-08aa1b1b5225aeac1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13389,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a26eb97e7fe4f09c", + "ami_id": "ami-00e177b8d879d5d3f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13405,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6083ac154674e9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-01f512ee18859c8f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13421,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9ccbc73a9022f69", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "ami_id": "ami-073d68c1160921246", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13437,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09947c2dc48cb920a", + "ami_id": "ami-049db30b91f71cec6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13453,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2c86884919f16ea", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200623 x86_64 ECS HVM GP2", + "ami_id": "ami-04f7ef57680985bbe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200623-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13469,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c764053c0b28dc68", + "ami_id": "ami-0453352b52d6bf7ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13485,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a13dae389271b87f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0b55da2ca03a4b0ef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13501,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c38293d60d98af86", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", + "ami_id": "ami-0a9854d201b62b532", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13517,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069659b87d8e5e9c4", + "ami_id": "ami-07b4ae0549c4d0d45", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13533,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef0d96e9e16b9591", + "ami_id": "ami-0e935c8d81aa16afe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13549,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0472fbde4af3d849e", + "ami_id": "ami-012257be7b9aa638a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13565,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049c902f5a06cff94", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "ami_id": "ami-0c1122aba4476525d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13581,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0145b625b17242573", + "ami_id": "ami-06cfa258272c37c0b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13597,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0556590a4def95b6f", + "ami_id": "ami-067a91128cae9c11a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13613,15 +14463,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0f578e974d9cd7c", + "ami_id": "ami-0b571418e7ec23f20", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13629,15 +14480,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c833d2f94e193dd5", + "ami_id": "ami-0c18d316574f61211", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13645,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094879c0caf901de8", + "ami_id": "ami-0f1687c002851a5dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13661,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0038727bc19be9974", + "ami_id": "ami-0bc9ec58a64099403", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13677,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079ecdbfea6b5e4ff", + "ami_id": "ami-032b1a02e6610214e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13693,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d50450c6fe28da6c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-0fe442512558cd926", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13709,15 +14565,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01970e8e5f147178d", + "ami_id": "ami-05cfb632170b25758", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13725,15 +14582,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042aaca211dcdcd51", + "ami_id": "ami-07dfab3c16bd14c89", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13741,15 +14599,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0479beb00197414a1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "ami_id": "ami-0f56be3d569caeb64", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20210902-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13757,15 +14616,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b8d55a2aec12ee0", + "ami_id": "ami-08011916b613f6c22", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13773,15 +14633,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6d5529bcaaab049", + "ami_id": "ami-0b62cd163f837e749", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13789,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa1e3dc63ece82e5", + "ami_id": "ami-02cf16af83f592676", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13805,15 +14667,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fea584c98632306e", + "ami_id": "ami-05d89c4f146710d8d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13821,15 +14684,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd6e34935c475cba", + "ami_id": "ami-00a232f93c48d8b96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13837,15 +14701,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0453352b52d6bf7ed", + "ami_id": "ami-023cc60dfe13d716c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13853,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2d79a6f477dae20", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fad2cf04f5c87a97", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13869,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084d1b533070a8b53", + "ami_id": "ami-004c53c08557609f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13885,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a655ab9ee3a7e17", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "ami_id": "ami-0304e243aa7d14962", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13901,15 +14769,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049f231a6d31cfc28", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", + "ami_id": "ami-0f386dc4885ec169f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13917,15 +14786,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cda4bbd18f922fed", + "ami_id": "ami-057796497e41a1fab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13933,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dad20043c3dc9e3", + "ami_id": "ami-0924d58c4e052575d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13949,15 +14820,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0023bf44d7bf97e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0769ad20e12396a0a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13965,15 +14837,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9c091128585a646", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-0a2417de76fc2cc3c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13981,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09deaa2d8fc507b96", + "ami_id": "ami-0f3c3816c2f304e6a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211013-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13997,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a83a6b5b4af0163c", + "ami_id": "ami-01450d8adc0a0114c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14013,15 +14888,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050e20903bac9f61c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "ami_id": "ami-08e81245ac751f6db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14029,15 +14905,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba238c6cfa8b1e42", + "ami_id": "ami-0afd7d28133ee3381", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14045,15 +14922,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2bc7fbaf3e42b3b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "ami_id": "ami-0055994fc4655e79b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14061,15 +14939,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091cf5121adb3a3c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e09fe1f0eb14b55b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14077,15 +14956,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ff080014e51537b", + "ami_id": "ami-0dc8a461ebb1c98fa", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14093,15 +14973,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081de1a6040ee9d31", + "ami_id": "ami-01d514398745616a7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14109,15 +14990,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f9b13079d556393", + "ami_id": "ami-0b2f9088980d57faf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14125,15 +15007,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf07fbbedbf19548", + "ami_id": "ami-0f7931a4f868bd9b7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14141,15 +15024,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f3dc6656effd4e9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-04953f6ff333944b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14157,15 +15041,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bcd24d57866f856b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-079282e2a310098c0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14173,15 +15058,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061a3dd695a81b8ef", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-0ed719a3283b1b8b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14189,15 +15075,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a84fc7ed14071cf", + "ami_id": "ami-010dab37297c19748", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14205,15 +15092,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b652d259f1d91423", + "ami_id": "ami-088eebdee8784bf4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14221,15 +15109,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4fecf0f502472a1", + "ami_id": "ami-0f2aaee29b2f7ef46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14237,15 +15126,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bea16de11596d6ba", + "ami_id": "ami-0041c416aa23033a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14253,15 +15143,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb820b9ae6b8a4dd", + "ami_id": "ami-0d7c0c3399a3201e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14269,15 +15160,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067f84295f16b5eeb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "ami_id": "ami-014077712514e9b20", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14285,15 +15177,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9854d201b62b532", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-071793c15d07b0b2b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14301,15 +15194,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afc8e1fae986f97c", + "ami_id": "ami-07c7a6df036bf6ecd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14317,15 +15211,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3be93b9ff21e167", + "ami_id": "ami-08bcdcc4181bc9081", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14333,15 +15228,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070f7e54dfb7a2d5d", + "ami_id": "ami-08e6382ac1e3e8349", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14349,15 +15245,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0155b87c97080709d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0507900fcd2e544ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14365,15 +15262,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ce2d39c6d9dc181", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-09ff96c48728f029c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14381,15 +15279,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a52e05214d8dc2a4", + "ami_id": "ami-00b8d749575e1cc1a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210902 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14397,15 +15296,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0284063662503ed64", + "ami_id": "ami-057160ce2b1e2388e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14413,15 +15313,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a788951425d127f1", + "ami_id": "ami-071c5ffb884b16119", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14429,15 +15330,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022c876406b7ee039", + "ami_id": "ami-0ebd293956ce449d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14445,15 +15347,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e26400765cbaa1b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-04f13068003e3f9b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14461,15 +15364,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fa5108d9164d2a5", + "ami_id": "ami-00bb9020b4f098329", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14477,15 +15381,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6cc797d8a36c7cc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-02e18fe8bd34225f9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14493,15 +15398,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eab5973a4ee406ab", + "ami_id": "ami-096f402fed7eb6f40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14509,15 +15415,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02dead3b82003d918", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0934e28fe3e390537", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14525,15 +15432,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c83315645750958", + "ami_id": "ami-0ff19895cd07d6496", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14541,15 +15449,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ad5c2a251335d9b", + "ami_id": "ami-0c8aadb857b0e04a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14557,15 +15466,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076bc74621af511c9", + "ami_id": "ami-0ee1b6c2fe477fe59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14573,15 +15483,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c9d7ba0aaef8837", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20201209 arm64 ECS HVM GP2", + "ami_id": "ami-0626449a4905bf95f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14589,15 +15500,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ab4b51b72020b66", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7933110c7710e4c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14605,15 +15517,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e3c638748d6a896", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210219 arm64 ECS HVM GP2", + "ami_id": "ami-09deaa2d8fc507b96", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-arm64-ebs", + "name": "amzn-ami-2018.03.20211013-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14621,15 +15534,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0366776cdec913241", + "ami_id": "ami-07bf27240fdd66cdd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14637,15 +15551,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0293c404bd605841a", + "ami_id": "ami-0108e95d91133853d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14653,15 +15568,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09363ef7dc62e5829", + "ami_id": "ami-031cb62cff0e27519", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14669,15 +15585,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa304c4f31fe3d21", + "ami_id": "ami-05f398822b13b62ed", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14685,15 +15602,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0242df57ec05de54d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-024a8b859daea80ea", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14701,15 +15619,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060bcbabf79399936", + "ami_id": "ami-05f20e6925a68e9f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14717,15 +15636,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2da429a26b39a56", + "ami_id": "ami-0f4ee1b850968cdf0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14733,15 +15653,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb5702cf092d5edb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-0835fb5e683789ecd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14749,15 +15670,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe542bbe6d01a1cb", + "ami_id": "ami-0e1e880452cd345b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14765,15 +15687,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04088265e5358a202", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-069d22fdb4b08241a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14781,15 +15704,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00494661595ac2b60", + "ami_id": "ami-0156666b857dff108", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14797,15 +15721,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025087bd386c74dd2", + "ami_id": "ami-0f2ebe6e521738d99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14813,15 +15738,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0239282c4118a938c", + "ami_id": "ami-0517c1ec06322c08b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14829,15 +15755,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02af03988afacfca4", + "ami_id": "ami-0a88c0d1dd5935bab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14845,15 +15772,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a6b26261da781ef", + "ami_id": "ami-05a1f057a1a8e1a50", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20181017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20181017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14861,15 +15789,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e73c8d85e0d6ff9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cfb5e7c31b73ae98", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14877,15 +15806,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0beeb550824c38c69", + "ami_id": "ami-09ce2d39c6d9dc181", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14893,15 +15823,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0767271390a987c", + "ami_id": "ami-09a7c6c5fdc816432", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14909,15 +15840,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0725760eac0602582", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", + "ami_id": "ami-07169933192804477", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14925,15 +15857,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07db9ecc68d336311", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0943d79d548b6bf3a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14941,15 +15874,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c047cf7fd9b70c5", + "ami_id": "ami-0e415a09c8d08e2a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14957,15 +15891,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae451dcc36be7bb3", + "ami_id": "ami-0d29e33605765ba5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14973,15 +15908,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6120881c0334785", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", + "ami_id": "ami-071b9ab8b4774a54c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14989,15 +15925,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4c82daf9cef7e23", + "ami_id": "ami-08cd8dd0be658ad70", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09f97a8c11f6d8e29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15005,15 +15959,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000f45a90a4044e1f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-00f9b13079d556393", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15021,15 +15976,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fafeee0a3a29281", + "ami_id": "ami-00ff53aea7883cf67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15037,15 +15993,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f01bc670e8ea3982", + "ami_id": "ami-0f17a6f704de15899", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15053,15 +16010,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ba21da116c1c02d", + "ami_id": "ami-028e46812532b667a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15069,15 +16027,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e744640a683f8b3a", + "ami_id": "ami-0bbd0b1215526ea05", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15085,15 +16044,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac17009ddedef642", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "ami_id": "ami-0a2da429a26b39a56", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15101,15 +16061,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ea5a0c930ec929b", + "ami_id": "ami-09186760030ae4200", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15117,15 +16078,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065fd01648ca74747", + "ami_id": "ami-04afc8b795c4b8b71", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15133,15 +16095,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c89b202e756fbc7", + "ami_id": "ami-0f6120881c0334785", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15149,15 +16112,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02763164842d4f3a9", + "ami_id": "ami-0fd33d221995c1c55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15165,15 +16129,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aba6714243b1bf9", + "ami_id": "ami-062ef2a2561c9364a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", + "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15181,15 +16146,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b451daa8b95c4c9e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-0f1ba9ab25da7f1d5", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15197,15 +16163,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07acd7f8d547a49e9", + "ami_id": "ami-0fb548ccfd2a33544", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15213,15 +16180,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a68828a11d23d504", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-05363e7ca6af61275", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15229,15 +16197,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7415e0f9a1d559e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00e3c638748d6a896", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15245,15 +16214,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036cc0fdc098a91ed", + "ami_id": "ami-0dba57a21a03d3f66", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15261,15 +16231,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02265963d1614d04d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "ami_id": "ami-0cb45bf8be760ff5d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15277,15 +16248,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08681de00a0aae54f", + "ami_id": "ami-023ec1c000b5029be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15293,15 +16265,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab78d590545706f7", + "ami_id": "ami-0625d8cd0cb4f11c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15309,15 +16282,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086d3db8e2195ebf0", + "ami_id": "ami-03cbb430e58b06641", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15325,15 +16299,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c18d316574f61211", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04644d06307a7b335", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15341,15 +16316,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ab97183b907936a", + "ami_id": "ami-0d4cb7ae9a06c40c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15357,15 +16333,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022a0c9d8802172a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "ami_id": "ami-0edf19001c48838c7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15373,15 +16350,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020a0f46c407184ea", + "ami_id": "ami-018b541acbf116a85", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15389,15 +16367,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3c3816c2f304e6a", + "ami_id": "ami-0ea8be7cdf2c2f02f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15405,15 +16384,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0987b16161a355262", + "ami_id": "ami-0fd4bb49e3134c823", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220209-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15421,15 +16401,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9e2e7fc35b6a100", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0d0725243f5b26f0c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15437,15 +16418,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039bb4d7fe1979807", + "ami_id": "ami-08dad20043c3dc9e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15453,15 +16435,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d1c7515eda71165", + "ami_id": "ami-06a2375cfef712d1b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15469,15 +16452,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039eab797f0355eee", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02c33a5d21bc5ea7f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15485,15 +16469,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bf27240fdd66cdd", + "ami_id": "ami-0bafe0fad2b34560f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15501,15 +16486,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066665d8473be90b8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-0da45eecfd392886a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15517,15 +16503,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4c02312ffe8d0d5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-04d0ab405e6a32def", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15533,15 +16520,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6614e1a86faef57", + "ami_id": "ami-01ea5a0c930ec929b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15549,15 +16537,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f07b31ae158be656", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "ami_id": "ami-01215dfd2ef9a9d61", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15565,15 +16554,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00729f39662fa0c6f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-0d9c091128585a646", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15581,15 +16571,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b645ec0e3e54e1b", + "ami_id": "ami-0e094b2eaee7079ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15597,15 +16588,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4f6037b71571806", + "ami_id": "ami-0bc29b2f6c179d1bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15613,15 +16605,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0099ea0eda21b41dc", + "ami_id": "ami-0a383c80c6e10e47b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15629,15 +16622,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bd3458cd515f9b0", + "ami_id": "ami-0736ce0743f07a9e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15645,15 +16639,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe442512558cd926", + "ami_id": "ami-069659b87d8e5e9c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15661,15 +16656,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036bc1741361fe5d5", + "ami_id": "ami-074b3bec3ed0e69b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15677,15 +16673,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cf16af83f592676", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-07bbb60e3ec48a8f9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15693,15 +16690,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01787191377d0a411", + "ami_id": "ami-02cc86598686efe73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15709,15 +16707,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b1be95a7823c3b0", + "ami_id": "ami-036cc0fdc098a91ed", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15725,15 +16724,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed2c92404a0bc5e1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "ami_id": "ami-0239282c4118a938c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15741,15 +16741,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f398822b13b62ed", + "ami_id": "ami-036a0bc3a620ad564", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15757,15 +16758,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4ccc30b1fc66a9a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0f82e862b989e7028", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15773,15 +16775,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044c75f886d133e0c", + "ami_id": "ami-09a2cf9b3a87e729f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15789,15 +16792,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0918d9f93efd9eb63", + "ami_id": "ami-0847264f8522092f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15805,15 +16809,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cc86598686efe73", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-0be5a77cd3244f854", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15821,15 +16826,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ec47715ffdb5518", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", + "ami_id": "ami-0b8289c36ad476831", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15837,15 +16843,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0053837a9c545f995", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-01ba5210887f6b9c3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15853,15 +16860,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064cbb9f38a66103d", + "ami_id": "ami-069bd7e3be6f06735", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15869,15 +16877,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07695fdb89e41b9f8", + "ami_id": "ami-03a6b26261da781ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15885,15 +16894,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa4aa6e5baffa0ad", + "ami_id": "ami-0b11787f6fb7005a9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15901,15 +16911,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b229fb8956ace6cd", + "ami_id": "ami-0a0413dfd52d9b8ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15917,15 +16928,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088d9a38123ee2d21", + "ami_id": "ami-011991d2ba82064d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15933,15 +16945,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0134efac34652d6ec", + "ami_id": "ami-063c89f793deac642", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15949,15 +16962,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd391d35ea8d9005", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "ami_id": "ami-0e3462b1ea19fbc89", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15965,15 +16979,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030330c0ef62a190b", + "ami_id": "ami-063f75a211902eff8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15981,15 +16996,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a9b50718282f444", + "ami_id": "ami-0a54c98167bdbd4a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15997,15 +17013,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b23c122484f8bf90", + "ami_id": "ami-09c918fb78eb0e78d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190402-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16013,15 +17030,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052d076b09200dd2c", + "ami_id": "ami-006bcad31f9ef4e8d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16029,15 +17047,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ec07e8c7c1f6091", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "ami_id": "ami-00f839709b07ffb58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16045,15 +17064,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f512ee18859c8f8", + "ami_id": "ami-049d01b4df8c53075", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16061,15 +17081,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08985809101457c72", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08438ff304613ed61", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16077,15 +17098,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02084c4f47c9a16b5", + "ami_id": "ami-0a3006daefdd3b5d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16093,15 +17115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ce6aa71e4376864", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-02d179baf46aa9423", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16109,15 +17132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d327adfa9bb42d4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "ami_id": "ami-021e3a34293625b6d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16125,15 +17149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0404c4909c1117ad1", + "ami_id": "ami-05a21843353f18c86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16141,15 +17166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011feed6bd08b19c2", + "ami_id": "ami-0a5c4a1d674980dd6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16157,15 +17183,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce14253719296f3d", + "ami_id": "ami-0589540ea73795be2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e330faed58ea9b29", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16173,15 +17217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07423a3aa5c997261", + "ami_id": "ami-07acd7f8d547a49e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16189,15 +17234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8db47483f7b1c79", + "ami_id": "ami-0afc8e1fae986f97c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16205,15 +17251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03435bdf0fba7d43e", + "ami_id": "ami-04e0a09b53246fc1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -16221,15 +17268,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9f99e7067f14c27", + "ami_id": "ami-01dca23eec4c8dc45", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0957f5ac34e5a9e3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16237,15 +17302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f56be3d569caeb64", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-0479beb00197414a1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16253,15 +17319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078cd21bdcd4bc36a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05a6e9551ec085e95", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16269,15 +17336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e604c2f331737ee", + "ami_id": "ami-0039af6c6e8269e15", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16285,15 +17353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a746fc07ba146fb9", + "ami_id": "ami-09c4258ce9b81642c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16301,15 +17370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0068ba22cff229c5b", + "ami_id": "ami-0bd5b30f9b0a4de8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16317,15 +17387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a09fe686e5ce143c", + "ami_id": "ami-06c17f9b928dde293", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16333,15 +17404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c4a3ca4b5f6e5e9", + "ami_id": "ami-0e933297ad3190482", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn-ami-2018.03.20201209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -16349,15 +17421,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9ba282e95c848ee", + "ami_id": "ami-04088265e5358a202", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04fa14f37492325da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16365,15 +17455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d880aef4f7069509", + "ami_id": "ami-0da3f6102efc659cf", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16381,15 +17472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070f9179f7fe16060", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "ami_id": "ami-0ef0d96e9e16b9591", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16397,15 +17489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00271b29b1c81b52f", + "ami_id": "ami-0bf0edfd3add7038b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16413,15 +17506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a74600a766240274", + "ami_id": "ami-098d30bbda339e859", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16429,15 +17523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016aba5feb2a70f73", + "ami_id": "ami-0c973dc9c4675efe4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16445,15 +17540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0049422eda1bb52a7", + "ami_id": "ami-0bea16de11596d6ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16461,15 +17557,628 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0830b2f458c922c25", + "ami_id": "ami-0c1af78539b7537cb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c04d0a264f17259e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08c52ab1bc14da6a0", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a746fc07ba146fb9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02265963d1614d04d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-059fab84a3cc4b17f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-032d502e57548c71b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06fe2425a42e8e068", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a4b5b999281c955b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00729f39662fa0c6f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-004cb6b845589bef9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a26eb97e7fe4f09c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0cf07fbbedbf19548", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04ccf242ab11f0554", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-071d5131a9ed5a176", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00ac9b505789fcbe0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0130d211d0ff6e112", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03c89b202e756fbc7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e1c92cee08df5b3b", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e26400765cbaa1b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09d2d0c649a13ad5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b4e2eac39aab67fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20200928-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0bbf97ded841d824b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04b0aca171072e94f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05d23216d0b17f157", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-006e3e3b382331f34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d4c02312ffe8d0d5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-032bde7ec9334158e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b66758b5f93f6d51", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0703d0ef2ace5b561", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f2f46c4dd8f7d530", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-064bf9846657106e1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c281501e4cf55e11", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05bbece3387b2a514", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06076c3d5ce4a6c7a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ad5a3959c516f3a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0181154f75a442785", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16477,15 +18186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a224d669953e42f6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-0a7e661324c1ffbcb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16493,15 +18203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086ca990ae37efc1b", + "ami_id": "ami-02a179ac42b1bb8aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16509,15 +18220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfa84956cde58703", + "ami_id": "ami-0a340424294db766c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190215-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16525,15 +18237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4146903324aaa5b", + "ami_id": "ami-07184de0e75630922", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16541,15 +18254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdf0c91f1d10e38e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", + "ami_id": "ami-0081393cc2f713db6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16557,15 +18271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076918b8c221d2268", + "ami_id": "ami-09f749efb7ede7b1b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16573,15 +18288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c52ab1bc14da6a0", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-078cd21bdcd4bc36a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16589,15 +18305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024a8b859daea80ea", + "ami_id": "ami-0a68c6f3f6d5aab35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16605,15 +18322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cff62d83189e5c67", + "ami_id": "ami-0de57e8aae354672b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16621,15 +18339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f82e862b989e7028", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-087d2eca241bcafaf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16637,15 +18356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c09def73ce08a205", + "ami_id": "ami-0e0767271390a987c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16653,15 +18373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09186760030ae4200", + "ami_id": "ami-08798a629a97d8551", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16669,15 +18390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097fba18b80faf614", + "ami_id": "ami-05b296a384694dfa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -16685,15 +18407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005a6ff49e58d996c", + "ami_id": "ami-0ac17009ddedef642", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16701,15 +18424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aad3760f55ba06c9", + "ami_id": "ami-0ab78d590545706f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16717,15 +18441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d89c4f146710d8d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a3769ff70e8ed2c7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16733,15 +18458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06df9f3e7bda88769", + "ami_id": "ami-08d969c3936b4c0b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16749,15 +18475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f135e438f21648bd", + "ami_id": "ami-0cb5777dc3a19f1ae", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16765,15 +18492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0041c416aa23033a2", + "ami_id": "ami-0e993a27d22fca827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16781,15 +18509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fabb4367a984049b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f07e4e8715e65961", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16797,15 +18526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036a0bc3a620ad564", + "ami_id": "ami-04a1805a6f5355d52", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16813,15 +18543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e177b8d879d5d3f", + "ami_id": "ami-0b652d259f1d91423", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16829,15 +18560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b4618bd94fb0b84", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-0338ad83d373558b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16845,15 +18577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fa24c38c41a864f", + "ami_id": "ami-005a6ff49e58d996c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16861,15 +18594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068a18571f2d1d5a6", + "ami_id": "ami-0eaee9a0f797e6919", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16877,15 +18611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e97cfa3e0eeb58a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e4ea2004b1254071", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.t x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn-ami-2018.03.t-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -16893,15 +18628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040c7db8985d96325", + "ami_id": "ami-0807c44196cefedca", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16909,15 +18645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a62ac074b57314ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07071898f220fa930", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16925,15 +18662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be5a77cd3244f854", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-0f8e7a6d2d5266274", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16941,15 +18679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb70df3c97fdfc7f", + "ami_id": "ami-0eff6e18314dcb341", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16957,15 +18696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a818286958067c9", + "ami_id": "ami-0d6614e1a86faef57", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16973,15 +18713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fefcd9bdc24f227", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01cffef88bfdf9d6b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16989,15 +18730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06228cb76d02ff1c7", + "ami_id": "ami-04c40b830d3c216e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -17005,15 +18747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006bcad31f9ef4e8d", + "ami_id": "ami-0d8b097bc318373e7", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -17021,15 +18764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfb48bfaf6b3c4b4", + "ami_id": "ami-0358ca9c980a49a61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -17037,15 +18781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dca70218ac24bd38", + "ami_id": "ami-09a624d9beed9c113", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -17053,15 +18798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-a99d8ad5", + "ami_id": "ami-0bdee34a8d358a620", "architecture": "x86_64", - "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -17069,15 +18815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084a623491ebc402c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-05d93b3d742dc5fd6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -17085,6 +18832,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json index 79ac91fa7d36..9b4a5157386a 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-06918489ca2179325", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0ac4ef18ead8ce3e7", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb9f4732f69e410e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "ami_id": "ami-0e49a19113a1ae833", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcd0bc9f7fb05052", + "ami_id": "ami-0bdc871079baf9649", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4ede45bde8e888f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-08c4b6e11eaa09e2a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3f74294cc1053be", + "ami_id": "ami-02e2479138a4b1621", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097437c514ccc7175", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-06dfdf5e903ec471e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e85591028429f8b6", + "ami_id": "ami-02f5c3ce34dd8313b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0082d3ff575671087", + "ami_id": "ami-04103215a328d239f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd2d0629a2c891a3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c2d7956303119a8f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e05c10a3429c54b", + "ami_id": "ami-0e6bc5c7086b22827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a19aecb338658302", + "ami_id": "ami-06e53f73aea5e57a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0148c65f66bf9fa8f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01ce4811b921eb68a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049f40bd118ce7c23", + "ami_id": "ami-071358dbcbede8c0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1b1d998c897741d", + "ami_id": "ami-0436d5b211861b50f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6ef1b6839abb104", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c15208dc9794aeed", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fee20bc06849d512", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-0d1aa9b4a2f3db0e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f5c3ce34dd8313b", + "ami_id": "ami-040005b24c20952f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acaa13190e408932", + "ami_id": "ami-0344b9a03f150d018", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c9cf7ba2a412aa4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", + "ami_id": "ami-03359baa4c0d83d24", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021280fe1a662737b", + "ami_id": "ami-0faa8eeb1b54a4cba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07653db5a3d98782d", + "ami_id": "ami-04eac291d1d84da9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e6905638904501c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f77420a01cffc64f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a91771721c7f882", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-0dd28f94645fcabc7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc72047d6c475dca", + "ami_id": "ami-00dd0cbb93f2eaf9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e87ba8c822e3c93", + "ami_id": "ami-001910f28d5705eba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02902330f629f7d79", + "ami_id": "ami-03d3f3cfb242570fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3935da3561fe3b6", + "ami_id": "ami-0d5514927081191b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0063312c13bc1e1ad", + "ami_id": "ami-09ec9a8e7ccd0fa08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae2944e7ef967422", + "ami_id": "ami-0ef5ac86853bfa5aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb8ff50668cba1fc", + "ami_id": "ami-9d56f9f3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01264f40ab09291f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-0c556f68a2221c915", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c22618d24865aff9", + "ami_id": "ami-0e37d032b364521a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec6871deb9207d49", + "ami_id": "ami-0ebc59eba580f185a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0302bfec93d0dea1b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-04553ca32ff9ff3b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f209ec2ecd7fe5fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-0d6d5b8cf1a398ee9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097b296ba06099bd5", + "ami_id": "ami-0dfe299a8a7fe500e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070ac7f5af6d61506", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0a79904637aaf4ccf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbad5b7b0e806ec8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "ami_id": "ami-0807b9851503a50e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00deebfad7ca41f88", + "ami_id": "ami-0a3f927a9ce2b6258", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d7dc13d02e66441", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-03a3d47edb4d38226", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ce7f6cf5757395c", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-093e4d32c97b7aed7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220209 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0807d4d54cb63daba", + "ami_id": "ami-0ccbcf5cfb84153c3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05876ab41fc576cdb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02537aec69b36fb46", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a098b4a8994b60c6", + "ami_id": "ami-0f209ec2ecd7fe5fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0947cff6d7c30cba8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-05466daab6a2abe63", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05606d4eb5d5db9cd", + "ami_id": "ami-0f7872d46fafcfc24", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040fb1400261bc609", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09249214c01a0103e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bb9b1810ce11ca7", + "ami_id": "ami-0f9aeac9c925ed94c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0300f0c82bde30820", + "ami_id": "ami-070fa9dfc5c6b9373", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0717bcb49d14d8493", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-01a6d9daa3f566850", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6fe058ad30fb269", + "ami_id": "ami-026cfcda3b0542ebd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dd5276edaeb0211", + "ami_id": "ami-0e1c5309e5586adda", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1ce49d081c1316d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "ami_id": "ami-05f9c49f52db7168c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010becad48b8fb6ad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "ami_id": "ami-032bd3fd040c8eee1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df7ab0f7308db9b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "ami_id": "ami-06e1828e3449a66a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e29caee865c3c68", + "ami_id": "ami-096981b2599d2d99b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afc8d04fb4fdd03e", + "ami_id": "ami-04607756254222deb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5ca4c6d282b79ae", + "ami_id": "ami-0a2b703f659d889e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0078220b3b3411e5a", + "ami_id": "ami-0f5c12164f26fb68a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0816a9f9c4af3056c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "ami_id": "ami-0248d0a378114766c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4d383fdaa0317e9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-0e55d9486dddb4015", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c23c714a3d736329", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e09b76701b3b1bb1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f5ad92a3455ab0f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "ami_id": "ami-043f04a0533062573", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4f9f77cf57d6a9c", + "ami_id": "ami-095be40d424203306", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bb1b5213ef12125", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-09ef448258c36b59f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092f04430cb6e4e0b", + "ami_id": "ami-073760eaab982d6b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0458bb60efd561d90", + "ami_id": "ami-0a44dfc29be241dfe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0829fb1c814627ed4", + "ami_id": "ami-0a989f1e4aed60100", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a3d47edb4d38226", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-06865901b1a8d222f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b654ebd424f43e16", + "ami_id": "ami-0df7ab0f7308db9b7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032bd3fd040c8eee1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-02581968211de6eed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0944773ad2502075e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-0b55aaf015e7bd839", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07355e6ada92f703d", + "ami_id": "ami-0db5f4d395baddec1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfd68d76390dde1d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "ami_id": "ami-0bf3333bce45f2c3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0876082315a821e64", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-06084908c004b38e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08461de3843536bf3", + "ami_id": "ami-02b8fa4a15d401549", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cb730ee2a98159e", + "ami_id": "ami-036e92dacf8a46be6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4ccb88ee8007a82", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-0082d3ff575671087", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c925195063b0a4b5", + "ami_id": "ami-0b384066a73fade6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b623789162b84472", + "ami_id": "ami-01ada0dc9920f9169", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036e92dacf8a46be6", + "ami_id": "ami-022475e6cee6f919f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003ea62ba83601055", + "ami_id": "ami-0effe48eaa0d413a2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0695f212fc9d45eaf", + "ami_id": "ami-0d40044a6698a1ffe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8d6785ac4de9e2d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "ami_id": "ami-01de5c44e960e394b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1b3bdec769c8a6c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-0954eded7c9b7e6d8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0789b4da53f949b6f", + "ami_id": "ami-0b1ce49d081c1316d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ac84a78ea9d0d34", + "ami_id": "ami-0faaccc87ba63cb30", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077f67888b969b236", + "ami_id": "ami-019c4364051bddf10", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b35c574ad7620303", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190321 x86_64 ECS HVM GP2", + "ami_id": "ami-0d6df03bf7c7586d2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d0902ed70fcf53a", + "ami_id": "ami-0b1b3bdec769c8a6c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fc8e75f708a8fcf", + "ami_id": "ami-01e2bf6616a579824", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b782064bc496c624", + "ami_id": "ami-058fe05d80d934d8a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddd1e72b23879540", + "ami_id": "ami-003ea62ba83601055", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b05a51e0edb60918", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "ami_id": "ami-0458bb60efd561d90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e323f6172023fcd6", + "ami_id": "ami-0e4ccb88ee8007a82", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3bef8794019bf0d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-0c925195063b0a4b5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054eb53fddefeb97f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "ami_id": "ami-02e6905638904501c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f77420a01cffc64f", + "ami_id": "ami-03d0bb1bd5415c6cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2ee84a2085be97d", + "ami_id": "ami-01fb3f9ccc5590b17", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093c44c9e93f70414", + "ami_id": "ami-0f5cfb96f467c508b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0783501c35fcaa1c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-006acd399a577e87d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7904010da4a80d2", + "ami_id": "ami-017ec8f90544b373c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026e67f2814086088", + "ami_id": "ami-0fbf5976c7ee05f47", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06426efe1e5e8e20a", + "ami_id": "ami-01166b4d307963e13", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d21678b6e5cc3e73", + "ami_id": "ami-0b782064bc496c624", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d343e11daa01daa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "ami_id": "ami-0e8337c2fe761addc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00992e6d1bdd32f9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-06772986020499536", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db60dea302ebbc98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-07d4fa598406bbf47", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0072a829fe65bde34", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e1b75ce00c9fc663", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f0e2d09c2274728", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "ami_id": "ami-0084b5712b001cc04", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0759a2451f6ee5e3b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "ami_id": "ami-04afecbfc521788a1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085ac3532299b4608", + "ami_id": "ami-0295418a8a2c2f1df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9f4d2f51b065047", + "ami_id": "ami-0f66eefbf810d7e3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bca70df3326c2bd", + "ami_id": "ami-0a7073abee2d1f604", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fb24c6d19d36773", + "ami_id": "ami-093316ed7d5b6b7c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be16bfeea853883e", + "ami_id": "ami-0fa1a48399b4d374b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9d6feda3bc7fccd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-03bb1b5213ef12125", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acda8e8e07e65504", + "ami_id": "ami-08e4cc54a9769ecaa", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210902 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032a91e2417f3d2e4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b35c574ad7620303", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0724b7e44f19b4d3e", + "ami_id": "ami-0c0c0b030baf86093", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a47e14c66693cbcd", + "ami_id": "ami-012a265cd28ba3e08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d229bebd451c51d1", + "ami_id": "ami-05848aefad8e593cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096cc34b6ebd413d7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-02b3a18730f9c7c2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faaccc87ba63cb30", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-04de0c533b1693ffb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd28f94645fcabc7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04a2ca1cdacfeb858", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0576a51b5b3aed30f", + "ami_id": "ami-01909c4def18a2e7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5c12164f26fb68a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "ami_id": "ami-03fab4e0489f3f2ab", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3b4e0e5491037f4", + "ami_id": "ami-0cacf8fb201c07e6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3269abd0974fb62", + "ami_id": "ami-070bb7dbe656a0889", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1c8a0b00c721939", + "ami_id": "ami-070ac7f5af6d61506", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0248d0a378114766c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "ami_id": "ami-083aab852e46604a7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06947e61f87fa0598", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "ami_id": "ami-0b7050932e65ea9ac", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0436d5b211861b50f", + "ami_id": "ami-0a47e14c66693cbcd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028e7aff69f14c57a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-0fc5958377fe875c0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0558e36b239113dcb", + "ami_id": "ami-07ca024736966534b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e53f73aea5e57a3", + "ami_id": "ami-0e0a3f6889d16c659", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fb7650927f5263d", + "ami_id": "ami-07355e6ada92f703d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c56d4b1c8099cccb", + "ami_id": "ami-086574dbc3f545bdb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e4cc54a9769ecaa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "ami_id": "ami-0076ab7147f29760a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0416c75c5f5729d46", + "ami_id": "ami-04d6d9700bd333d75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ff6cc83d11fe4ed", + "ami_id": "ami-0a87094aaa3b8cf0d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1aa9b4a2f3db0e4", + "ami_id": "ami-088777ecf30673312", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000c3ace6eec91d68", + "ami_id": "ami-0db8473472118a034", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2285,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0accbb5aa909be7bf", + "ami_id": "ami-06ac84a78ea9d0d34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e216d15139a6cfae", + "ami_id": "ami-0063312c13bc1e1ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f383abd0269f22d", + "ami_id": "ami-08b28bb2dece026cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036f4d45916c6f695", + "ami_id": "ami-0d05c7fbb74212303", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0593efb39f66ecead", + "ami_id": "ami-03507a48be45b34e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6105cca49458646", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05eadd39c9140c438", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000ac8f82a24f167c", + "ami_id": "ami-0c9f4d2f51b065047", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0601c1b807988f957", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "ami_id": "ami-00fb24c6d19d36773", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d826b6196925f5bf", + "ami_id": "ami-0567ec705c3b85302", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016dcf1ef9038d4fc", + "ami_id": "ami-0aab4d704c2084feb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007e4a98877f2b689", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c684efd1ab373bb8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b920c2fc0b66da3", + "ami_id": "ami-000e1d83c088af87f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2a5adf0a3b4ddc0", + "ami_id": "ami-0ddef7b72b2854433", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0570fb5f67d9606b1", + "ami_id": "ami-01bba9f96447a3f1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c5b9244fa53f611", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "ami_id": "ami-06a2b39cbf9b9e4a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eafe1b0ceb77e37", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "ami_id": "ami-088411cd4fb64ec75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d93cc55622788fe", + "ami_id": "ami-06255c648996ef878", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a781c23285cf9533", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-04cbb60bc3a7fa369", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc5958377fe875c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", + "ami_id": "ami-0f84b48db5207b774", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0167b676996fbd35c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c76a3e229599c58e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079041497ebe45d21", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-021280fe1a662737b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d2a9619b1bb5c4b", + "ami_id": "ami-09c4a89c0fc27962c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054394909ac2daaca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-04ea56ea021b86658", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdc871079baf9649", + "ami_id": "ami-0695f212fc9d45eaf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ce77dde04b6c240", + "ami_id": "ami-0816a9f9c4af3056c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d02d196d63ab964", + "ami_id": "ami-00c884c8047176f55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a2ca1cdacfeb858", + "ami_id": "ami-05de32bac559661aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebbd3c5d3e0564cb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07118d5f4e074c90d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04103215a328d239f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09179ab34838e53a6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08378ec5d8c4db82f", + "ami_id": "ami-0d229bebd451c51d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2765,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9bf6a53d6cc1f90", + "ami_id": "ami-0f3935da3561fe3b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039c6bbeb11ee54d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04eafe1b0ceb77e37", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0757bb454d8911cdf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-05289c873f4f0345d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f4a8e9e2d4f8d6b", + "ami_id": "ami-008e6f847e223ccc7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f63bf3fbdfe1640", + "ami_id": "ami-07f645efe797eb771", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036b383939fada97b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ce6bd11dc470f32e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e89a387f754b263", + "ami_id": "ami-00c11ec4f012ef482", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae1c62e4bf5b74e4", + "ami_id": "ami-02a422f15bba5e390", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b14dcaa63bd92a72", + "ami_id": "ami-05931a7d1567a5958", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0844ffda8fcc71362", + "ami_id": "ami-0cfcb302397ad4193", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0895617c458801caf", + "ami_id": "ami-04a44d104a2172664", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d240ca0b6eed219f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0687d9a82b9d3bd84", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04607756254222deb", + "ami_id": "ami-0d98eebfa02e25056", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0c0b030baf86093", + "ami_id": "ami-086f0ef0e96e72823", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d4fa598406bbf47", + "ami_id": "ami-0eccad8ab247cd489", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3005,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c36c28a05dabf16", + "ami_id": "ami-07653db5a3d98782d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062405896773cbdf6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09c1478214db2b417", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0150f03e460d187e4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-001158a605e8172dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bfe995eb756c42d", + "ami_id": "ami-038b70c1ad0a4e6ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f01816c00fb14ab7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-036f4d45916c6f695", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae9ae3937eac86b9", + "ami_id": "ami-05298096ed8782964", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05098f687b0afb5b7", + "ami_id": "ami-7c69c112", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee1e6441a504c048", + "ami_id": "ami-0e3269abd0974fb62", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01287572b99f45fc2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-06dd5276edaeb0211", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07436a5dd052caf02", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-03e358c9e35256d3e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3165,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7a758b58ed90cb2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-097b296ba06099bd5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c4b6e11eaa09e2a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-054394909ac2daaca", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0317afc67c82068d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-0724b7e44f19b4d3e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0655323c6709f3a70", + "ami_id": "ami-01ce7f6cf5757395c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073d4ffbf4baa65a4", + "ami_id": "ami-0332c5fad03bfdabd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016124162a4788298", + "ami_id": "ami-03fcb1dabf16f54c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dcb3971d68c744d", + "ami_id": "ami-06294903d28adf65d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb4026d9589a2a37", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "ami_id": "ami-039a94ef834ee4d1b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082f730d7bff4153c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-0e26f02f4b9f8dd03", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca0aa3d1f7430686", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-0c473c628d7a26117", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9e5914b9c7f9a94", + "ami_id": "ami-0087f4123f1f4f910", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f743042981af8eb8", + "ami_id": "ami-0c0acda930d2bb85a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04923c0efe9d9c6e2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "ami_id": "ami-0ae9ae3937eac86b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0743b294b287c7a7e", + "ami_id": "ami-07ab651adf9961a03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad4f7436b40a67b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-094239497a3865ad3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01de5c44e960e394b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-0078220b3b3411e5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f1dbc2f871788e4", + "ami_id": "ami-06c83a496cf49f829", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082f37c86c84b5516", + "ami_id": "ami-0e3edd2a6647b39c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3ad85683d13cd57", + "ami_id": "ami-0b3b4e0e5491037f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d516d6efb029513", + "ami_id": "ami-082d30392d792c25a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0803d246df7282a54", + "ami_id": "ami-0a9db2d56f3911ef8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001ad82b79a6bc41e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "ami_id": "ami-0947cff6d7c30cba8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fcb1dabf16f54c0", + "ami_id": "ami-062405896773cbdf6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ef5505ecca20315", + "ami_id": "ami-0759a2451f6ee5e3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06be812adf6266be9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "ami_id": "ami-06426efe1e5e8e20a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04aa042e5c9bfb7ce", + "ami_id": "ami-00f63f4867d80819e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ec9a8e7ccd0fa08", + "ami_id": "ami-049a70dcf2ea99185", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012a265cd28ba3e08", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-0d3438ae7d35c0e65", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034ca00cc4c4e02fc", + "ami_id": "ami-087902fe8a520f25d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6996e691edaec4b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "ami_id": "ami-03bfe995eb756c42d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05db432abf706dc01", + "ami_id": "ami-017b787d36db58ff2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3661,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0749acdce21183e5a", + "ami_id": "ami-09a7ac4e512dabce6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094450e60a6d780cd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f01816c00fb14ab7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089eeb8d97b9a40f3", + "ami_id": "ami-0fbbad33647f350df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3f927a9ce2b6258", + "ami_id": "ami-0723ea30e056135ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb59d36150e80348", + "ami_id": "ami-03b920c2fc0b66da3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f74e050ca5ef08c", + "ami_id": "ami-03b237179c9d2d86d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0584b2348ac4087f7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-07e89a387f754b263", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d14e92af7268a5a2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-0a19aecb338658302", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b290f1c1975a4f4", + "ami_id": "ami-051d8ad4455a5d935", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0447986fe6b85214d", + "ami_id": "ami-0bb59d36150e80348", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008e6f847e223ccc7", + "ami_id": "ami-0005600074f3aa4be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3edd2a6647b39c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "ami_id": "ami-0b513ed1149e2a91f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c08fe9abec6425d2", + "ami_id": "ami-051e1de6dcbfbf17c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef74797babc6d95a", + "ami_id": "ami-087b7b9af44b2306a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d454663323381eb", + "ami_id": "ami-05606d4eb5d5db9cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016e409dfaa836cb4", + "ami_id": "ami-05e920093f4247df1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fab8f84d55002f7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-0bf8d713f8e8cd87e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ad714e0f1a26a32", + "ami_id": "ami-06f082fe74053c053", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0488b8e4fa3fdf029", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "ami_id": "ami-00ce88fdce1ab8b96", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0084b5712b001cc04", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210723 arm64 ECS HVM GP2", + "ami_id": "ami-0a095c76d9bd1f458", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07704e83790d35a0d", + "ami_id": "ami-040ef5b25ed8bf593", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f9c49f52db7168c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", + "ami_id": "ami-0a098b4a8994b60c6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06df91d0034d14463", + "ami_id": "ami-0ffb63f4432442d06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e4df0c06211bc2f", + "ami_id": "ami-02ed7a0ddae8ab896", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea766b7a13aecc49", + "ami_id": "ami-09e91c0642b321e8b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f645efe797eb771", + "ami_id": "ami-0a35a3119c3ad4d18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bf9abb3b03984ec", + "ami_id": "ami-0d4dec6dc2bddcaf2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08522fe9cae21f57b", + "ami_id": "ami-08094ffaef984ef58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ea8a2cee8681448", + "ami_id": "ami-0e216d15139a6cfae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1314aed48d32ab0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-0ca0aa3d1f7430686", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a816e9dd67160ea", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-03dcb3971d68c744d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-049a70dcf2ea99185", + "ami_id": "ami-0b14dcaa63bd92a72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096981b2599d2d99b", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-00b821e0d164a1106", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4d3831647a31d37", + "ami_id": "ami-09a673eeca21f23f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ed7a0ddae8ab896", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ddd1e72b23879540", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa512b02806dbae6", + "ami_id": "ami-0f3e2a61795a38ab9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011a8e38d94534292", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-05f1dbc2f871788e4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044e2c129e23bf8ef", + "ami_id": "ami-07552e4339a3ec978", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fdf7f6a7fb673f8", + "ami_id": "ami-025a934c237cd85e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070750e7689f935d6", + "ami_id": "ami-04680e870b254187a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096444708f07cd09f", + "ami_id": "ami-086fef114e9be3854", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d41642fde4557e18", + "ami_id": "ami-05d9c28c5395fa839", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4333,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063af3bc444ea7ee0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "ami_id": "ami-041c859663a5729c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ac980626e22251a", + "ami_id": "ami-014f71502c085fc9e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa1a48399b4d374b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-077f67888b969b236", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0687d9a82b9d3bd84", + "ami_id": "ami-0f4cd94188c7dc713", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a09f75d88cac17d3", + "ami_id": "ami-0c1551975039b388d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0807b9851503a50e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-034c5594dabf2bda6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb80b8073d326714", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "ami_id": "ami-0d11e8b0f23559e9b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030058ff13c9262eb", + "ami_id": "ami-0fc754d506cb08ac9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f85b3bc942f9b861", + "ami_id": "ami-0be16bfeea853883e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d18ab1706437a8e", + "ami_id": "ami-0743b294b287c7a7e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0086b3398f1ad28cc", + "ami_id": "ami-07436a5dd052caf02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fb3f9ccc5590b17", + "ami_id": "ami-0d41642fde4557e18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093316ed7d5b6b7c6", + "ami_id": "ami-05db432abf706dc01", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab0f5d2bf83e823b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f101191b78731bbb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b214ba0ff2fcb9de", + "ami_id": "ami-0ff813420a3d9dd70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfd9f46fd7f69ac6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-01408e5e264e54d88", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024fbf9337a64471d", + "ami_id": "ami-03d0902ed70fcf53a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6ac2e148fff32ff", + "ami_id": "ami-031239735d7dcd19a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017b787d36db58ff2", + "ami_id": "ami-0844ffda8fcc71362", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f39d98f916e8cdca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "ami_id": "ami-0e1cee5aad35c5aef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08512dc5cb6d24bfa", + "ami_id": "ami-09cb730ee2a98159e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a550c8148fdb173", + "ami_id": "ami-0aaa9e5272f7d85b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087902fe8a520f25d", + "ami_id": "ami-0d0201e5434e9385c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c684efd1ab373bb8", + "ami_id": "ami-02a91771721c7f882", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd4046567c7ff5d5", + "ami_id": "ami-08522fe9cae21f57b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cd042ef7562cb09", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01622871b8eb5d0e5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c70ad061eb4c7c5", + "ami_id": "ami-0be3c59fa007d4ae0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7292663f072c2e4", + "ami_id": "ami-0214ecc0507aef459", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a49c79b05451b4a7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "ami_id": "ami-0c56d4b1c8099cccb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4797,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f971042e67c88c54", + "ami_id": "ami-0c95593ffa4f93871", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1b75ce00c9fc663", + "ami_id": "ami-06fe22c49e23a8c81", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ad73bab833ea0b4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-000ac8f82a24f167c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0856df28f23817b2f", + "ami_id": "ami-05876ab41fc576cdb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038b70c1ad0a4e6ce", + "ami_id": "ami-0c6fb70e50df195b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4fc4cb3925f7a68", + "ami_id": "ami-035420f59262a9a7a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7fa2ab17046f952", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-0063e2c23c438110e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4909,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a1e0aaedceb5f18", + "ami_id": "ami-01e6db52f511359fc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ac203707d55443e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0416c75c5f5729d46", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012eaa1609066e0f0", + "ami_id": "ami-0f1c8a0b00c721939", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0714add0dc329c54a", + "ami_id": "ami-0d60f9fae4e0391e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1c01e5a34a24f55", + "ami_id": "ami-020b3f2b08c37c0ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcbb752dab752f1d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-062ae1d88919b6d75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df4b7656a454355a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fc3bc282178676e8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cf3609ef94dcd75", + "ami_id": "ami-0a2625fc1ac8b9e26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03df939d5d555a5ca", + "ami_id": "ami-02d454663323381eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b2362465f4f13ef", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-029b139dc76239e0e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05caf4a594ea3e81b", + "ami_id": "ami-0c44c587c4ac16808", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc3429ae7b926f04", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-0eca5cc28f4ea77d8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faa8eeb1b54a4cba", + "ami_id": "ami-04981be781d396650", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c0ac9468f496b8e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "ami_id": "ami-0cfd9f46fd7f69ac6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbf5976c7ee05f47", + "ami_id": "ami-09dc7a26b6b548938", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f885a77f333b954c", + "ami_id": "ami-03bcbf16755009c7e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210428-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07662ef82dc46d479", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200928 x86_64 ECS HVM GP2", + "ami_id": "ami-0b654ebd424f43e16", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200928-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04afecbfc521788a1", + "ami_id": "ami-0acda8e8e07e65504", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d9c28c5395fa839", + "ami_id": "ami-0ae2944e7ef967422", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026a49abe494bd8e2", + "ami_id": "ami-020547e7a73e260d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b3fc79813fa5b92", + "ami_id": "ami-0eb405fdbd360ee36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f727941530f5107", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0513f1a3bf3b3057d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a0e66635d9ac2ad", + "ami_id": "ami-095fae7aa5a0ad428", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f62aac53c6840aa1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0aaf98d5fd2480d85", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e0a0a6abe15c6a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-03a6424a10dc1bcbc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01408e5e264e54d88", + "ami_id": "ami-0e3f74294cc1053be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a422f15bba5e390", + "ami_id": "ami-0cb9576cea4864947", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ab651adf9961a03", + "ami_id": "ami-0f6fe058ad30fb269", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b3a18730f9c7c2a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-036b383939fada97b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073fa9adeabf20d5c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d240ca0b6eed219f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a673eeca21f23f9", + "ami_id": "ami-094450e60a6d780cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e6db52f511359fc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01bd31ba0fc9be9f1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09760c149963e4838", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0545ee1a142475e2d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002db8a00f6dc424a", + "ami_id": "ami-0c5ca4c6d282b79ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075e1470477f15434", + "ami_id": "ami-0750fd52026129ec6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a7ac4e512dabce6", + "ami_id": "ami-07673ee69dde32d97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c27860800574b49", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-00009ddeaefda61b0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a908b3826858f4fa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-01264f40ab09291f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e1828e3449a66a5", + "ami_id": "ami-0527f7ad83b480f3c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8337c2fe761addc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", + "ami_id": "ami-0d43f242961b237b3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0332c5fad03bfdabd", + "ami_id": "ami-04c63808a1706615d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eccad8ab247cd489", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-07b3fc79813fa5b92", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c618ada147353a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-0c9c6c112a676d8eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ca024736966534b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "ami_id": "ami-079041497ebe45d21", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcf592770858a733", + "ami_id": "ami-06e0227d92da399d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0988da337b149f558", + "ami_id": "ami-03cd39adad75ed562", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e53bb0915684e07b", + "ami_id": "ami-0d97a049b2a44b7f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db8473472118a034", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-05511f9dcbb541342", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02897256becb517d3", + "ami_id": "ami-085ac3532299b4608", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077f0e2b8b4a100e8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "ami_id": "ami-089d334e4c93675b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6bc5c7086b22827", + "ami_id": "ami-08461de3843536bf3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fe807553f2b45dd", + "ami_id": "ami-02651024dbd28cb35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e2bf6616a579824", + "ami_id": "ami-0f570390f1eacdd72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ce4811b921eb68a", + "ami_id": "ami-01dbce8fc02bec9ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cdddc8dc02942d8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-04ff6cc83d11fe4ed", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00bcfda373d1c0277", + "ami_id": "ami-037df01bef40f6be7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5805,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ef448258c36b59f", + "ami_id": "ami-070750e7689f935d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058fe05d80d934d8a", + "ami_id": "ami-0b48055dcba2ee63d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07135a8da6ecc5b3c", + "ami_id": "ami-02897256becb517d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095fae7aa5a0ad428", + "ami_id": "ami-05982968c6f778e3d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0295418a8a2c2f1df", + "ami_id": "ami-05734fcae7c9ceb1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ae806d82ce994f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03df939d5d555a5ca", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05289c873f4f0345d", + "ami_id": "ami-08f0e2d09c2274728", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06255c648996ef878", + "ami_id": "ami-0a7f0c1f7615be35f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aaf98d5fd2480d85", + "ami_id": "ami-0a597c0aae763aca3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5949,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0823b7cd05ef925ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", + "ami_id": "ami-0bfcd9496ab9e1723", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05511f9dcbb541342", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-0db60dea302ebbc98", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a63a260abe0285b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-05b3dc36b38b9dd2d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05298096ed8782964", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-06d93cc55622788fe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099c6f7627b00d7fe", + "ami_id": "ami-0086b3398f1ad28cc", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068c4c2d28908a12e", + "ami_id": "ami-0e4b3c9e720be0b7d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086a57a9ebd3b33fc", + "ami_id": "ami-03ce71adb6270d869", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3fa07f006644d6d", + "ami_id": "ami-0ec6871deb9207d49", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3fcba760ec40f43", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-027ccab5ccd446ed4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2c1daa08a13ecab", + "ami_id": "ami-01fce8aaa86c22709", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cf6fe87e0dd6a0e", + "ami_id": "ami-001ad82b79a6bc41e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1ffd9e3d9b0f4af", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-002db8a00f6dc424a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac4ef18ead8ce3e7", + "ami_id": "ami-0bb7bf06d7a0d9c70", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02046369c0dc558a2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "ami_id": "ami-00da65d546b501a63", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +6558,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6e04cbad6e3e13f", + "ami_id": "ami-05b11cc0d0c336cf0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0504057195dd2556f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04680e870b254187a", + "ami_id": "ami-09fdf7f6a7fb673f8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +6609,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068b818d44771b223", + "ami_id": "ami-0bbe1cc6c53b8856e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05e0a0a6abe15c6a9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02537aec69b36fb46", + "ami_id": "ami-0072a829fe65bde34", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c63808a1706615d", + "ami_id": "ami-0163ca257044503d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +6677,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07673ee69dde32d97", + "ami_id": "ami-0944773ad2502075e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-073c48001678780d4", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00db984abc169d819", + "ami_id": "ami-06947e61f87fa0598", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +6728,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037f4ea2c49b086dc", + "ami_id": "ami-0b05a51e0edb60918", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d0dc5887512d34c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dfdf5e903ec471e", + "ami_id": "ami-01271d6eeabad1d3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebc59eba580f185a", + "ami_id": "ami-06b3888902e75ead9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +6796,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026270fe40439a19c", + "ami_id": "ami-076cdd1addbfd64f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c40799845f92a171", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,15 +6830,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041c859663a5729c1", + "ami_id": "ami-00e29caee865c3c68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-030058ff13c9262eb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08a0e66635d9ac2ad", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6365,6 +6881,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -6381,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0067b66f170d98185", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "ami_id": "ami-0f7fa2ab17046f952", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005662b2a76593e2f", + "ami_id": "ami-0f743042981af8eb8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06490cee845ab49dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-0d15c49f8a42016ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c44c587c4ac16808", + "ami_id": "ami-0d4ede45bde8e888f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001910f28d5705eba", + "ami_id": "ami-0b1bf61d9afc0e505", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +6983,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01271d6eeabad1d3b", + "ami_id": "ami-085fb5432fb30f7cb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-015352015ecfc6bfe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +7017,475 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfeb967c08ee0aee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-0ec67c187cb98a5bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c27286226892e7b9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d93e3afc32b4e41a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-023571724716ee993", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0618b65e704cb2255", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-068c4c2d28908a12e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ecb387d86e7ae13e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08cdddc8dc02942d8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e85591028429f8b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-043f11a3cf733c42d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0dfb62ce0b4530389", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0eb99767bec199df8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-089eeb8d97b9a40f3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04a1e0aaedceb5f18", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0368bbef085a523c5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0152bb242f5c7fa36", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-043ee84662570aeeb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a8086aa57bf1723f", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ef7a2936ae1e00cc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03cf3609ef94dcd75", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b6105cca49458646", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-058022bf1e7b0ca4b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a7919f9abb3e7251", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-099f796df0391c921", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ee1e6441a504c048", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b3ef9632f5d39ae1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0317afc67c82068d0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0df4b7656a454355a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d8cd7c6d76f1fa7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-0270b411a237beacf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01622871b8eb5d0e5", + "ami_id": "ami-0d14782bad878a99c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b384066a73fade6d", + "ami_id": "ami-0a908b3826858f4fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d97a049b2a44b7f6", + "ami_id": "ami-010becad48b8fb6ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9ddd0632ffa3263", + "ami_id": "ami-02902330f629f7d79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043ee84662570aeeb", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0b973dcfe0e2ebabe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9827fae49e74a34", + "ami_id": "ami-0210432d1c9737aff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e358c9e35256d3e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-06d343e11daa01daa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04553ca32ff9ff3b9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-049f40bd118ce7c23", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f32050713e632dc", + "ami_id": "ami-06be812adf6266be9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb3fe056553b505d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03bb605f6b0c21627", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190215-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a989f1e4aed60100", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-0148c65f66bf9fa8f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009e567622f025f8f", + "ami_id": "ami-0f047e9568014d355", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6701,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c556f68a2221c915", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-0f878223d001603b1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01706afba1779b32d", + "ami_id": "ami-06509d7f0f8f8931f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e246f1e8dab6a546", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", + "ami_id": "ami-010173e0f7a62bfbf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070fa9dfc5c6b9373", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0b106c7f906025fea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074789c4738d7e359", + "ami_id": "ami-0f59e1eb4bcee106f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0272dd3f3717f4093", + "ami_id": "ami-08e05c10a3429c54b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f611947480a24c88", + "ami_id": "ami-041dca74e77576025", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7f0c1f7615be35f", + "ami_id": "ami-005662b2a76593e2f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c4a89c0fc27962c", + "ami_id": "ami-02bca70df3326c2bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092bf885b6f467f68", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "ami_id": "ami-06490cee845ab49dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a4112e0e5048f03", + "ami_id": "ami-09ac980626e22251a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0487e23e6fe55415d", + "ami_id": "ami-08ecc52b1eb7c4843", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eab6c4261464cf00", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-0b3ad85683d13cd57", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043f04a0533062573", + "ami_id": "ami-0bbbbfb3892f9d840", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5cfb96f467c508b", + "ami_id": "ami-0829fb1c814627ed4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0005600074f3aa4be", + "ami_id": "ami-073fa9adeabf20d5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03233d493c3e61bc0", + "ami_id": "ami-01706afba1779b32d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027ccab5ccd446ed4", + "ami_id": "ami-071e0a82a86ea24ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b52e57bed048ca48", + "ami_id": "ami-0464ce967949b41e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0963d0a23dfd9d48a", + "ami_id": "ami-0bd002eaae0485874", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033b4d22c3d58f52c", + "ami_id": "ami-0bec040817ef743a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075b90be2a74b25ce", + "ami_id": "ami-0ed3f0cf9d02e3093", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089d334e4c93675b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "ami_id": "ami-0c8f7228506966b29", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d3f3cfb242570fb", + "ami_id": "ami-0705ee1a71fc2805c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060a396515be9bc62", + "ami_id": "ami-0f06fde34a9e8447a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac680b0cd93738fd", + "ami_id": "ami-02c9cf7ba2a412aa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092134cf0c5a14bc3", + "ami_id": "ami-0899d50f29f5fc4d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfe299a8a7fe500e", + "ami_id": "ami-0f611947480a24c88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0210432d1c9737aff", + "ami_id": "ami-0b28732089a44fa42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9ea717f56829882", + "ami_id": "ami-0fa512b02806dbae6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b27c798884591f3", + "ami_id": "ami-080c72bd7e2263451", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9925891cc681519", + "ami_id": "ami-00db984abc169d819", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082d30392d792c25a", + "ami_id": "ami-0f85b3bc942f9b861", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea03c2ba33722fa2", + "ami_id": "ami-00d53a99b4acfc377", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e3041adde423b2c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "ami_id": "ami-096cc34b6ebd413d7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0320b2f19ee1fb74e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0783501c35fcaa1c4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0270b411a237beacf", + "ami_id": "ami-07f4aae1776ee1c8b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc754d506cb08ac9", + "ami_id": "ami-0507f98054e920b3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04af2fe2f2c47e0c2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "ami_id": "ami-0c4d3831647a31d37", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d738628cce63064f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-0eb80b8073d326714", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02957cd9065c4baaf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ac680b0cd93738fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f53d41f1b23e9ac", + "ami_id": "ami-08c42f5f1226ba29d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce05ad88e135677c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dab2365a1992e460", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbbbfb3892f9d840", + "ami_id": "ami-0aa4443025d8d4cb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014cda4272ea50d6b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-04c0ac9468f496b8e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0d82e1272b5ae8a", + "ami_id": "ami-04d6accb291941993", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076cdd1addbfd64f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-024ab8d1ed91f1611", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e0740c8708a140f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "ami_id": "ami-05846c6915fd24883", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06084908c004b38e9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "ami_id": "ami-059b4e8692ee4efe6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7872d46fafcfc24", + "ami_id": "ami-0f4c902d649a41b90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c348c6ddefc81a5f", + "ami_id": "ami-0cbb27bcfcd8ff878", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-9d56f9f3", + "ami_id": "ami-02ce77dde04b6c240", "architecture": "x86_64", - "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6fb70e50df195b9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "ami_id": "ami-0cd93a174119875d8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4cd94188c7dc713", + "ami_id": "ami-02f704f20652612e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086574dbc3f545bdb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "ami_id": "ami-0acaa13190e408932", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b28732089a44fa42", + "ami_id": "ami-00e3041adde423b2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de546e6207246736", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-029734c4a6867329b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027c7b81408aab32e", + "ami_id": "ami-0150f03e460d187e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d40a95d488995903", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-0123f674773d98056", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfea23cbab1410ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-0cfeb967c08ee0aee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e96230fc6327a5ec", + "ami_id": "ami-04923c0efe9d9c6e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7559137269b7438", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03d02d196d63ab964", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0899d50f29f5fc4d1", + "ami_id": "ami-0590c10a436b968e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016e609d728038cdf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0273b23020d7a59de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7127f6faa3a0d74", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-039b79f3a43305877", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0112ab5bb3a206c39", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ee935829d9e3baf5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c93acfc4e5e9062", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-0517120187120ac46", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8f7228506966b29", + "ami_id": "ami-0789b4da53f949b6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019c4364051bddf10", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07ea8a2cee8681448", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd93a174119875d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-0575eb9b4d81738d8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db5f4d395baddec1", + "ami_id": "ami-0777c89ed3ad20a0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037b5114d640591f5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-028e7aff69f14c57a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0dc5887512d34c5", + "ami_id": "ami-0293e720fe74f9b77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3ef9632f5d39ae1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "ami_id": "ami-051693f2371877f9f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06772986020499536", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04eb4ce3b086ce23f", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fefcb4fc7cc68850", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "ami_id": "ami-00ca8a8cbf66466bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2b703f659d889e8", + "ami_id": "ami-015a21e4c87aae70b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d54f5e9cf296bc58", + "ami_id": "ami-0ae14243579efd58a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074bffa192086595c", + "ami_id": "ami-038c4f0c509549e61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bec040817ef743a4", + "ami_id": "ami-016e409dfaa836cb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023571724716ee993", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-0d738628cce63064f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056af5bb3639eb7db", + "ami_id": "ami-06a816e9dd67160ea", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022aa8b2ad9b0b7dc", + "ami_id": "ami-03fa470c61994a5b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bae44a3ee0f546a", + "ami_id": "ami-0ab5e3afc0773f28e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b00e67532ae117b1", + "ami_id": "ami-0593efb39f66ecead", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b3dc36b38b9dd2d", + "ami_id": "ami-07bae44a3ee0f546a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac1fdc64b05af416", + "ami_id": "ami-000bf73c4703e6d58", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0504057195dd2556f", + "ami_id": "ami-08a69bdfe40845aca", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05848aefad8e593cf", + "ami_id": "ami-04aa042e5c9bfb7ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0027aba8091a76f53", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-0071aa612811f517a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05de32bac559661aa", + "ami_id": "ami-04840e53e02d6bda9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042277485d4205c14", + "ami_id": "ami-016dcf1ef9038d4fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f30eab4b79247aa3", + "ami_id": "ami-0c6e04cbad6e3e13f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bd90cb269e7a1df", + "ami_id": "ami-0302bfec93d0dea1b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f4aae1776ee1c8b", + "ami_id": "ami-07ab497fe09104f63", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05982968c6f778e3d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "ami_id": "ami-0ef74797babc6d95a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cacf8fb201c07e6b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "ami_id": "ami-0aea718b2865342d2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028a93f605492c68e", + "ami_id": "ami-0fa74f4fdb6914dbf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087b7b9af44b2306a", + "ami_id": "ami-01f53d41f1b23e9ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f83e8eff2239c5f", + "ami_id": "ami-0714add0dc329c54a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0214ecc0507aef459", + "ami_id": "ami-00deebfad7ca41f88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043f11a3cf733c42d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "ami_id": "ami-0a49c79b05451b4a7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0618b65e704cb2255", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "ami_id": "ami-062022418ff822030", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0385d6c2b500408af", + "ami_id": "ami-0b8d6785ac4de9e2d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bb605f6b0c21627", + "ami_id": "ami-00dca06e9fa4510c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190215-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077e887e1dc859905", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-0856df28f23817b2f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0915becb5515be9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-03a63a260abe0285b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0273b23020d7a59de", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "ami_id": "ami-05411c7e1db2d00e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d321420ddd84f7e3", + "ami_id": "ami-0aea0366403b20ba4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058022bf1e7b0ca4b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02b0706448bd6fb5e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02651024dbd28cb35", + "ami_id": "ami-054eb53fddefeb97f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dd0cbb93f2eaf9d", + "ami_id": "ami-099c6f7627b00d7fe", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f61acb17eebad2b9", + "ami_id": "ami-0b214ba0ff2fcb9de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fce8aaa86c22709", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce05ad88e135677c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014f71502c085fc9e", + "ami_id": "ami-09fc8e75f708a8fcf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8541,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddef7b72b2854433", + "ami_id": "ami-093542f8f51334925", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bcbf16755009c7e", + "ami_id": "ami-07662ef82dc46d479", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.20200928-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4f56c527c2d722b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-02957cd9065c4baaf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a35a3119c3ad4d18", + "ami_id": "ami-087055f575426504f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e49a19113a1ae833", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211103 arm64 ECS HVM GP2", + "ami_id": "ami-060a396515be9bc62", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b821e0d164a1106", + "ami_id": "ami-09f89114f78cc8261", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0163ca257044503d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-0e12f4a376855a418", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09249214c01a0103e", + "ami_id": "ami-0ec3dc60f305297da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0527f7ad83b480f3c", + "ami_id": "ami-0fcd614a5fba65796", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04840e53e02d6bda9", + "ami_id": "ami-0320b2f19ee1fb74e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0558ce24b8ffad09b", + "ami_id": "ami-04f86f3b979497d99", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c27286226892e7b9", + "ami_id": "ami-2095224e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0777c89ed3ad20a0a", + "ami_id": "ami-01da70bfa6698206d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d114c5d82faf8b88", + "ami_id": "ami-022aa8b2ad9b0b7dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c76a3e229599c58e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-0cc0a1657e6978861", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9aeac9c925ed94c", + "ami_id": "ami-0717bcb49d14d8493", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-7c69c112", + "ami_id": "ami-00992e6d1bdd32f9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073760eaab982d6b7", + "ami_id": "ami-0f2acc9b1f988eb8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b27be8bfc21881d", + "ami_id": "ami-00506aaf9ea058691", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07605090d9b8ecc69", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-073a0375a611be5fa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc0a1657e6978861", + "ami_id": "ami-07a550c8148fdb173", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039a94ef834ee4d1b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-04ad73bab833ea0b4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a095c76d9bd1f458", + "ami_id": "ami-0d21678b6e5cc3e73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086f0ef0e96e72823", + "ami_id": "ami-06e87ba8c822e3c93", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a69bdfe40845aca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-01f01b081f5faa0c6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf775ad9d0f7adcb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-0e9e89f64a3c6888f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c884c8047176f55", + "ami_id": "ami-0a9bf6a53d6cc1f90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c472925c950437b", + "ami_id": "ami-0ea03c2ba33722fa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9e89f64a3c6888f", + "ami_id": "ami-0447986fe6b85214d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083aab852e46604a7", + "ami_id": "ami-0d77b2fba3628df46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05411c7e1db2d00e9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-01f0422ddcb9852e3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f89114f78cc8261", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-031b9e6d2940f8294", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dbce8fc02bec9ba", + "ami_id": "ami-098340641fcc77afb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004a6c62ad4fb47df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d40a95d488995903", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ca8a8cbf66466bb", + "ami_id": "ami-09489e39d29cd4a03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062022418ff822030", + "ami_id": "ami-06e4df0c06211bc2f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080570115a403b5ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a09f75d88cac17d3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c11d1a7624a90678", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-069e91b6d1441c7a7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffe136237e4c6272", + "ami_id": "ami-00f727941530f5107", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dfbbfe64d11cde3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0a6ef1b6839abb104", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009212239cf5e0f5d", + "ami_id": "ami-0f05304fb13c6de25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a4b8132599d7c34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0027aba8091a76f53", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041dca74e77576025", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-0bf1b2cbe16adb355", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e575bc8cd706138d", + "ami_id": "ami-0a7904010da4a80d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07be8778e2d81559f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-039c6bbeb11ee54d0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c40799845f92a171", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-056af5bb3639eb7db", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a79904637aaf4ccf", + "ami_id": "ami-032fcf82acf3b8971", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05466daab6a2abe63", + "ami_id": "ami-0c543352388ae05e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200813-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0293e720fe74f9b77", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-0f4e8bc784a73c678", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c6efd9f1b7eef83", + "ami_id": "ami-013a525de3b72ec8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbb27bcfcd8ff878", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-014cda4272ea50d6b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d11e8b0f23559e9b", + "ami_id": "ami-016124162a4788298", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0492ad24afebd83ed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", + "ami_id": "ami-0e0d948db55d0a72a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0224a28115980afce", + "ami_id": "ami-0c348c6ddefc81a5f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004cd13509897717e", + "ami_id": "ami-0ffe136237e4c6272", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012640b03f45cf244", + "ami_id": "ami-017d14cf30a7d78e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f66eefbf810d7e3e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "ami_id": "ami-0ad4f7436b40a67b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1c5309e5586adda", + "ami_id": "ami-0c23c714a3d736329", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2b3828f0e8410ca", + "ami_id": "ami-01cacc404d479037e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f77b7e96114c25de", + "ami_id": "ami-037b5114d640591f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4b2f9241fa0b848", + "ami_id": "ami-075e1470477f15434", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2d7956303119a8f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "ami_id": "ami-07605090d9b8ecc69", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca09dbbcad8da199", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "ami_id": "ami-01287572b99f45fc2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f05304fb13c6de25", + "ami_id": "ami-0b15d29e38becec72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3bec60370e9fd75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00f74e050ca5ef08c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099f796df0391c921", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01a4c1cd33e8b9f46", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0705ee1a71fc2805c", + "ami_id": "ami-086a57a9ebd3b33fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fafe407722d2a35", + "ami_id": "ami-0e4e5a87c1fbd6d8f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080c72bd7e2263451", + "ami_id": "ami-08c36c28a05dabf16", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013c505f260762c60", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-0e4001947c2c9b958", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef2b787acc992c28", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "ami_id": "ami-0de546e6207246736", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4b3c9e720be0b7d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-082f730d7bff4153c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6f6d4cd303f364a", + "ami_id": "ami-091e84ba394940306", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e0227d92da399d8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-00fd59451ffa03da2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbe1cc6c53b8856e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "ami_id": "ami-03dfbbfe64d11cde3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0201e5434e9385c", + "ami_id": "ami-057a97ff89830afd4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02596a1e0c9c599ec", + "ami_id": "ami-037f4ea2c49b086dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5514927081191b9", + "ami_id": "ami-01c4d13a760737f86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfabd80c2b1889ad", + "ami_id": "ami-0b6478f40c3646e97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4dec6dc2bddcaf2", + "ami_id": "ami-01e87e5fb040912e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072ba297fa74b9b0e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01e3ae81f27a1b2c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0076ab7147f29760a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7a758b58ed90cb2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e37d032b364521a6", + "ami_id": "ami-025d7dd37e29aebc5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc35c066c4a3886f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-0c1ffd9e3d9b0f4af", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082efaa7cfbb48629", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "ami_id": "ami-0b3fa07f006644d6d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a87094aaa3b8cf0d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-07135a8da6ecc5b3c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4e5a87c1fbd6d8f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-0e96230fc6327a5ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc3bc282178676e8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "ami_id": "ami-0d321420ddd84f7e3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf64c78a7288695d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e00149cd0aeb44dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069e91b6d1441c7a7", + "ami_id": "ami-0f69a3951250c72a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0acda930d2bb85a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", + "ami_id": "ami-02e1dddb678b465c3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0071aa612811f517a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06b2362465f4f13ef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f69a3951250c72a4", + "ami_id": "ami-0e246f1e8dab6a546", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c42238ffbb4f988", + "ami_id": "ami-05fab8f84d55002f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2fde566c07546ea", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06918489ca2179325", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf8d713f8e8cd87e", + "ami_id": "ami-09f5ad92a3455ab0f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e12f4a376855a418", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "ami_id": "ami-0f38a3ea566a01eb4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040ef5b25ed8bf593", + "ami_id": "ami-0ee37c188ec07ce43", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0870d1312758ec53a", + "ami_id": "ami-0b623789162b84472", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093e4d32c97b7aed7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220209 arm64 ECS HVM GP2", + "ami_id": "ami-0f971042e67c88c54", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ce71adb6270d869", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-08fabce0b30ed536e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d14782bad878a99c", + "ami_id": "ami-0bd4046567c7ff5d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eb4ce3b086ce23f", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-0ef2b787acc992c28", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088777ecf30673312", + "ami_id": "ami-06bb9b1810ce11ca7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09179ab34838e53a6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-0453ab042c0a362a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057a53642d6f41f68", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-0988da337b149f558", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0464ce967949b41e8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ab0f5d2bf83e823b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001158a605e8172dc", + "ami_id": "ami-0bd2d0629a2c891a3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a2b39cbf9b9e4a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-0487e23e6fe55415d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09890da54e249ed03", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-0c22618d24865aff9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000bf73c4703e6d58", + "ami_id": "ami-0e9e738c8ded65fd9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbbad33647f350df", + "ami_id": "ami-0b52e57bed048ca48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017ec8f90544b373c", + "ami_id": "ami-0963d0a23dfd9d48a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c95593ffa4f93871", + "ami_id": "ami-0cc3429ae7b926f04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e00149cd0aeb44dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00b999c9f77b778e2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ce88fdce1ab8b96", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-07704e83790d35a0d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062ae1d88919b6d75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-01b290f1c1975a4f4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e7406e4614473f3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0d7e43eea8d762eb1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01166b4d307963e13", + "ami_id": "ami-01ae806d82ce994f4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b0fe5fa483d3411", + "ami_id": "ami-043c66cd8a9ac4999", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037df01bef40f6be7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "ami_id": "ami-0777ed02d7d2719e0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d98eebfa02e25056", + "ami_id": "ami-0d070dfaaef6e355c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021b56de28019f9cf", + "ami_id": "ami-0295d99917072bc94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb0282bd0d7b4860", + "ami_id": "ami-00e032dd64dcc2af0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06125406deba5a2ff", + "ami_id": "ami-02b27be8bfc21881d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0993ebb93ccc94cfd", + "ami_id": "ami-00e0740c8708a140f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfb62ce0b4530389", + "ami_id": "ami-042277485d4205c14", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098340641fcc77afb", + "ami_id": "ami-0c3f52d92c21d1a40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071358dbcbede8c0c", + "ami_id": "ami-0fd206971b03d9eb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae14243579efd58a", + "ami_id": "ami-026270fe40439a19c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03359baa4c0d83d24", + "ami_id": "ami-0bb3fe056553b505d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c4d13a760737f86", + "ami_id": "ami-074bffa192086595c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4001947c2c9b958", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-04c4daf319615aedd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f5ecb79b4f0f73e", + "ami_id": "ami-004a6c62ad4fb47df", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0757a99f302366281", + "ami_id": "ami-0112ab5bb3a206c39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-8f44f3e1", + "ami_id": "ami-0b2a5adf0a3b4ddc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.c x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.c-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0608bb907d77af321", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-03c6efd9f1b7eef83", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10733,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aaa9e5272f7d85b1", + "ami_id": "ami-0c4b2f9241fa0b848", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c42f5f1226ba29d", + "ami_id": "ami-08b2958a25855de2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bba9f96447a3f1e", + "ami_id": "ami-075b90be2a74b25ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032fcf82acf3b8971", + "ami_id": "ami-04af2fe2f2c47e0c2", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fabce0b30ed536e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-05f383abd0269f22d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dab2365a1992e460", + "ami_id": "ami-0803d246df7282a54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10829,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017d14cf30a7d78e4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-0a781c23285cf9533", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0517120187120ac46", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0757a99f302366281", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020547e7a73e260d8", + "ami_id": "ami-08b27c798884591f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08733cca39f256fc0", + "ami_id": "ami-03bd90cb269e7a1df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c543352388ae05e2", + "ami_id": "ami-0a2ee84a2085be97d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10909,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000e1d83c088af87f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fefcb4fc7cc68850", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e91c0642b321e8b", + "ami_id": "ami-0d14e92af7268a5a2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e26f02f4b9f8dd03", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e31565d23e9841d7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01909c4def18a2e7b", + "ami_id": "ami-074789c4738d7e359", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f878223d001603b1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "ami_id": "ami-09e852717760c34c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7050932e65ea9ac", + "ami_id": "ami-0f62aac53c6840aa1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07118d5f4e074c90d", + "ami_id": "ami-0c4d383fdaa0317e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d1eb4619c8dcd8e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-013c505f260762c60", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a62ec05c6c7d52c7", + "ami_id": "ami-099ddf20e1419f7a6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b3888902e75ead9", + "ami_id": "ami-08c4c1a9d2c202921", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcb83f0fb0b8c2bc", + "ami_id": "ami-0e4f9f77cf57d6a9c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022475e6cee6f919f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "ami_id": "ami-03fafe407722d2a35", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01da70bfa6698206d", + "ami_id": "ami-07da1efc0b421fdc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c50d1e71bdbbf3ca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b3fcba760ec40f43", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f59e1eb4bcee106f", + "ami_id": "ami-0993ebb93ccc94cfd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b0c8ba8105d92db", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d7559137269b7438", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094239497a3865ad3", + "ami_id": "ami-0afc8d04fb4fdd03e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034c5594dabf2bda6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-097437c514ccc7175", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aab4d704c2084feb", + "ami_id": "ami-07c618ada147353a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a597c0aae763aca3", + "ami_id": "ami-012eaa1609066e0f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aea718b2865342d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-044e2c129e23bf8ef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11245,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0453ab042c0a362a5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "ami_id": "ami-0601c1b807988f957", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05846c6915fd24883", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-0570fb5f67d9606b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfcb302397ad4193", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-075a91de2e764dbb9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bd31ba0fc9be9f1", + "ami_id": "ami-0d114c5d82faf8b88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0954eded7c9b7e6d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a6677068219e7cfc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d50b43e4157664aa", + "ami_id": "ami-024fbf9337a64471d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015352015ecfc6bfe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0f5c4494477a36a31", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3f52d92c21d1a40", + "ami_id": "ami-028a93f605492c68e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0d948db55d0a72a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0ea766b7a13aecc49", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0152bb242f5c7fa36", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-034ca00cc4c4e02fc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04019871ee1d6cee6", + "ami_id": "ami-0e085a4f3a994e005", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d93e3afc32b4e41a", + "ami_id": "ami-0354553e3d76ba9e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b11cc0d0c336cf0", + "ami_id": "ami-0418c0cf3ebca3729", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2625fc1ac8b9e26", + "ami_id": "ami-0aba1965767b7c23e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c83a496cf49f829", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "ami_id": "ami-06df91d0034d14463", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08239d32105db367b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-0b2fde566c07546ea", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d3054a2590c5c1a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0cc4b07d525b8f403", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dbf73b7c0dbc1ec", + "ami_id": "ami-0067b66f170d98185", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020b3f2b08c37c0ae", + "ami_id": "ami-06541c7d4d4c9bc5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd3acaf56e72a1a3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-09760c149963e4838", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025d7dd37e29aebc5", + "ami_id": "ami-06a36d766554a50fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5c4494477a36a31", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "ami_id": "ami-0e9827fae49e74a34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7e43eea8d762eb1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-030c18dab55018cb3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0354553e3d76ba9e2", + "ami_id": "ami-07e7406e4614473f3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0087f4123f1f4f910", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0eb9f4732f69e410e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055317352b023dedb", + "ami_id": "ami-093c44c9e93f70414", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a36d766554a50fb", + "ami_id": "ami-0accbb5aa909be7bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6df03bf7c7586d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-0eb0282bd0d7b4860", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f0422ddcb9852e3", + "ami_id": "ami-0a9925891cc681519", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a6424a10dc1bcbc", + "ami_id": "ami-0df0b6a0955ce23b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb9576cea4864947", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "ami_id": "ami-040fb1400261bc609", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06509d7f0f8f8931f", + "ami_id": "ami-0558e36b239113dcb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a6d9daa3f566850", + "ami_id": "ami-02c27860800574b49", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0344b9a03f150d018", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-06507582ea0eb02b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0425964435106e39d", + "ami_id": "ami-0e4f56c527c2d722b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba011ebe1d28f9a1", + "ami_id": "ami-0167b676996fbd35c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08341effd2c15e58d", + "ami_id": "ami-0d9e5914b9c7f9a94", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ada0dc9920f9169", + "ami_id": "ami-03efa67c9118ea65e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cacc404d479037e", + "ami_id": "ami-05a4b8132599d7c34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d13cd9f32a0f34c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07c93acfc4e5e9062", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031b9e6d2940f8294", + "ami_id": "ami-0f39d98f916e8cdca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b8d094803a962cb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-0f2c1daa08a13ecab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032bb416f86b390bc", + "ami_id": "ami-0492ad24afebd83ed", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dc7a26b6b548938", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "ami_id": "ami-0e4fc4cb3925f7a68", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dced0d446b5ee644", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-0f6996e691edaec4b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e032dd64dcc2af0", + "ami_id": "ami-011a8e38d94534292", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088210f6f874bb799", + "ami_id": "ami-0906b1cf56fc326a3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d6accb291941993", + "ami_id": "ami-0514de71c9b936112", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,31 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093b4a3fdeeb859bd", + "ami_id": "ami-0ebbd3c5d3e0564cb", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-02f704f20652612e1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088411cd4fb64ec75", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04019871ee1d6cee6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013a525de3b72ec8d", + "ami_id": "ami-00d516d6efb029513", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12077,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e2479138a4b1621", + "ami_id": "ami-0d826b6196925f5bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d15c85f9b06d1383", + "ami_id": "ami-08723330aa04a6478", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0514de71c9b936112", + "ami_id": "ami-0114ca1fe55bc6c4a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0567ec705c3b85302", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0608bb907d77af321", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a759885b0391b3c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0971515760d668a5d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9fb7c8758481c78", + "ami_id": "ami-0a429562812fcfb10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffb63f4432442d06", + "ami_id": "ami-082858172697df226", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fe22c49e23a8c81", + "ami_id": "ami-0f885a77f333b954c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0765a9b4036f26f32", + "ami_id": "ami-0a42b1e2c5f22035c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06294903d28adf65d", + "ami_id": "ami-021b56de28019f9cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6677068219e7cfc", + "ami_id": "ami-09d8cd7c6d76f1fa7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c84ed713e9bffb7b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07f4a8e9e2d4f8d6b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085fb5432fb30f7cb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "ami_id": "ami-08512dc5cb6d24bfa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04af9854d82d6ac0e", + "ami_id": "ami-082efaa7cfbb48629", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b55aaf015e7bd839", + "ami_id": "ami-07ef5505ecca20315", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073c48001678780d4", + "ami_id": "ami-092134cf0c5a14bc3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f38a3ea566a01eb4", + "ami_id": "ami-092bf885b6f467f68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f63f4867d80819e", + "ami_id": "ami-0224a28115980afce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a8752f9fe3a6955", + "ami_id": "ami-02efd4631ae0bbf6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b0ca3f66694029e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "ami_id": "ami-0e323f6172023fcd6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e920093f4247df1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "ami_id": "ami-045d480ebaa65340f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02efd4631ae0bbf6b", + "ami_id": "ami-04f83e8eff2239c5f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9db2d56f3911ef8", + "ami_id": "ami-0847abb93a1b78535", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077c3aea18b1effa7", + "ami_id": "ami-03a4112e0e5048f03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aba1965767b7c23e", + "ami_id": "ami-8f44f3e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.c x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn-ami-2018.03.c-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed3f0cf9d02e3093", + "ami_id": "ami-027c7b81408aab32e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd206971b03d9eb0", + "ami_id": "ami-0c9ddd0632ffa3263", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b0706448bd6fb5e", + "ami_id": "ami-0641d7381cdccb86b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12525,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0489f9d2d0a0ab087", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07be8778e2d81559f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12541,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029b139dc76239e0e", + "ami_id": "ami-0ca09dbbcad8da199", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12557,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04981be781d396650", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0757bb454d8911cdf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12573,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e584797944b1dbf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "ami_id": "ami-068b818d44771b223", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12589,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0882346ab810d4a4d", + "ami_id": "ami-04f63bf3fbdfe1640", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12605,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05931a7d1567a5958", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-093b4a3fdeeb859bd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12621,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb691c8777365c0f", + "ami_id": "ami-004cd13509897717e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12637,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1551975039b388d", + "ami_id": "ami-009e567622f025f8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12653,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029734c4a6867329b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-0ef005dc5202e5973", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12669,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073a0375a611be5fa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "ami_id": "ami-0b3bec60370e9fd75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12685,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059b4e8692ee4efe6", + "ami_id": "ami-03c5b9244fa53f611", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12701,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0545ee1a142475e2d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f9fb7c8758481c78", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12717,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0750fd52026129ec6", + "ami_id": "ami-0dcd0bc9f7fb05052", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12733,15 +14106,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0063e2c23c438110e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-07d3054a2590c5c1a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12749,15 +14123,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f570390f1eacdd72", + "ami_id": "ami-02b0c8ba8105d92db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12765,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006fef1c494513561", + "ami_id": "ami-01a8752f9fe3a6955", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12781,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f101191b78731bbb", + "ami_id": "ami-012640b03f45cf244", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12797,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a429562812fcfb10", + "ami_id": "ami-0e53bb0915684e07b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12813,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6d6fc5fe3f750f1", + "ami_id": "ami-0b00e67532ae117b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12829,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0847abb93a1b78535", + "ami_id": "ami-026f184a38ed0bf8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12845,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d15c49f8a42016ec", + "ami_id": "ami-073d4ffbf4baa65a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12861,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f964e20e7c9cde23", + "ami_id": "ami-07e584797944b1dbf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12877,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b8fa4a15d401549", + "ami_id": "ami-0d6ac2e148fff32ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12893,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cbb60bc3a7fa369", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "ami_id": "ami-0b3bef8794019bf0d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12909,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c5dfee8abe5ad05", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "ami_id": "ami-08239d32105db367b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12925,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3438ae7d35c0e65", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "ami_id": "ami-0870d1312758ec53a", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12941,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec67c187cb98a5bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08510d8662b59e2a2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12957,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ea56ea021b86658", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cfabd80c2b1889ad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12973,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef7a2936ae1e00cc", + "ami_id": "ami-0f1c01e5a34a24f55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12989,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff813420a3d9dd70", + "ami_id": "ami-0d9ea717f56829882", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13005,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9e738c8ded65fd9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "ami_id": "ami-0f77b7e96114c25de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13021,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1bf61d9afc0e505", + "ami_id": "ami-082f37c86c84b5516", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13037,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d60f9fae4e0391e2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-0cd4d0e7d34c39812", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13053,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d05c7fbb74212303", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-0fee20bc06849d512", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13069,15 +14463,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e87e5fb040912e9", + "ami_id": "ami-02848c98ccfd8d080", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13085,15 +14480,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ecc52b1eb7c4843", + "ami_id": "ami-096444708f07cd09f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13101,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bf3fb194fff2003", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08341effd2c15e58d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13117,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07da1efc0b421fdc0", + "ami_id": "ami-0876082315a821e64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13133,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032e6500d710a1949", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-0bb691c8777365c0f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13149,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c4c1a9d2c202921", + "ami_id": "ami-092f04430cb6e4e0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13165,15 +14565,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e55d9486dddb4015", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a759885b0391b3c8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13181,15 +14582,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09efc56aa0054df93", + "ami_id": "ami-02fe807553f2b45dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13197,15 +14599,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-2095224e", + "ami_id": "ami-0cb8ff50668cba1fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13213,15 +14616,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07552e4339a3ec978", + "ami_id": "ami-0e4aef5d56b9de73b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13229,15 +14633,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b28bb2dece026cd", + "ami_id": "ami-05098f687b0afb5b7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13245,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b106c7f906025fea", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "ami_id": "ami-033b4d22c3d58f52c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13261,15 +14667,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00da65d546b501a63", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03909bc0f81ca8953", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13277,15 +14684,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce6bd11dc470f32e", + "ami_id": "ami-05d2a9619b1bb5c4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13293,15 +14701,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f86f3b979497d99", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07f31d4561790eaa9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13309,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0777ed02d7d2719e0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-08fb7650927f5263d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13325,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010173e0f7a62bfbf", + "ami_id": "ami-0d1314aed48d32ab0", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13341,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a42b1e2c5f22035c", + "ami_id": "ami-08378ec5d8c4db82f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13357,15 +14769,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006acd399a577e87d", + "ami_id": "ami-02419f9db6f2861d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13373,15 +14786,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f06fde34a9e8447a", + "ami_id": "ami-0300f0c82bde30820", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13389,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcd614a5fba65796", + "ami_id": "ami-0b9d6feda3bc7fccd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13405,15 +14820,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024ab8d1ed91f1611", + "ami_id": "ami-09efc56aa0054df93", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13421,15 +14837,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0723ea30e056135ab", + "ami_id": "ami-00bcfda373d1c0277", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13437,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f31d4561790eaa9", + "ami_id": "ami-0bf64c78a7288695d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13453,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0575eb9b4d81738d8", + "ami_id": "ami-055317352b023dedb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13469,15 +14888,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0094452d83bc4b140", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-032bb416f86b390bc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13485,15 +14905,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e852717760c34c4", + "ami_id": "ami-0ae1c62e4bf5b74e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13501,15 +14922,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfcd9496ab9e1723", + "ami_id": "ami-0d15c85f9b06d1383", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13517,15 +14939,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adcea20a2e527b06", + "ami_id": "ami-05caf4a594ea3e81b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13533,15 +14956,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa74f4fdb6914dbf", + "ami_id": "ami-02b0ca3f66694029e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13549,15 +14973,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0906b1cf56fc326a3", + "ami_id": "ami-0bfd68d76390dde1d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13565,15 +14990,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8086aa57bf1723f", + "ami_id": "ami-05bf3fb194fff2003", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13581,15 +15007,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd002eaae0485874", + "ami_id": "ami-05c5dfee8abe5ad05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13597,15 +15024,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075a91de2e764dbb9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-0584b2348ac4087f7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13613,15 +15041,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eac291d1d84da9a", + "ami_id": "ami-0edde3c148312cc1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13629,15 +15058,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051e1de6dcbfbf17c", + "ami_id": "ami-007851686297e4783", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13645,15 +15075,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb405fdbd360ee36", + "ami_id": "ami-0ba011ebe1d28f9a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13661,15 +15092,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06541c7d4d4c9bc5e", + "ami_id": "ami-0516db1323fe507cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13677,15 +15109,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02419f9db6f2861d2", + "ami_id": "ami-0dcbb752dab752f1d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13693,15 +15126,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072aa43147d9e74fc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-0e575bc8cd706138d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13709,15 +15143,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf1b2cbe16adb355", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07dbf73b7c0dbc1ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13725,31 +15160,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee935829d9e3baf5", + "ami_id": "ami-0ac1fdc64b05af416", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-00d53a99b4acfc377", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13757,15 +15177,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09489e39d29cd4a03", + "ami_id": "ami-00ad714e0f1a26a32", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13773,15 +15194,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0205d9569729f070d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-032a91e2417f3d2e4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13789,15 +15211,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035420f59262a9a7a", + "ami_id": "ami-0c84ed713e9bffb7b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13805,15 +15228,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d070dfaaef6e355c", + "ami_id": "ami-02596a1e0c9c599ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13821,15 +15245,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007851686297e4783", + "ami_id": "ami-02f5ecb79b4f0f73e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13837,15 +15262,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0effe48eaa0d413a2", + "ami_id": "ami-0bb4026d9589a2a37", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13853,15 +15279,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0295d99917072bc94", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "ami_id": "ami-0489f9d2d0a0ab087", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13869,15 +15296,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05eadd39c9140c438", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d13cd9f32a0f34c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13885,15 +15313,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6d5b8cf1a398ee9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "ami_id": "ami-03233d493c3e61bc0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13901,15 +15330,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef005dc5202e5973", + "ami_id": "ami-0b1b1d998c897741d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13917,15 +15347,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c5f630f6d2dd64b", + "ami_id": "ami-0576a51b5b3aed30f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13933,15 +15364,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fab4e0489f3f2ab", + "ami_id": "ami-0bd3acaf56e72a1a3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13949,15 +15381,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf3333bce45f2c3d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-0c15070813d3600c5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13965,15 +15398,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026cfcda3b0542ebd", + "ami_id": "ami-006149d0ac1b71828", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13981,15 +15415,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7073abee2d1f604", + "ami_id": "ami-006fef1c494513561", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13997,15 +15432,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa4443025d8d4cb4", + "ami_id": "ami-0f0915becb5515be9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14013,15 +15449,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1cee5aad35c5aef", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d54f5e9cf296bc58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14029,15 +15466,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015a21e4c87aae70b", + "ami_id": "ami-0dc35c066c4a3886f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14045,15 +15483,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b2958a25855de2a", + "ami_id": "ami-06d1eb4619c8dcd8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14061,15 +15500,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3e2a61795a38ab9", + "ami_id": "ami-000c3ace6eec91d68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14077,15 +15517,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0516db1323fe507cd", + "ami_id": "ami-02046369c0dc558a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14093,15 +15534,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7919f9abb3e7251", + "ami_id": "ami-0c08fe9abec6425d2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14109,15 +15551,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b973dcfe0e2ebabe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-077f0e2b8b4a100e8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14125,15 +15568,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b999c9f77b778e2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-0e7127f6faa3a0d74", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14141,15 +15585,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c15070813d3600c5", + "ami_id": "ami-077e887e1dc859905", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14157,15 +15602,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08094ffaef984ef58", + "ami_id": "ami-0dfea23cbab1410ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14173,15 +15619,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030c18dab55018cb3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", + "ami_id": "ami-072aa43147d9e74fc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14189,15 +15636,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e31565d23e9841d7", + "ami_id": "ami-026a49abe494bd8e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14205,15 +15653,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099ddf20e1419f7a6", + "ami_id": "ami-05bf9abb3b03984ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14221,15 +15670,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9c6c112a676d8eb", + "ami_id": "ami-0c11d1a7624a90678", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14237,15 +15687,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb99767bec199df8", + "ami_id": "ami-0488b8e4fa3fdf029", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14253,15 +15704,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d6d9700bd333d75", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-0558ce24b8ffad09b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14269,15 +15721,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05734fcae7c9ceb1f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-08f61bf9340f8e1f7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14285,15 +15738,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06507582ea0eb02b8", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-072ba297fa74b9b0e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14301,15 +15755,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b15d29e38becec72", + "ami_id": "ami-0cc72047d6c475dca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14317,15 +15772,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d0bb1bd5415c6cd", + "ami_id": "ami-0205d9569729f070d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14333,15 +15789,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c1478214db2b417", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-06125406deba5a2ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14349,15 +15806,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08723330aa04a6478", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-080570115a403b5ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14365,15 +15823,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0513f1a3bf3b3057d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08c70ad061eb4c7c5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14381,15 +15840,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a44dfc29be241dfe", + "ami_id": "ami-085c8fb1a55c9fb31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14397,15 +15857,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026267e372a1f69c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "ami_id": "ami-0cf775ad9d0f7adcb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14413,15 +15874,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03507a48be45b34e7", + "ami_id": "ami-03cf6fe87e0dd6a0e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14429,15 +15891,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0418c0cf3ebca3729", + "ami_id": "ami-0eab6c4261464cf00", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14445,15 +15908,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f84b48db5207b774", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", + "ami_id": "ami-0f61acb17eebad2b9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14461,15 +15925,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0590c10a436b968e3", + "ami_id": "ami-026e67f2814086088", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14477,15 +15942,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091e84ba394940306", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0807d4d54cb63daba", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14493,15 +15959,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006149d0ac1b71828", + "ami_id": "ami-05c42238ffbb4f988", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14509,15 +15976,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd4d0e7d34c39812", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-0f964e20e7c9cde23", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14525,15 +15993,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4e8bc784a73c678", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-0895617c458801caf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14541,15 +16010,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085c8fb1a55c9fb31", + "ami_id": "ami-04f32050713e632dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14557,15 +16027,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2acc9b1f988eb8b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-0823b7cd05ef925ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14573,15 +16044,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a44d104a2172664", + "ami_id": "ami-08027590ac90c1099", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14589,15 +16061,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043c66cd8a9ac4999", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-088210f6f874bb799", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14605,15 +16078,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecb387d86e7ae13e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "ami_id": "ami-0765a9b4036f26f32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14621,15 +16095,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cd39adad75ed562", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-01ac203707d55443e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14637,15 +16112,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d40044a6698a1ffe", + "ami_id": "ami-0e0d82e1272b5ae8a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14653,15 +16129,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070bb7dbe656a0889", + "ami_id": "ami-0b6d6fc5fe3f750f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14669,15 +16146,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0507f98054e920b3b", + "ami_id": "ami-026267e372a1f69c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14685,15 +16163,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03909bc0f81ca8953", + "ami_id": "ami-0a62ec05c6c7d52c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14701,15 +16180,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06865901b1a8d222f", + "ami_id": "ami-0c50d1e71bdbbf3ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14717,15 +16197,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab5e3afc0773f28e", + "ami_id": "ami-0a42f7a55f7c58fc1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14733,15 +16214,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df0b6a0955ce23b1", + "ami_id": "ami-009212239cf5e0f5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14749,15 +16231,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d43f242961b237b3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "ami_id": "ami-032e6500d710a1949", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14765,15 +16248,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d77b2fba3628df46", + "ami_id": "ami-09d7dc13d02e66441", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14781,15 +16265,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fd59451ffa03da2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-0fcb83f0fb0b8c2bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14797,15 +16282,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038c4f0c509549e61", + "ami_id": "ami-0094452d83bc4b140", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14813,15 +16299,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0641d7381cdccb86b", + "ami_id": "ami-03c5f630f6d2dd64b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14829,15 +16316,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eca5cc28f4ea77d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "ami_id": "ami-0f2b3828f0e8410ca", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14845,15 +16333,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dca06e9fa4510c6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04af9854d82d6ac0e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14861,15 +16350,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c4daf319615aedd", + "ami_id": "ami-057a53642d6f41f68", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14877,15 +16367,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031239735d7dcd19a", + "ami_id": "ami-0749acdce21183e5a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14893,15 +16384,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ab497fe09104f63", + "ami_id": "ami-016e609d728038cdf", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14909,15 +16401,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0a3f6889d16c659", + "ami_id": "ami-03c4d2dd4e60a4932", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14925,15 +16418,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c4d2dd4e60a4932", + "ami_id": "ami-0272dd3f3717f4093", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14941,15 +16435,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e09b76701b3b1bb1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "ami_id": "ami-089a9dc9110c407a9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14957,15 +16452,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6478f40c3646e97", + "ami_id": "ami-0425964435106e39d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14973,15 +16469,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00506aaf9ea058691", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-063af3bc444ea7ee0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14989,15 +16486,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f082fe74053c053", + "ami_id": "ami-06b0fe5fa483d3411", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15005,15 +16503,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be3c59fa007d4ae0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "ami_id": "ami-007e4a98877f2b689", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15021,15 +16520,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f61bf9340f8e1f7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "ami_id": "ami-06d18ab1706437a8e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15037,15 +16537,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02848c98ccfd8d080", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03cd042ef7562cb09", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15053,15 +16554,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aea0366403b20ba4", + "ami_id": "ami-0dbad5b7b0e806ec8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15069,15 +16571,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fa470c61994a5b1", + "ami_id": "ami-0f30eab4b79247aa3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15085,15 +16588,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045d480ebaa65340f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "ami_id": "ami-01c472925c950437b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15101,15 +16605,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04de0c533b1693ffb", + "ami_id": "ami-03b8d094803a962cb", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15117,15 +16622,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071e0a82a86ea24ae", + "ami_id": "ami-0dcf592770858a733", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15133,15 +16639,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4aef5d56b9de73b", + "ami_id": "ami-0adcea20a2e527b06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15149,6 +16656,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json index ccffddc0613d..ef3af195bee5 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-northeast-3.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0a5cad15f59ec0dbb", + "ami_id": "ami-026e7eae65cf32a4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a662811e18416c7", + "ami_id": "ami-0ae96b720345aabbe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d10606c658e81383", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +47,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d043e7b1804eddf4", + "ami_id": "ami-06f8078589ca9f378", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c81bb7658954ff55", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6efcb21a5b81d1b", + "ami_id": "ami-010f93da6de24b287", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +98,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0215e671cb8a86e77", + "ami_id": "ami-0c1af7a67a26462f6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b657ecd487b16cb4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d1f571cb940b10bd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b0e56dd5e953c56", + "ami_id": "ami-059b5d1191c022191", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023a681c46304ef3f", + "ami_id": "ami-05a77f84d383fdbe4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073bb7a1d0478ce31", + "ami_id": "ami-02c72cbd3c637e2d1", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +200,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00892ed75db51a426", + "ami_id": "ami-0e1ea52b40c02e9c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00c6db1ad7c3727cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05370c2e2af3f9fdb", + "ami_id": "ami-0921da3e72049a382", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +251,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000c7514528d30a0d", + "ami_id": "ami-0a993c5620142fee3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-061155ee5480dec56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014e150fe1a4476c4", + "ami_id": "ami-09fc0d48189fc709d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f13db9678897acd", + "ami_id": "ami-05bf628760b07654e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,15 +319,458 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3101d12fd1ae1cc", + "ami_id": "ami-0bb06f8003255d17f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0402d69e5736f5782", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c8b9bb83acfa1610", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09735cbf0f2bb9da4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00f2d64d2e401daab", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07280c9f5ff9b31bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09d4053cfb389c0c9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0839938c939938f18", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e616d8977ce93cd8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a997c2b0ea3f5985", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02cb83896bf786ddc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02ab85352a9897169", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07418e6537714ae19", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08ad3c3d05f7418b7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08eb2ae0722f9ba75", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00cb70b94d840deef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d043e7b1804eddf4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-074aef56b881a0f29", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09e2cf272ee4a89c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e40825e2199c37d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fb7b1f5a3c7ae431", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b5e4ee3a12540647", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06c7c99b6e7139cc9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0eb1f6e580ad56c3f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-043be72ca1fa48db3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05dd9c8f6c3a0e30d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0db77418358b08df8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -221,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c42cd4a0379365f0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-095e0870c6c2c3984", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e41942da39e1cafb", + "ami_id": "ami-0459507c8478f3be3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ac4aff497cd5418", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-0be5efd2a465021bd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d1c66b33a4f6370", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-0657a45efc3d4eb64", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068148cd68dd602c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6efcb21a5b81d1b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3654948d60b04cc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "ami_id": "ami-065f49ed9c1a9d6e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0211d4b4879d7bab9", + "ami_id": "ami-0c1ba674a683b2d02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -333,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b72f8292e3737c71", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-091ae89e45da136b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2680b4241bad3a9", + "ami_id": "ami-0241877b791e95c67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba6a115be85abe61", + "ami_id": "ami-08bdfcfb032555dd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074157431cdbed8ba", + "ami_id": "ami-014735bd1db8d27f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d9f09933da6d0ec", + "ami_id": "ami-031608502424a157c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029a953f5ff70fdb3", + "ami_id": "ami-0e00986a8a45e78de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a205a66c0aa932cc", + "ami_id": "ami-00d283c3ef04ad2ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3fa3087c69a95ba", + "ami_id": "ami-09e8bf94b55876783", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c5400d877bf15ad", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-01d8b094f359336ad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b010e093c1a124c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a7c400365ecbdbbf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c37213ae68003ee0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0644793f7e4aa0e34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056117d173f4ad5c4", + "ami_id": "ami-0f7557ff18eb67ac8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a8742b4f6529a2c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0287609f3e35c2d91", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0165dff259b861349", + "ami_id": "ami-003fb6e50c6721007", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f4b82df7182c1b8", + "ami_id": "ami-09d84bc923ac3f2c4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4ffa9f845fc4ab4", + "ami_id": "ami-06f5721a7ec06f366", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0057628b80d5d9bb5", + "ami_id": "ami-02b572497e20bc1bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0767f197fd464abd9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-07ef4983c795721b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0839938c939938f18", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-01085ebfb44b7bbab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e562ba37fed7416", + "ami_id": "ami-0d40c6eb2cf0b0032", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095e0870c6c2c3984", + "ami_id": "ami-08167607b6b77ae8e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e8693814152e8e1", + "ami_id": "ami-0e480536b08f43544", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046215265de90349d", + "ami_id": "ami-0d326b796fa14f627", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6b269a3b3ed5420", + "ami_id": "ami-077a4d505379c1a84", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ba879b3b24c0094", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-03e552cf3f8275525", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c6db1ad7c3727cf", + "ami_id": "ami-07a44b6b87735e205", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05797ebd6f8e76119", + "ami_id": "ami-095f9523b1fc03e3c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a24d39f09cb3e68", + "ami_id": "ami-09a5bd4fc80abc235", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092be253516f24641", + "ami_id": "ami-03c30e7f9b56630b9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +1390,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fecf02b49b74961c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ab0b05a2870ee2fb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e41942da39e1cafb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dff3e11bda3126aa", + "ami_id": "ami-0f5688e311155e4c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0c151c256a4e92d", + "ami_id": "ami-028cb7d06ea8c04c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb06f8003255d17f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "ami_id": "ami-0c7ce82ba019f38fb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02913056c9723881e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "ami_id": "ami-030fe8e218e20de3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0886f65761c913c7f", + "ami_id": "ami-0547fce64df67ca6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b57667e6e6f4d6a6", + "ami_id": "ami-072b5f3f999d12201", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a907a67d4ebbaea1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0db3f7289928096be", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb7b1f5a3c7ae431", + "ami_id": "ami-0a4fe7d700182c1f8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dba79f4cad791080", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-025394b3bd4244cf4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04321ab05bbb4efa1", + "ami_id": "ami-06a1cf71b3084f799", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003dab56a8b39ebeb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-01ff219968037cbeb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013ce707431166fdc", + "ami_id": "ami-08aed18ef77abcc53", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000bae64827cd15d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c276939d747e253e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0118cebbc86bede57", + "ami_id": "ami-0051bdd20fe6dbdf2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ab6f23f1f434dd5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-0d831d9efc5c49a39", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db77418358b08df8", + "ami_id": "ami-0487e1165020b9e8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017b752a2380eac44", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "ami_id": "ami-0eb46eb9fd8b5601c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014735bd1db8d27f8", + "ami_id": "ami-072118d815c91e600", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad7a43f7b08236f9", + "ami_id": "ami-08c6be77111a8ba83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc7f32eeecbc5c19", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-021d32756df0b3cf3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024e75d2a28f27922", + "ami_id": "ami-0c7fdac4d1fbe95cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0959ac7201d9c3f83", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0762a82a49ddd512b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083ae9fdb388b8875", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ab2951faa60ac0b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00159988c440fff70", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-0ee0de027b3d6b930", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0304263895f5ce220", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cdd96e03a7520b91", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d67fa564df343b9c", + "ami_id": "ami-0ecc64860208b8f9e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af94970e4c146a6c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b047ffb02af6f475", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd14249d76499ba5", + "ami_id": "ami-0c7e7bf53d4642097", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ea7712d96aa4427", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-011a7b9abeb92b65f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af2c6d4a95b86139", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07400d5193c882bfa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1293,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044c8598e5e52b9a0", + "ami_id": "ami-0a3e6e455ec184287", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01909a27503a72184", + "ami_id": "ami-0c0f3a32fb3be2235", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07418e6537714ae19", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-055db8a653d3ddb99", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7e7bf53d4642097", + "ami_id": "ami-08feb84c5010822c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ab85352a9897169", + "ami_id": "ami-0a11d0f6d3fe02e18", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0391376573801cfd2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f6b5b2970f2f6b68", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc6b699aeabc75ae", + "ami_id": "ami-0575b14aa27d8f6a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023c56d8970c3db9b", + "ami_id": "ami-0b8ae6dc81e70561d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080e2153dbab237ed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-048988c6ded7d69a1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ffb3bfc3cb0915a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "ami_id": "ami-07f13db9678897acd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c4a81a3daf2ffd5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ed75d7687e0a76dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab2951faa60ac0b4", + "ami_id": "ami-002762a96c9c46540", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04213a5ce0689e47c", + "ami_id": "ami-028b9ab2edc62ed53", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f89bd15b701dc41", + "ami_id": "ami-0e8cedf098454dbc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05349a794719271c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "ami_id": "ami-037e5faff73d572d9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04761f9ca4bbf4de8", + "ami_id": "ami-0dc5d028d0249b6a5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05778d9b3b73ceec5", + "ami_id": "ami-0a47f963f2a45ad27", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b909cb68710b7a28", + "ami_id": "ami-0470c1326fe1e0be2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7ce82ba019f38fb", + "ami_id": "ami-0c82690231da47cef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e40825e2199c37d4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6aa03eaa745b70b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045e58025e56ed79d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02e92cae5aa1b044d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac62d0aa78c2fcac", + "ami_id": "ami-079467d1c83e91c27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d40c6eb2cf0b0032", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0870d9732bd25283d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b198cd7c53467c90", + "ami_id": "ami-0b1e57c081651ab21", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1677,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063eeb4d9d747fed2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-059b3c6883aefcf7f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a24c9bb21f78dba", + "ami_id": "ami-07a607a396a7360fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ef25e41afe17c86", + "ami_id": "ami-0a3654948d60b04cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be29026e25faf381", + "ami_id": "ami-08b85586766d0a73b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db8d908b21075499", + "ami_id": "ami-09e0577b1825f187b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ff0a0f2a8362365", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a5f2c58ec8627c3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d362fa86e2440586", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0661aad6ab1a6da91", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0007dab776c0a0470", + "ami_id": "ami-0ab62cb8c4d54af60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076672d8d1177c3c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-04e05bbbe9c581979", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b8efca22b3a24d7", + "ami_id": "ami-0526794ec3bd6060a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b60971acde8d5111", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04c4ec62ea1849de8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0051bdd20fe6dbdf2", + "ami_id": "ami-0b67328ac81bd6de0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cfb5c5661ca6c6b", + "ami_id": "ami-0e3f873f1b8c5daa0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c663ed2ac5ebbd01", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01909a27503a72184", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b5aa1c895b2c6b4", + "ami_id": "ami-08d5a5053ff89e645", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed75d7687e0a76dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-003dab56a8b39ebeb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068eeca250aefc4eb", + "ami_id": "ami-0fc4491a460106bbb", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f100a26e7dcad2e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-0abf97f2f466ffc16", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d8b27a93a7466f0", + "ami_id": "ami-03ec82a0f30f0310c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04481eee315e1b238", + "ami_id": "ami-0926da5020e153499", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b657ecd487b16cb4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-02786ee6f36ca18d4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019c187ad4796430f", + "ami_id": "ami-05f81b5053acd5f31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069b9200de7232334", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-00421b07b78081852", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e25d505cdf29ebbc", + "ami_id": "ami-027e1a2b0f6e2737b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084058ed2a65a9414", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "ami_id": "ami-0a72a5d8f7ec17f26", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce7f5b6882aa18ff", + "ami_id": "ami-02d9f09933da6d0ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0424ca6b66900708a", + "ami_id": "ami-03ff0a0f2a8362365", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fc04e1ec76b272d", + "ami_id": "ami-068148cd68dd602c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063de59a0bfdfb69f", + "ami_id": "ami-05ea7712d96aa4427", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0f3a32fb3be2235", + "ami_id": "ami-03acfc3971ef4d907", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d66f1af6b1948b05", + "ami_id": "ami-0dce90e95186a1b10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ff219968037cbeb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-0000a105fd9808d4e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0609830de51c5b645", + "ami_id": "ami-03f6d3943dce5a445", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d70375f098277fe6", + "ami_id": "ami-072de34b38f3204cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043dadddb30790b8d", + "ami_id": "ami-069deb3c90716882c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0526794ec3bd6060a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-009d597f8d8de83d7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e4e42dc8946ba14", + "ami_id": "ami-0b49be4b48b88b3db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044359f47748149a8", + "ami_id": "ami-0a99234cbba82d73e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2285,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05006b56ea0701668", + "ami_id": "ami-0145c15d596a145fb", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0c3337d79b3a198", + "ami_id": "ami-0be34a8ac882dd4f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee0de027b3d6b930", + "ami_id": "ami-0c7b29318f6817e30", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a6cbab1817c0d29", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-04f6270a7ae9f696b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0effdf0540662821a", + "ami_id": "ami-017b752a2380eac44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048d5f037056f95d3", + "ami_id": "ami-0d34a25997e8b46c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2de8f6f8137842c", + "ami_id": "ami-09aae179441131832", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074aef56b881a0f29", + "ami_id": "ami-060833e607721ee5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8dabdfa5cb9b16d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0baf1fb35aace97bf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033b42bd37a590fc3", + "ami_id": "ami-08d8b27a93a7466f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af86a80ae890529b", + "ami_id": "ami-0553878fd8f686837", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb1c9d697467107c", + "ami_id": "ami-01836e5f8ebe2738f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070c18bc29dd91493", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "ami_id": "ami-0ca5651236873e4fb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07417d24fd0e47106", + "ami_id": "ami-02677574ffcec95e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1e57c081651ab21", + "ami_id": "ami-03e0429754f1b67db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018b19966c1b97fbb", + "ami_id": "ami-0b7e31279878df771", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb89e9696b4e5656", + "ami_id": "ami-07fc04e1ec76b272d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9a9bbcb9e52cb13", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-09f573087b4b8d93b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d93267325aced0", + "ami_id": "ami-0a0735cc70c822869", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da7d1afed33e47ee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-044c8598e5e52b9a0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0689b42a0097d205d", + "ami_id": "ami-0b9957cf342a2dee3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dd695fe57544610", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-05370c2e2af3f9fdb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091a1ef90e5e448e6", + "ami_id": "ami-07ec7cf60c771e51d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5688e311155e4c5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "ami_id": "ami-0dbfebbe5a6ae1bec", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02677574ffcec95e5", + "ami_id": "ami-08865ac7bba54aa0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0494bf99a176f6a10", + "ami_id": "ami-0db8d908b21075499", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d664c3e15dfe257d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "ami_id": "ami-091a1ef90e5e448e6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0898e9d65b682f605", + "ami_id": "ami-0a9bf5ceb48a1b9d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077a4d505379c1a84", + "ami_id": "ami-0aa0b26f479d9db42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b6fba0f63a55317", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-00ad71de3953d6f1e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2765,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c2dfacb47fb9fe4", + "ami_id": "ami-0695f1eca0ec51372", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031d98ced658f24b0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08f80e976491cb3da", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc28868e12040c6c", + "ami_id": "ami-0eed98dfb76a6eb00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cb70b94d840deef", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "ami_id": "ami-0391376573801cfd2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c307fc84cfcb502", + "ami_id": "ami-03541be24f920322b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d326b796fa14f627", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-076f029be458cab44", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5a07f14396ae35f", + "ami_id": "ami-0d21450627e843aa4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0109a9f48332ad64c", + "ami_id": "ami-01e16f25d1011a06f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d4053cfb389c0c9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-0af2c6d4a95b86139", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e36b25f0bc5c6f5", + "ami_id": "ami-01f016960b7e60ba8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b53416b33d569316", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "ami_id": "ami-03f932639eaca8193", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099bd64cb3020b9c2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-0d2e0b8b805a24ce8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e5665abd66fe120", + "ami_id": "ami-0a54d1b045183f4bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01222233834d44312", + "ami_id": "ami-0e6d4dcd9e3743f4f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ef4983c795721b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-04102c0483e481d66", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3005,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc4632bae802497c", + "ami_id": "ami-09a376c3e72e3ab67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0182b1103ccce76f1", + "ami_id": "ami-0d6819a1ec219aaf2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a65ee138f29841b2", + "ami_id": "ami-0d710c0a69a6f1145", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed3d99a3de225cb1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f8f6cd920f5ae0b5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b381c63634c3bd91", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-0df98d5bbbc43cd36", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09785cf0dccad26eb", + "ami_id": "ami-0f7b86a7d66541539", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f29a9409d49d74e8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01385a0224ce49d6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bfe1e18da3cb521", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-023c56d8970c3db9b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0091dce6e4e921a5b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-024e75d2a28f27922", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a77f84d383fdbe4", + "ami_id": "ami-099ac6de93d386fe3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3165,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc584edb459724e2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0db17e46387d3f03d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02988205a9815ca1e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-080e2153dbab237ed", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0286d255b33004f7e", + "ami_id": "ami-0ed3d99a3de225cb1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efcae6ea9b67ef12", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-01b049c93803783cb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba94b0ec5f42c5e9", + "ami_id": "ami-0cb4b9f0f14f6cabf", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0033ea88119b7fa5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "ami_id": "ami-03a414aaf48f0c9b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0644793f7e4aa0e34", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-0494bf99a176f6a10", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f08a64ec2db70382", + "ami_id": "ami-01222233834d44312", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046587d7217d0a782", + "ami_id": "ami-0168b6a47688746ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059b5d1191c022191", + "ami_id": "ami-061e5d663dc225d28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f016960b7e60ba8", + "ami_id": "ami-0b83f45ed3f1d4a69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eaa60d41c4042215", + "ami_id": "ami-00e5ca294af3b5f06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d93e02115446349", + "ami_id": "ami-083711126f57036c5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b544e28908606c0", + "ami_id": "ami-0057628b80d5d9bb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2f1cd16e7ea42a2", + "ami_id": "ami-03f4b82df7182c1b8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a414aaf48f0c9b4", + "ami_id": "ami-0ce30ac1d7aaa18ab", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09aae179441131832", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-07ca5f9e47ce61844", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8b6c69846813ab4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-0c37213ae68003ee0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e90ea34a9e37d84", + "ami_id": "ami-00fa863139003de40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083711126f57036c5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00f89bd15b701dc41", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016cc554db4865d98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "ami_id": "ami-0258e963174fe9475", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a997c2b0ea3f5985", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-07f08e7b66b08ab04", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028cb7d06ea8c04c6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0efcae6ea9b67ef12", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028980b1b4e1c4d89", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04f5a3d4ff6dddab5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065fe663ff8abca70", + "ami_id": "ami-08b8efca22b3a24d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b6270277b23188d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-0033ea88119b7fa5a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05704ab1954dadc51", + "ami_id": "ami-0bad43dcbb33f3df0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e14d5097e010576", + "ami_id": "ami-04fabab88691180d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac7dbf01f0247429", + "ami_id": "ami-0916e349d450a7656", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc88410ef914dd9f", + "ami_id": "ami-0a8b9b550db626037", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afaf2589e2bac5ff", + "ami_id": "ami-04213a5ce0689e47c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3661,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deaa2a3efcbd1912", + "ami_id": "ami-0609830de51c5b645", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0452ce907d2970c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b0c151c256a4e92d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0477b48e85eb43dd3", + "ami_id": "ami-0f2f66e936f19553d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065aa5f1e9cc5abee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-02d9cf3513ece630e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074a885d7f432b549", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "ami_id": "ami-05a662811e18416c7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ca5f9e47ce61844", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "ami_id": "ami-06454bffc3e0a192e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048c34f68581680c7", + "ami_id": "ami-02786e3906f7f5a80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098436f864fd2d3b0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b20bbd781167bd48", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0151ed6db2957c7df", + "ami_id": "ami-019c187ad4796430f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fe7d700182c1f8", + "ami_id": "ami-00ad48e441fc44fa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ad48e441fc44fa4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "ami_id": "ami-0a8121aba6ad76a34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1f571cb940b10bd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c8dabdfa5cb9b16d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2c96a9cd670914b", + "ami_id": "ami-01ed20a61ca4afde2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021d32756df0b3cf3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-09848c7890848f4a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fabab88691180d6", + "ami_id": "ami-0165dff259b861349", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbf25697ee7e325d", + "ami_id": "ami-0274b0a05c2cc76c4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecd2a2a76fb65535", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-033f4380a1cb08966", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5f3d61778385e88", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-094cba12e74013146", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08feb84c5010822c6", + "ami_id": "ami-0cf11b51365a7ce7c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bfe278c40fa19fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-0c42cd4a0379365f0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002dcd4965316f54c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b86eb77cce1b7e3d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09319a557b2a7b7c0", + "ami_id": "ami-06a421fd7b2cb3969", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3e6e455ec184287", + "ami_id": "ami-0d9a9bbcb9e52cb13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ade67fd24e71ed8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0424ca6b66900708a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb03fe5e96757ade", + "ami_id": "ami-02d358004635cea15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edd0626ce77f8852", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "ami_id": "ami-06be0bd867d989290", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027e1a2b0f6e2737b", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-0373a4c0bb70cce91", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089b288e5f0fbe984", + "ami_id": "ami-0ec7c4f4bf8b60266", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c348aa48e624011a", + "ami_id": "ami-0f715bbc9bcb3bb33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3e915406b9f2f22", + "ami_id": "ami-0ec828690de33a982", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b99f34beef59668", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-042e1f501450e0184", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef15f3522f742444", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0f6f719295669d1d7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e2cf272ee4a89c4", + "ami_id": "ami-089137ea2136aa997", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f81b5053acd5f31", + "ami_id": "ami-0a97cedddde1bb9ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5365613c95583db", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "ami_id": "ami-0b2f1cd16e7ea42a2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0690f9036452669d9", + "ami_id": "ami-084d26401259d587b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dce90e95186a1b10", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-014c0d760e171c201", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01385a0224ce49d6c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0882590da12ab1364", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a54d1b045183f4bc", + "ami_id": "ami-0ba6a115be85abe61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af8ffbfcee6965c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-0a8b6c69846813ab4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e170171e6fb4ec2", + "ami_id": "ami-0fc5767d96ec0c04e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093f0068e35019310", + "ami_id": "ami-044fcbd4502ad34e8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4333,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a443701f13bd411", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07d3e111bc0b3fb53", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9fa817be1d0f16e", + "ami_id": "ami-0e6b05e734f4d5282", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081d7ea993d2b373a", + "ami_id": "ami-0fae7ac09c13785ef", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b6a79e1ba339393", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-0cc4632bae802497c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074a297b234c5128c", + "ami_id": "ami-06a110485501598f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0261a2267fb497237", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-0a3cd515dce2a8233", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027360eaed5cb1223", + "ami_id": "ami-0be69251287db4d1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03541be24f920322b", + "ami_id": "ami-0649d244b1b4a5f75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011a7b9abeb92b65f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ef17629a6cf9d8e0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0926da5020e153499", + "ami_id": "ami-0a65ee138f29841b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ab88771eb79cccd", + "ami_id": "ami-0d6286d1be0e65928", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065f49ed9c1a9d6e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-091e85c40db09ed35", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09951faf084627582", + "ami_id": "ami-0ccea5e094e6329d2", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ec5e93ea9602cf6", + "ami_id": "ami-00533b2a01b9c800d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0770867eec2b1b8b9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-098436f864fd2d3b0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff218b7721a8c069", + "ami_id": "ami-0690f9036452669d9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02970ab8b05761525", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-0e941c72441566c2b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0372b417e26cce039", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0eb1c9d697467107c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6fb3d9fb1d9f18b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-006fed8c744584a66", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c85625723d37f379", + "ami_id": "ami-028aca57d926d7470", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3f873f1b8c5daa0", + "ami_id": "ami-081d7ea993d2b373a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093a703508af50064", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-05797ebd6f8e76119", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0470c1326fe1e0be2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "ami_id": "ami-03ba9e95f5eaa0b3a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0737e531f5517fb36", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-048290c8487264241", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b18631cf04514fe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-06457bcb8f0a20955", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047d94ba66a59d513", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "ami_id": "ami-0210b901ba42d9706", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0300a7184c8520b69", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-0502112dbbd716e23", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8a8fba99a7f2123", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-037a326f3a20c85c2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028bc2ecd1b3d6c5f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-058865f0be54618cc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4797,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038ee4e8a5d14a208", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09f21ee289eeddda6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05774a919f44d6429", + "ami_id": "ami-0a3101d12fd1ae1cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa7a11841557a71b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "ami_id": "ami-08a80fde38f7f7f3d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce30ac1d7aaa18ab", + "ami_id": "ami-054ab19b29cc1f661", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d283c3ef04ad2ca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-009949bcbc37610af", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0547fce64df67ca6d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0b2c9816b62039db2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d17b87dcafb8ba1", + "ami_id": "ami-00159988c440fff70", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4909,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb725208ed77ef2c", + "ami_id": "ami-0ff218b7721a8c069", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0709e58502c530110", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-045e58025e56ed79d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07660ba44adee85bb", + "ami_id": "ami-0c6fb3d9fb1d9f18b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059b3c6883aefcf7f", + "ami_id": "ami-0007dab776c0a0470", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07452309b5e0c04ea", + "ami_id": "ami-0e416b49c5c4ca805", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06de618217ccf51f4", + "ami_id": "ami-097d93267325aced0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8b9b550db626037", + "ami_id": "ami-04ff9feb11591546a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3cd515dce2a8233", + "ami_id": "ami-015fad176cd9b3c5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0333e1ad4bf128644", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-0cc28868e12040c6c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e416b49c5c4ca805", + "ami_id": "ami-0a0645b7574f95b84", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070b888e01dfe9d57", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-08feeef1dc63c402d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054ea93f18ec8b308", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "ami_id": "ami-06edf350208500144", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c88852d2d01c17dd", + "ami_id": "ami-071b431ceeef38126", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d21450627e843aa4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-0a3e915406b9f2f22", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061e2511ddaa18f74", + "ami_id": "ami-0959ac7201d9c3f83", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064c526733391af4f", + "ami_id": "ami-09785cf0dccad26eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1af7a67a26462f6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-0f205f5c307c85a09", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02986be9108c03ae7", + "ami_id": "ami-03b3556112a304b4e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0990e412da44d3227", + "ami_id": "ami-0103f46ac491b8125", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0841b9979c3f2994b", + "ami_id": "ami-0d8fcf661add67e3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ff9feb11591546a", + "ami_id": "ami-0106e9f0722ed529c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089137ea2136aa997", + "ami_id": "ami-033b42bd37a590fc3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0502112dbbd716e23", + "ami_id": "ami-0edd0626ce77f8852", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c82690231da47cef", + "ami_id": "ami-0119dac82a793018f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037e5faff73d572d9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-02312a0c358049736", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e8bf94b55876783", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c2530750cb31da45", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0258e963174fe9475", + "ami_id": "ami-0e77dc4182cab0e57", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bd7ad8cfbc278f7", + "ami_id": "ami-0286706bcf23f25b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b527651eefbb968c", + "ami_id": "ami-0737e531f5517fb36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003752af2e08c4a9a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d685a7112b7c0011", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b047ffb02af6f475", + "ami_id": "ami-00ab88771eb79cccd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a47f963f2a45ad27", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-0e27ea862cf46301d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061e5d663dc225d28", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-0333e1ad4bf128644", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fa863139003de40", + "ami_id": "ami-08e5665abd66fe120", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e86cf09c5111a4ee", + "ami_id": "ami-01be6cf1befa0ed08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc14ecc4477482c7", + "ami_id": "ami-0f74d11192fd666e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cea12f1b18ea1f76", + "ami_id": "ami-0cc7f32eeecbc5c19", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04157aff626021bcc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bc6b699aeabc75ae", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4af26e0fe378594", + "ami_id": "ami-0c639656d0fba4fa1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055b289e03f2c8a99", + "ami_id": "ami-0b54675afab245690", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7b5bcc97e1f6142", + "ami_id": "ami-05006b56ea0701668", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aef8921d91436022", + "ami_id": "ami-0182b1103ccce76f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f08e7b66b08ab04", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-068184e8a6a089e9f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9957cf342a2dee3", + "ami_id": "ami-027360eaed5cb1223", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b191c02f66edda7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-08a6cbab1817c0d29", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071b431ceeef38126", + "ami_id": "ami-0c4fdca190f8fb086", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047f5c35db7ec11d9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-01b6a79e1ba339393", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7e31279878df771", + "ami_id": "ami-002dcd4965316f54c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042f213676c4d5d1a", + "ami_id": "ami-04ccae374e91435c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae96b720345aabbe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "ami_id": "ami-070c18bc29dd91493", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09848c7890848f4a6", + "ami_id": "ami-08089418dd89332f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c798c6d1bcf46522", + "ami_id": "ami-0c8a8fba99a7f2123", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09042245689286096", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-02986be9108c03ae7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c09dade3d3e4051c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0efd08c515561ae2f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb1f6e580ad56c3f", + "ami_id": "ami-0a68803c3f221ab9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e552cf3f8275525", + "ami_id": "ami-031c51f221f1c0967", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5805,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077d257fe0ff67c78", + "ami_id": "ami-0261a2267fb497237", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09039f94bdb185d68", + "ami_id": "ami-01a8742b4f6529a2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068a6bcd6b93a8ce3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08de4daa63ad32193", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bdfcfb032555dd9", + "ami_id": "ami-0211d4b4879d7bab9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f8078589ca9f378", + "ami_id": "ami-09951faf084627582", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0210b901ba42d9706", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0d4450d4d75381503", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094cba12e74013146", + "ami_id": "ami-02988205a9815ca1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d678c0f9b54ded85", + "ami_id": "ami-01cfacad3993a7b1f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd802d3ae673f2bb", + "ami_id": "ami-096eb592dbbdaf6b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5949,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031c51f221f1c0967", + "ami_id": "ami-04e36b25f0bc5c6f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016ba5ec8c6ff6e9e", + "ami_id": "ami-0b8774837acc10cdd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7b8aa44d11e2f89", + "ami_id": "ami-024805e6d9184fb47", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6aa03eaa745b70b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-03ac17b21e3fb610f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051bd3a60447ea2a9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "ami_id": "ami-0e5f3d61778385e88", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f6d3943dce5a445", + "ami_id": "ami-058a9d02a2d1061d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0906a8e7aa38a6e58", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a4ffa9f845fc4ab4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0649d244b1b4a5f75", + "ami_id": "ami-0e47631e1b1fb884c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d10606c658e81383", + "ami_id": "ami-0be29026e25faf381", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043be72ca1fa48db3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-0cbf25697ee7e325d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01085ebfb44b7bbab", + "ami_id": "ami-05e14d5097e010576", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca84b21d3bbdf7d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-028980b1b4e1c4d89", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac885862e9c68180", + "ami_id": "ami-0afaf2589e2bac5ff", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdd96e03a7520b91", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-0c5f56e4f0835d58b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2f66e936f19553d", + "ami_id": "ami-01e8693814152e8e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a993c5620142fee3", + "ami_id": "ami-0640ef404e5db9024", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0106e9f0722ed529c", + "ami_id": "ami-02970ab8b05761525", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0558bd6821f495034", + "ami_id": "ami-09e50cea8cfc0c56b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089d985517c535e33", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-0e25bacff42c3689e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0241877b791e95c67", + "ami_id": "ami-0af86a80ae890529b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fa302fc1844720b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b9fa817be1d0f16e", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07400d5193c882bfa", + "ami_id": "ami-056dbf6eb93216369", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b56796f6470a47a", + "ami_id": "ami-05c8d2042bc6f1a41", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4f2b6e243254bb1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0feac5b83034fa647", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e05bbbe9c581979", + "ami_id": "ami-0c663ed2ac5ebbd01", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0921da3e72049a382", + "ami_id": "ami-09c1052d72d89c77f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6365,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ed20a61ca4afde2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-09039f94bdb185d68", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6381,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0575b14aa27d8f6a4", + "ami_id": "ami-0a205a66c0aa932cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c137ec8ca8ac3db", + "ami_id": "ami-0e3d8ee6a1f0d2f49", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e81aff43a26d7b76", + "ami_id": "ami-0d1baace54ac27c16", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de7bb3dbe4442b31", + "ami_id": "ami-09d1c66b33a4f6370", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08baf93e5cfc813ec", + "ami_id": "ami-069b9200de7232334", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f80e976491cb3da", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0709e58502c530110", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084d26401259d587b", + "ami_id": "ami-0b010e093c1a124c8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0402d69e5736f5782", + "ami_id": "ami-0004fc0d5278b5cc2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003bf697d38b8cf70", + "ami_id": "ami-0c595a273e3da1911", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e16f25d1011a06f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04a12ff2df8e915e5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079467d1c83e91c27", + "ami_id": "ami-0b5365613c95583db", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09358d724da2220e7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-05f6a906834878bac", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a974ea9ee07ff44", + "ami_id": "ami-0a25fc646090a9f45", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0657a45efc3d4eb64", + "ami_id": "ami-0c027d52b18737dcd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c9fd82f2795975f", + "ami_id": "ami-0f29a9409d49d74e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bafc405f28a859c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-022b62f5d46566adf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b1a05beec2519e2", + "ami_id": "ami-065fe663ff8abca70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e56d643adb9c5f5", + "ami_id": "ami-0b1921fde4c651bbd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db3f7289928096be", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-0d503d3959d26f50f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2e0b8b805a24ce8", + "ami_id": "ami-0286d255b33004f7e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6701,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c7c99b6e7139cc9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0319e74b62ceb7e97", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0361aea745cdc5232", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-0d0c3337d79b3a198", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03155f6cd7afd6733", + "ami_id": "ami-0cc05675645707d2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d501a478095c0a50", + "ami_id": "ami-092be253516f24641", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055db8a653d3ddb99", + "ami_id": "ami-05e78730b907206b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9e45f1add543186", + "ami_id": "ami-08b6fba0f63a55317", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0168b6a47688746ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "ami_id": "ami-0d664c3e15dfe257d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051edefb5c0254adf", + "ami_id": "ami-068b40ea66fb225f8", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f5721a7ec06f366", + "ami_id": "ami-0689b42a0097d205d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca1b52f8e208ab59", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "ami_id": "ami-0cb03fe5e96757ade", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00421b07b78081852", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-070b888e01dfe9d57", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0057e1ea4f3bb9f49", + "ami_id": "ami-0bd14249d76499ba5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fb773a9ee3646b2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "ami_id": "ami-03a7258d58978af3a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b20bbd781167bd48", + "ami_id": "ami-0ac62d0aa78c2fcac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec4ef6ed4f405403", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "ami_id": "ami-019065b4705ac8e3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e013a2cda58db98d", + "ami_id": "ami-0c4af26e0fe378594", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec828690de33a982", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0b72f8292e3737c71", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab62cb8c4d54af60", + "ami_id": "ami-0e013a2cda58db98d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076f029be458cab44", + "ami_id": "ami-03a974ea9ee07ff44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06454bffc3e0a192e", + "ami_id": "ami-0558bd6821f495034", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028b9ab2edc62ed53", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-051bd3a60447ea2a9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa0b26f479d9db42", + "ami_id": "ami-05704ab1954dadc51", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7557ff18eb67ac8", + "ami_id": "ami-00816bded1ab9a8b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbfebbe5a6ae1bec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08c137ec8ca8ac3db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066c610bc6845062f", + "ami_id": "ami-0cea12f1b18ea1f76", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08eb2ae0722f9ba75", + "ami_id": "ami-0c348aa48e624011a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0882590da12ab1364", + "ami_id": "ami-0f9567ec8a855f5b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a92df733488a7ac9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-0ba94b0ec5f42c5e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039879065e760d114", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-068a6bcd6b93a8ce3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa48977eccdc3c88", + "ami_id": "ami-0e81aff43a26d7b76", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9567ec8a855f5b2", + "ami_id": "ami-063de59a0bfdfb69f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d358004635cea15", + "ami_id": "ami-07452309b5e0c04ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b3556112a304b4e", + "ami_id": "ami-0338baf103769ebb2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09501c9961ca54ebc", + "ami_id": "ami-0f24f7382ae068a97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07280c9f5ff9b31bc", + "ami_id": "ami-0f5713e3c3184a9fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e0429754f1b67db", + "ami_id": "ami-028bc2ecd1b3d6c5f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a607a396a7360fb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "ami_id": "ami-0dc06345df64571fe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa7c8bcac607f167", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f5a07f14396ae35f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0828497bc02409c18", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-09042245689286096", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035711e7402cb97e4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ba10044da677497c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f5ca20568021c8f", + "ami_id": "ami-0bc88410ef914dd9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ac17b21e3fb610f", + "ami_id": "ami-054034ce8e7cfab78", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ec82a0f30f0310c", + "ami_id": "ami-0b631bb782cfa77f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02498ea1fb84a7129", + "ami_id": "ami-0d8b8dd3278d5b5ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042afb201531b883c", + "ami_id": "ami-0477b48e85eb43dd3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0780b4cce0cca0edf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-0585709abd657adbd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e941c72441566c2b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-01d344df681b9693d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dac1fc7b5dda3fa0", + "ami_id": "ami-0906a8e7aa38a6e58", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0430a2001b2397817", + "ami_id": "ami-0311334db715d6e21", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04db0146235717dba", + "ami_id": "ami-074a297b234c5128c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f715bbc9bcb3bb33", + "ami_id": "ami-03c307fc84cfcb502", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014c0d760e171c201", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00e3a4b9be2c834e3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e616d8977ce93cd8", + "ami_id": "ami-0b89ef8d9b691fcfb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c79aa1a9db4ba906", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-05778d9b3b73ceec5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c91c59e9e465c33", + "ami_id": "ami-0da7d1afed33e47ee", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0b6762579713bc6", + "ami_id": "ami-01f318494395f06ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0943fbdce5d80da0f", + "ami_id": "ami-0ecd2a2a76fb65535", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be34a8ac882dd4f8", + "ami_id": "ami-01ade67fd24e71ed8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010f93da6de24b287", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-0569b7f3189a3ec52", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089dc2ca0b159db5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-0e02d831840228c32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d9cf3513ece630e", + "ami_id": "ami-03155f6cd7afd6733", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4fdca190f8fb086", + "ami_id": "ami-07e0ddea504f0c29b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a02ed2a1995296e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-0b31bc051d88577b2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0569b7f3189a3ec52", + "ami_id": "ami-080769d29ce4816f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0603a52a5dcbeec9e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-06e147c8454963a30", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0585709abd657adbd", + "ami_id": "ami-0eaa60d41c4042215", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a80fde38f7f7f3d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05349a794719271c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e147c8454963a30", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-043dadddb30790b8d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0916e349d450a7656", + "ami_id": "ami-03b544e28908606c0", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a04977ae81259bbc", + "ami_id": "ami-0a6b269a3b3ed5420", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031608502424a157c", + "ami_id": "ami-0d362fa86e2440586", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a3fae9783ac73d1", + "ami_id": "ami-0fa7c8bcac607f167", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8f5a186a27482e1", + "ami_id": "ami-0de7bb3dbe4442b31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f74d11192fd666e8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-050cb1a1d9d8e7813", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0004fc0d5278b5cc2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ca1b52f8e208ab59", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0735cc70c822869", + "ami_id": "ami-0c8b475b4e420ba58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8fcf661add67e3a", + "ami_id": "ami-05b1a05beec2519e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0785fc78183580b59", + "ami_id": "ami-091664c7bb84c63fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002762a96c9c46540", + "ami_id": "ami-02436a61ffbed6618", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e0577b1825f187b", + "ami_id": "ami-039879065e760d114", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e51642df8ea2f5d9", + "ami_id": "ami-0dd802d3ae673f2bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df98d5bbbc43cd36", + "ami_id": "ami-0fa48977eccdc3c88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e384ee19b264e5c", + "ami_id": "ami-08b199251dbaaad1a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8b475b4e420ba58", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00d17b87dcafb8ba1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fbbc2ba8d8a3110", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-077d257fe0ff67c78", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0893bf2cfde57f0c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-07e170171e6fb4ec2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f6270a7ae9f696b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-04761f9ca4bbf4de8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9d7e8886fad28b6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-068eeca250aefc4eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09735cbf0f2bb9da4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "ami_id": "ami-0a907a67d4ebbaea1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db17e46387d3f03d", + "ami_id": "ami-0ec4ef6ed4f405403", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015fad176cd9b3c5e", + "ami_id": "ami-0f08a64ec2db70382", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f6a906834878bac", + "ami_id": "ami-09501c9961ca54ebc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091e85c40db09ed35", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "ami_id": "ami-035711e7402cb97e4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e02d831840228c32", + "ami_id": "ami-0118cebbc86bede57", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6f719295669d1d7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0151ed6db2957c7df", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07705066668f2cab9", + "ami_id": "ami-0c85625723d37f379", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5d5a80d25013e8e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-0323ddbaaec59ed12", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfff31837f11b283", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-063eeb4d9d747fed2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cb83896bf786ddc", + "ami_id": "ami-017520677aef2cedd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8ae6dc81e70561d", + "ami_id": "ami-07705066668f2cab9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0448f69e17c400270", + "ami_id": "ami-0277f6ac0e3745528", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e0ddea504f0c29b", + "ami_id": "ami-0e7b8aa44d11e2f89", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6b05e734f4d5282", + "ami_id": "ami-03cc80d1dc7868ab0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0762a82a49ddd512b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0091dce6e4e921a5b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04102c0483e481d66", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-065aa5f1e9cc5abee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ad3c3d05f7418b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03e73aa5f50c4ede4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01db8a01fc65ed88f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "ami_id": "ami-01d7b51c7263c0ccc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069deb3c90716882c", + "ami_id": "ami-04157aff626021bcc", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1ea52b40c02e9c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "ami_id": "ami-013ce707431166fdc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07671b31592c6a3c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0990e412da44d3227", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2cd39d7844fee75", + "ami_id": "ami-09319a557b2a7b7c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054ab19b29cc1f661", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec22575eb65a1977", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0103f46ac491b8125", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-06fbbc2ba8d8a3110", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e255a0065bc4cf8", + "ami_id": "ami-0767f197fd464abd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c657cf8e070dc44e", + "ami_id": "ami-008a01dea75b4129a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8541,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc92603af29872cf", + "ami_id": "ami-01db8a01fc65ed88f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c10de182b97e44a", + "ami_id": "ami-046215265de90349d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080769d29ce4816f2", + "ami_id": "ami-01b6da9c1e72407c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5f2c58ec8627c3d", + "ami_id": "ami-0b60971acde8d5111", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a110485501598f3", + "ami_id": "ami-04b0e56dd5e953c56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2530750cb31da45", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "ami_id": "ami-038ee4e8a5d14a208", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0695f1eca0ec51372", + "ami_id": "ami-048c34f68581680c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050cb1a1d9d8e7813", + "ami_id": "ami-09358d724da2220e7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be22aa63f4e7376e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "ami_id": "ami-047df8115596a2743", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5f56e4f0835d58b", + "ami_id": "ami-0f9ad8eee9446aa00", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c8d2042bc6f1a41", + "ami_id": "ami-07671b31592c6a3c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6c75d37f94f3b4e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "ami_id": "ami-01ab6f23f1f434dd5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1ba674a683b2d02", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e4ca5db9c1b6fb52", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0553878fd8f686837", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "ami_id": "ami-073bb7a1d0478ce31", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d3e111bc0b3fb53", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00495edbe84028f36", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d84bc923ac3f2c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-020cf601989f84e53", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a13f5a4c4d2e5c08", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b3fa3087c69a95ba", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058a9d02a2d1061d2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-06d13a40eb6c7998c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091ae89e45da136b1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "ami_id": "ami-0c545b9534a08dac9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4a2525116b53c66", + "ami_id": "ami-055b289e03f2c8a99", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058865f0be54618cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06de618217ccf51f4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025394b3bd4244cf4", + "ami_id": "ami-083ae9fdb388b8875", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015b1a99b499d437c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-035d1f247bcfd6df7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c6be77111a8ba83", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0780b4cce0cca0edf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032f2338c4f72ef8a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "ami_id": "ami-0bba5a38c0b1c555f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a50643d04dea7527", + "ami_id": "ami-07d2aa5cf65a9ebe3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009d597f8d8de83d7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-083097df9f9c6db6f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ec7cf60c771e51d", + "ami_id": "ami-09a443701f13bd411", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb46eb9fd8b5601c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-03ef25e41afe17c86", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d5a5053ff89e645", + "ami_id": "ami-0774caaaff9eb379f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c595a273e3da1911", + "ami_id": "ami-0a5cad15f59ec0dbb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d0707d49b924417", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-08d2843068859d316", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e638d1146f5324e", + "ami_id": "ami-0d0b6762579713bc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f5a3d4ff6dddab5", + "ami_id": "ami-061e2511ddaa18f74", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047df8115596a2743", + "ami_id": "ami-0ad7a43f7b08236f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b049c93803783cb", + "ami_id": "ami-0092b0bb450a91100", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0774caaaff9eb379f", + "ami_id": "ami-0ac9f0a1d5b8f7270", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc5d028d0249b6a5", + "ami_id": "ami-017a0f739e3c409f4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e73aa5f50c4ede4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-0c09dade3d3e4051c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6b5b2970f2f6b68", + "ami_id": "ami-000cc4b2643195b02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091664c7bb84c63fe", + "ami_id": "ami-0bb89e9696b4e5656", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033f4380a1cb08966", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0deaa2a3efcbd1912", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056dbf6eb93216369", + "ami_id": "ami-0c4f2b6e243254bb1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08089418dd89332f9", + "ami_id": "ami-0a856c6c5ec2ef331", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0000a105fd9808d4e", + "ami_id": "ami-0b909cb68710b7a28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a26a49f38560c39", + "ami_id": "ami-029a953f5ff70fdb3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cc80d1dc7868ab0", + "ami_id": "ami-0fd48c913e53119a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2c9816b62039db2", + "ami_id": "ami-047d94ba66a59d513", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026e7eae65cf32a4b", + "ami_id": "ami-07417d24fd0e47106", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8121aba6ad76a34", + "ami_id": "ami-0d2c96a9cd670914b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb4b9f0f14f6cabf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-0da5fe62208490083", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0274b0a05c2cc76c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "ami_id": "ami-056cd2721f3d94f5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048988c6ded7d69a1", + "ami_id": "ami-0d678c0f9b54ded85", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +10536,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017520677aef2cedd", + "ami_id": "ami-073cb32a01f337095", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09f0fa39365b9dede", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0119dac82a793018f", + "ami_id": "ami-09f5ca20568021c8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f932639eaca8193", + "ami_id": "ami-05a3fae9783ac73d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073cb32a01f337095", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-00a08abb64977dc00", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c4ec62ea1849de8", + "ami_id": "ami-0d9014c77ed20a4a4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ba9e95f5eaa0b3a", + "ami_id": "ami-0222b79fa7c9ca486", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048290c8487264241", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-0b198cd7c53467c90", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc06345df64571fe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-08ac4aff497cd5418", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03701428cfc83cbf3", + "ami_id": "ami-0499df9b83f05f9ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0277f6ac0e3745528", + "ami_id": "ami-0d66f1af6b1948b05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0286706bcf23f25b8", + "ami_id": "ami-03701428cfc83cbf3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e92cae5aa1b044d", + "ami_id": "ami-0c9d7e8886fad28b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0534e272c43cdbefd", + "ami_id": "ami-066c610bc6845062f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d344df681b9693d", + "ami_id": "ami-08b56796f6470a47a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b31bc051d88577b2", + "ami_id": "ami-04481eee315e1b238", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7b29318f6817e30", + "ami_id": "ami-000c7514528d30a0d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1921fde4c651bbd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0893bf2cfde57f0c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e5ca294af3b5f06", + "ami_id": "ami-09e56d643adb9c5f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9014c77ed20a4a4", + "ami_id": "ami-0ac885862e9c68180", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c170ffa987157c87", + "ami_id": "ami-0a50643d04dea7527", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024805e6d9184fb47", + "ami_id": "ami-00ec5e93ea9602cf6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072de34b38f3204cf", + "ami_id": "ami-0d70375f098277fe6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0757de71c9a8fcefc", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-016fa93b1b5006949", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0870d9732bd25283d", + "ami_id": "ami-0fa7a11841557a71b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e47631e1b1fb884c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "ami_id": "ami-02d93e02115446349", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c72cbd3c637e2d1", + "ami_id": "ami-05fb773a9ee3646b2", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2adab645eee154e", + "ami_id": "ami-0effdf0540662821a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08de4daa63ad32193", + "ami_id": "ami-078b52d06b492e791", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06be0bd867d989290", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cb202e625334443c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9d60256bdc4012e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09c5400d877bf15ad", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a1cf71b3084f799", + "ami_id": "ami-047f5c35db7ec11d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc4491a460106bbb", + "ami_id": "ami-032f2338c4f72ef8a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016fa93b1b5006949", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-044359f47748149a8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02786ee6f36ca18d4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02bfe278c40fa19fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f21ee289eeddda6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0603a52a5dcbeec9e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0754f81e67d5ccece", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0636a048ed54c3b9d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac9f0a1d5b8f7270", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-054ea93f18ec8b308", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044fcbd4502ad34e8", + "ami_id": "ami-0f4a2525116b53c66", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2c8726c5844f83b", + "ami_id": "ami-0785fc78183580b59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082a09cec110d220e", + "ami_id": "ami-0e51642df8ea2f5d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4450d4d75381503", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-01c4a81a3daf2ffd5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03349a0afec4b17e4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00d0707d49b924417", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08865ac7bba54aa0a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0531983d7bec1f0dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099ac6de93d386fe3", + "ami_id": "ami-0ce7f5b6882aa18ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e25bacff42c3689e", + "ami_id": "ami-058195ef77764a085", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c81bb7658954ff55", + "ami_id": "ami-03b6270277b23188d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b67328ac81bd6de0", + "ami_id": "ami-016cc554db4865d98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1baace54ac27c16", + "ami_id": "ami-0e00ba01626ac3ff2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bad43dcbb33f3df0", + "ami_id": "ami-064c526733391af4f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0661aad6ab1a6da91", + "ami_id": "ami-0ece2deed3c95e8ae", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b85586766d0a73b", + "ami_id": "ami-093a703508af50064", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b89ef8d9b691fcfb", + "ami_id": "ami-046587d7217d0a782", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba10044da677497c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c798c6d1bcf46522", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d07b4161bac40f7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0448f69e17c400270", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bf628760b07654e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "ami_id": "ami-00892ed75db51a426", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e27ea862cf46301d", + "ami_id": "ami-0a92df733488a7ac9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054034ce8e7cfab78", + "ami_id": "ami-0dc584edb459724e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eed98dfb76a6eb00", + "ami_id": "ami-048d5f037056f95d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006fed8c744584a66", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "ami_id": "ami-00b5aa1c895b2c6b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f0fa39365b9dede", + "ami_id": "ami-09e4e42dc8946ba14", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0222b79fa7c9ca486", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-018b19966c1b97fbb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d2843068859d316", + "ami_id": "ami-03c91c59e9e465c33", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f573087b4b8d93b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "ami_id": "ami-09c9fd82f2795975f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5e4ee3a12540647", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0372b417e26cce039", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dfe710d721256bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "ami_id": "ami-051edefb5c0254adf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a25fc646090a9f45", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "ami_id": "ami-090e3fc0fd0767469", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01be6cf1befa0ed08", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08824cfe8a552c759", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc05675645707d2c", + "ami_id": "ami-07e638d1146f5324e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072118d815c91e600", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "ami_id": "ami-06fa302fc1844720b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7b86a7d66541539", + "ami_id": "ami-03b191c02f66edda7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7fdac4d1fbe95cc", + "ami_id": "ami-04db0146235717dba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a97cedddde1bb9ef", + "ami_id": "ami-0ac7dbf01f0247429", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f2d64d2e401daab", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00a26a49f38560c39", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0645b7574f95b84", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a0452ce907d2970c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d831d9efc5c49a39", + "ami_id": "ami-03cfb5c5661ca6c6b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5713e3c3184a9fe", + "ami_id": "ami-0c88852d2d01c17dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6d4dcd9e3743f4f", + "ami_id": "ami-0b57667e6e6f4d6a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00533b2a01b9c800d", + "ami_id": "ami-0e86cf09c5111a4ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0145c15d596a145fb", + "ami_id": "ami-074157431cdbed8ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a421fd7b2cb3969", + "ami_id": "ami-0ef15f3522f742444", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d503d3959d26f50f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0300a7184c8520b69", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009949bcbc37610af", + "ami_id": "ami-03349a0afec4b17e4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030fe8e218e20de3d", + "ami_id": "ami-0e25d505cdf29ebbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d685a7112b7c0011", + "ami_id": "ami-0702922c7e23fdd25", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10733,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b54675afab245690", + "ami_id": "ami-000bae64827cd15d2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e00986a8a45e78de", + "ami_id": "ami-016ba5ec8c6ff6e9e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090e3fc0fd0767469", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "ami_id": "ami-0841b9979c3f2994b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c276939d747e253e", + "ami_id": "ami-07660ba44adee85bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072b5f3f999d12201", + "ami_id": "ami-08dfe710d721256bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b86eb77cce1b7e3d", + "ami_id": "ami-09f100a26e7dcad2e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10829,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c30e7f9b56630b9", + "ami_id": "ami-0d501a478095c0a50", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d7b51c7263c0ccc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-09bd7ad8cfbc278f7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b77b1d9831f0b9f4", + "ami_id": "ami-074a885d7f432b549", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ece2deed3c95e8ae", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-023a681c46304ef3f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf11b51365a7ce7c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-0b1bbc07c0db7f602", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10909,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efd08c515561ae2f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0da9206a8d1de2273", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0323ddbaaec59ed12", + "ami_id": "ami-031d98ced658f24b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bba5a38c0b1c555f", + "ami_id": "ami-08fa39058f8851037", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab0b05a2870ee2fb", + "ami_id": "ami-0a2c6b66731f188b6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e480536b08f43544", + "ami_id": "ami-0886f65761c913c7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a12ff2df8e915e5", + "ami_id": "ami-0bafc405f28a859c1", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058195ef77764a085", + "ami_id": "ami-042f213676c4d5d1a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3d8ee6a1f0d2f49", + "ami_id": "ami-042afb201531b883c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086af37cb17caa259", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "ami_id": "ami-0b53416b33d569316", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fc0d48189fc709d", + "ami_id": "ami-0109a9f48332ad64c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4ca5db9c1b6fb52", + "ami_id": "ami-0215e671cb8a86e77", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e77dc4182cab0e57", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0af8ffbfcee6965c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fa39058f8851037", + "ami_id": "ami-0c657cf8e070dc44e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c027d52b18737dcd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "ami_id": "ami-0cfff31837f11b283", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0287609f3e35c2d91", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0b2680b4241bad3a9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0311334db715d6e21", + "ami_id": "ami-089d985517c535e33", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0531983d7bec1f0dc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dff3e11bda3126aa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cfacad3993a7b1f", + "ami_id": "ami-086af37cb17caa259", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0319e74b62ceb7e97", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b9e45f1add543186", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d13a40eb6c7998c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-0770867eec2b1b8b9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0574a8457972ca252", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-089dc2ca0b159db5a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11245,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a5bd4fc80abc235", + "ami_id": "ami-0c6c75d37f94f3b4e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0487e1165020b9e8b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-0dac1fc7b5dda3fa0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8b9bb83acfa1610", + "ami_id": "ami-08927996ee961b0f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec7c4f4bf8b60266", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "ami_id": "ami-08c10de182b97e44a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08feeef1dc63c402d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d9d60256bdc4012e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e78730b907206b7", + "ami_id": "ami-0943fbdce5d80da0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01836e5f8ebe2738f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07efeffd4c050118d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03acfc3971ef4d907", + "ami_id": "ami-0c170ffa987157c87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca5651236873e4fb", + "ami_id": "ami-09e562ba37fed7416", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d2aa5cf65a9ebe3", + "ami_id": "ami-09ef91c549a46e931", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccea5e094e6329d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0757de71c9a8fcefc", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b00f7511fdb6a235", + "ami_id": "ami-07b99f34beef59668", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0338baf103769ebb2", + "ami_id": "ami-0d7b5bcc97e1f6142", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c639656d0fba4fa1", + "ami_id": "ami-04cc5b6cec6e5e5fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da5fe62208490083", + "ami_id": "ami-0418d1de6062d0e6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f318494395f06ca", + "ami_id": "ami-07ffb3bfc3cb0915a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a11d0f6d3fe02e18", + "ami_id": "ami-0be22aa63f4e7376e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8b8dd3278d5b5ef", + "ami_id": "ami-0a04977ae81259bbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a99234cbba82d73e", + "ami_id": "ami-003bf697d38b8cf70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8cedf098454dbc0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "ami_id": "ami-0182a537fe242b99d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9bf5ceb48a1b9d1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b381c63634c3bd91", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcc2e6e2a4137d7f", + "ami_id": "ami-0d67fa564df343b9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a68803c3f221ab9d", + "ami_id": "ami-04e90ea34a9e37d84", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e00ba01626ac3ff2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-06dd695fe57544610", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e3a4b9be2c834e3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "ami_id": "ami-08ba879b3b24c0094", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0092b0bb450a91100", + "ami_id": "ami-0a8f5a186a27482e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8b979491c61e4dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "ami_id": "ami-08baf93e5cfc813ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a44b6b87735e205", + "ami_id": "ami-03b18631cf04514fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a62b4efa52d9883d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-0b77b1d9831f0b9f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be5efd2a465021bd", + "ami_id": "ami-02913056c9723881e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0baf1fb35aace97bf", + "ami_id": "ami-0430a2001b2397817", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019065b4705ac8e3d", + "ami_id": "ami-0534e272c43cdbefd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e7ef1703d8b54b4", + "ami_id": "ami-06e384ee19b264e5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6286d1be0e65928", + "ami_id": "ami-0bc92603af29872cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017a0f739e3c409f4", + "ami_id": "ami-01bfe1e18da3cb521", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d34a25997e8b46c4", + "ami_id": "ami-0574a8457972ca252", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ad71de3953d6f1e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "ami_id": "ami-0dba79f4cad791080", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0499df9b83f05f9ee", + "ami_id": "ami-0fcc2e6e2a4137d7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b49be4b48b88b3db", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-099bd64cb3020b9c2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec22575eb65a1977", + "ami_id": "ami-0bf2d21ec70436b16", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +13205,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022b62f5d46566adf", + "ami_id": "ami-05c2dfacb47fb9fe4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b5d5a80d25013e8e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8f6cd920f5ae0b5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "ami_id": "ami-046638a71f908fe7b", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b199251dbaaad1a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-093f0068e35019310", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd48c913e53119a1", + "ami_id": "ami-0c3479fc76a4ae27b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042e1f501450e0184", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-084058ed2a65a9414", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1bbc07c0db7f602", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-0fc14ecc4477482c7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ef91c549a46e931", + "ami_id": "ami-0b527651eefbb968c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003fb6e50c6721007", + "ami_id": "ami-015b1a99b499d437c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8774837acc10cdd", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-07a02ed2a1995296e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12029,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb202e625334443c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-0fb725208ed77ef2c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a7258d58978af3a", + "ami_id": "ami-076672d8d1177c3c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c545b9534a08dac9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09e255a0065bc4cf8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12077,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0418d1de6062d0e6b", + "ami_id": "ami-0a2adab645eee154e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0783130c86830d488", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07d07b4161bac40f7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068184e8a6a089e9f", + "ami_id": "ami-0754f81e67d5ccece", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cc5b6cec6e5e5fe", + "ami_id": "ami-02e7ef1703d8b54b4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f205f5c307c85a09", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-0898e9d65b682f605", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d8b094f359336ad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ca84b21d3bbdf7d2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035d1f247bcfd6df7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-014e150fe1a4476c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046638a71f908fe7b", + "ami_id": "ami-05774a919f44d6429", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00816bded1ab9a8b6", + "ami_id": "ami-0aef8921d91436022", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0182a537fe242b99d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0783130c86830d488", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecc64860208b8f9e", + "ami_id": "ami-089b288e5f0fbe984", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7c400365ecbdbbf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0361aea745cdc5232", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b83f45ed3f1d4a69", + "ami_id": "ami-0c2de8f6f8137842c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fae7ac09c13785ef", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-0af94970e4c146a6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a72a5d8f7ec17f26", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-09135035f69576834", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0636a048ed54c3b9d", + "ami_id": "ami-0304263895f5ce220", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037a326f3a20c85c2", + "ami_id": "ami-0c2cd39d7844fee75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056cd2721f3d94f5a", + "ami_id": "ami-0c79aa1a9db4ba906", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abf97f2f466ffc16", + "ami_id": "ami-04321ab05bbb4efa1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a08abb64977dc00", + "ami_id": "ami-003752af2e08c4a9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02436a61ffbed6618", + "ami_id": "ami-07a24d39f09cb3e68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3479fc76a4ae27b", + "ami_id": "ami-0a13f5a4c4d2e5c08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032dbaf2984cc6db7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-0a2c8726c5844f83b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf2d21ec70436b16", + "ami_id": "ami-0fecf02b49b74961c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6819a1ec219aaf2", + "ami_id": "ami-03a24c9bb21f78dba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0640ef404e5db9024", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-056117d173f4ad5c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef17629a6cf9d8e0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-0cd65e4164d6ed769", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,6 +13885,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json b/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json index 90274d5f3669..1af3b573facd 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0b789e6c6cb5f1d1d", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "ami_id": "ami-06ffd00f81f901c05", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c7dbcc1310fd066", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "ami_id": "ami-06ce832b748d22b50", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8dbfba1961a3262", + "ami_id": "ami-05ccfe02eea2011a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f62162799a426851", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-0fe28a2e6e45233ef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f4e4ea117a3a0aa", + "ami_id": "ami-02852566ac6bc7826", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8d7f93a49469d2d", + "ami_id": "ami-041c3fb6ed245b87d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e3e19f21e426111", + "ami_id": "ami-00afc9e848e32b1ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20181017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20181017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02db68add888aecd3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-0975e658758ce49df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012e67a86f193c358", + "ami_id": "ami-04bcb41b8db548587", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0416723f8e455592c", + "ami_id": "ami-07bfc018f813c0264", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9c8cde719d3456e", + "ami_id": "ami-02da1a19f6ce5e079", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087632d3a5a48acf4", + "ami_id": "ami-07d5af8060c8e639d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fbcf0755bcc7b6e", + "ami_id": "ami-00aa49392c5529ded", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b84eb0a71faf3a75", + "ami_id": "ami-00b9a3d0eb58884f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d8d17a037350913", + "ami_id": "ami-0e13e0df31e6aa478", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b3e8ed32775925d", + "ami_id": "ami-028ed9d27685a2216", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f428165ef033b14d", + "ami_id": "ami-03ab7403d92c593a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aeef856e3f4d1b6b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-0c851f11f2b1d8eff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000e4b3f0c9f06ffb", + "ami_id": "ami-0ea6f6845dd370ae8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080751a8141d8551e", + "ami_id": "ami-0f6ab585d6b174e91", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddef4729eb82bcad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-084f65e5ecfe69422", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05be78da8ad82f4fd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ea0d92ec19db2153", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c11d2542088ba82", + "ami_id": "ami-0c2db73af6757169b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000b53004d7b1cfae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "ami_id": "ami-03bf43a01c17ea8eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0159fed5c9ff9a700", + "ami_id": "ami-0b5af60af932abb52", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df7a53affdc7cb92", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "ami_id": "ami-01f41d0da78840fcb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098e6955ce7c43270", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "ami_id": "ami-0fb45c81c0daa4200", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db7ae41ea783cb0a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bb0bce357b6183d6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04efec74570be2f5a", + "ami_id": "ami-064fdf5642fe4f153", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0624aae84693b4ea5", + "ami_id": "ami-0b9351279f17b5e60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079bf9c628514d3da", + "ami_id": "ami-05b247977c95afe42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0281cf57549707b32", + "ami_id": "ami-0d7fd4a2fe63dc8c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9df7c9c34b3b638", + "ami_id": "ami-005d8bcae66c38276", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0326a0330a9e7731c", + "ami_id": "ami-09b43e07657e36577", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db7921475d01c897", + "ami_id": "ami-03171ab01121580fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022b88b4e96bfccaa", + "ami_id": "ami-0565cd1eca06021c4", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9f73e9af1e90a36", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0da06b208c75ac7a8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210609 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edd7dd8873a56c0c", + "ami_id": "ami-06e2244a5c662f360", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00afc9e848e32b1ca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181017 x86_64 ECS HVM GP2", - "hypervisor": "xen", + "ami_id": "ami-045bd2c12e2d073b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2e5933bd108d90a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "ami_id": "ami-0ae2f00fa12adfdf8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0394852c305b74043", + "ami_id": "ami-012d2736ded106fc4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076225ecb934f9972", + "ami_id": "ami-0e6d534408705ed23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da7defaf4c4b50ce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "ami_id": "ami-07d5cdb4f4023206a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0d926fdc0d74174", + "ami_id": "ami-0b7dd52cf622469e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069c6f348be6527b1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03dfeb9bdf79c0980", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04da744f82c02f303", + "ami_id": "ami-0876ad01c0d284cbb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe00d4d7f42b9730", + "ami_id": "ami-0f62162799a426851", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2e884b66d632d57", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "ami_id": "ami-0e61f841bba635fc9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01744011f7ae18667", + "ami_id": "ami-030493a647e0ba449", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0197f82bc4ce1c3fd", + "ami_id": "ami-04195853b65d6a9bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e31c2992b7c042b", + "ami_id": "ami-054c3fb6387504c77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2c90f81c2e95ba9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "ami_id": "ami-014b6497008d2c77c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07123aaf4f43238b8", + "ami_id": "ami-0151e841a3a5b6e8d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c179ce399a9e08ee", + "ami_id": "ami-02917e65d34daf81c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed762d44659d7ea7", + "ami_id": "ami-04b959a803c151fe8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bcf36cedf30616c2", + "ami_id": "ami-01c8db643e96b9884", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb65e18f34e75204", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-05571b81adcbfa18b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0254b4681d05e8ba5", + "ami_id": "ami-0c7dde1418f6b9b08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d34b4793f730fcdb", + "ami_id": "ami-006a5e2bfa1ca2877", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013059f6b2252dd8d", + "ami_id": "ami-0cf5769470872eb3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e8aaa9cf22e6941", + "ami_id": "ami-0ee720095dda2d5dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0061a2fc8f6477d24", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", + "ami_id": "ami-05d6edad5808a4739", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afab995a48697030", + "ami_id": "ami-0c61945a814ec6fe1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211020-x86_64-ebs", + "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c1b20afa582c5aa", + "ami_id": "ami-007f7ddf63be8be11", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f1d7f8a888ca2bd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07a3e1b3d0ec96e31", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0866299613cd5d5a3", + "ami_id": "ami-0d03fcaf7774908cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7ff903557b0ec9a", + "ami_id": "ami-014d6d0aa108605c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e9c477d7a1eccbf", + "ami_id": "ami-09ae32d47e8a525cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037a92c0f7f768fe3", + "ami_id": "ami-0fef433579e5e035b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04975c29da355dafe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00d8d59b16f6e38d3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055fafe7f2d82c995", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00c7dbcc1310fd066", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ceeba3decf22b30", + "ami_id": "ami-0d3d6636beac06296", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd5b547fad5d8e7c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-0cd2ebd86e9e44cec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a043e12b9110673a", + "ami_id": "ami-0d00210def6b47210", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a757cd7cb4188fb0", + "ami_id": "ami-0150096b43ce4bec5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018ae918c152249f0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "ami_id": "ami-0de1e95cdc19a7d63", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b64c6231d34972a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "ami_id": "ami-0eb65e18f34e75204", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067c97577b083954f", + "ami_id": "ami-07d688e08248fffa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036e2e880bfdc66b0", + "ami_id": "ami-066123dc4b8aa8e05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018c878b09a10e89f", + "ami_id": "ami-0eba843e8db652def", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,31 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0731afba2dab25d81", + "ami_id": "ami-0a88c9b10b7ce5ec1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-094cd45e7f833a443", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3e97a5205a2a7f2", + "ami_id": "ami-0f2f722514ec458e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d1cd45ae25e070f", + "ami_id": "ami-01b9bea855ad1d9d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dd925e475db032b", + "ami_id": "ami-07303fde87f3c8fe0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f0382b7ddb5867f", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", + "ami_id": "ami-0fd2bda3adccca481", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7e9b930903ec413", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04fc976c5fc9aa0ce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e057253047e68f18", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "ami_id": "ami-0646e038cf065d5ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd1d511d99da6c7a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d6373f38d4b78dad", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bfc018f813c0264", + "ami_id": "ami-0cbffa6e4565b7b8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbb5026d37f5f347", + "ami_id": "ami-00cc7182d2ce2d2a9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01653ce780e98d080", + "ami_id": "ami-0254b4681d05e8ba5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044aae085a94cc4ae", + "ami_id": "ami-0e8eca668c425ad5a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bcb41b8db548587", + "ami_id": "ami-0777e1c2593bb230b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094a1682d55349d9f", + "ami_id": "ami-0c8d0e6963d197be9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041171a57850bdbed", + "ami_id": "ami-0b8dbfba1961a3262", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0599b5261dca6f7da", + "ami_id": "ami-07a7343dcd2b6a468", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001eb7503255a018c", + "ami_id": "ami-062334f99a043235f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0036f358750e191d0", + "ami_id": "ami-070ea05cb21034fd4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075cafac13c3369f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d9a0ca9b17849e39", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c918054e678b9da6", + "ami_id": "ami-0e0d926fdc0d74174", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ded68b9c04b0cc83", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "ami_id": "ami-0f62fc558c2362a92", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c814df738f3c9fd5", + "ami_id": "ami-0d16d497d6d61b8a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f25ec426ce9ba353", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08b30a0131829fe78", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,6 +1747,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -1677,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae29683c89e04f65", + "ami_id": "ami-045dcb7db59808be0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea3bcacb176f09dd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a775762b575b417d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7d950a5d78be4bc", + "ami_id": "ami-03fb12c1feb7a3bb6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066de5c9ab6859c41", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-0590d0dd683026eab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c47f550a19e1820", + "ami_id": "ami-0394852c305b74043", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e93ffd8bfa96afc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-087312bff74117961", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060fe06a270f90897", + "ami_id": "ami-04c882e7e875c0532", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5cb77ec59c0addf", + "ami_id": "ami-0da652b3f2049d190", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb7ffcafc9e13c25", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-02e3648333752dfc5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0845fadee0743f234", + "ami_id": "ami-05a9efccb7ae2842c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075d45851994f0e1c", + "ami_id": "ami-01e57d3c69f37d9da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0596dc4d0220f5d11", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fab34896f5da895b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3d6636beac06296", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "ami_id": "ami-02d1d21ae19fd613a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7a993787e4d010d", + "ami_id": "ami-0f9c8e4f494a2961c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3da533040e5db38", + "ami_id": "ami-097d344ddfd714149", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070efbcb5d340490e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0596dc4d0220f5d11", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05281723cfb891001", + "ami_id": "ami-076625be986fd5a02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031f54f71e357b28b", + "ami_id": "ami-018c76b54b3639e48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a86bf5c0d3e8f21", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0a14e1a77951097e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087e8a75b1970b2fc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-0e88617ff75044150", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082c5e9fe22286b69", + "ami_id": "ami-06ba2f1b4cce70109", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0a5f56fbac7f3b4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-0f8308af2872f7dd7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c3487308366c513", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-09d57061c96c876f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068bd421b3b1bc7b9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-0c3e97a5205a2a7f2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b844af777d2a0aa0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fa0107c4a8501039", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ce832b748d22b50", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-012e67a86f193c358", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e170ac0ea3bdf765", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", + "ami_id": "ami-0f724ccabccceb69e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", + "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0590d0dd683026eab", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", + "ami_id": "ami-04d65e6bf3b63110a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de95fdcc4b6a3c86", + "ami_id": "ami-000b53004d7b1cfae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1ba531403917563", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-0fb34b155cdd1f9b4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d4365dbf5e79c64", + "ami_id": "ami-08b78bc66bb472d75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001a2d73ab5f47354", + "ami_id": "ami-02bd6e5cd75696de6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042119a47956bf270", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-0a41ad28381339032", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016ebb387e4971868", + "ami_id": "ami-00c4493503c13796f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccbbcc9ea047c916", + "ami_id": "ami-0ecaa78c77132cff5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03546d38de43204ad", + "ami_id": "ami-0e2e3ca3d3aad2af3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b659541b96227d56", + "ami_id": "ami-0335c61fdd0fc8509", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9a0ca9b17849e39", + "ami_id": "ami-04975c29da355dafe", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2285,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e79960619f912bc", + "ami_id": "ami-0de3d54ba3ab99b37", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053e5fdc0eb2ee0ad", + "ami_id": "ami-0f39af8b1b7a04d70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060579a06bf3e91cb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-03e8942c6ee3e4b4f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f4b3849a79d5067", + "ami_id": "ami-0118b82e643243b0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa0107c4a8501039", + "ami_id": "ami-0fdc7ef990b70e8fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b56a8e8608ef08f", + "ami_id": "ami-0f4ed9aab39d6d24b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0382cce5fd7023271", + "ami_id": "ami-0c9b05548eb9b4603", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4ed9aab39d6d24b", + "ami_id": "ami-09787bd8c2bbdcb34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036fbc96664e1005f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-0f428165ef033b14d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f506e35c2636f6ef", + "ami_id": "ami-097d9116706210352", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9250b5a1166e468", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "ami_id": "ami-0a7621d173c4f6757", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-72edc81d", + "ami_id": "ami-0deb32780af3fb00e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d77a3fbae71c6a6", + "ami_id": "ami-04f4facb1e6950eea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018c6d9b3bb8537cd", + "ami_id": "ami-0ea27c46b15cf3997", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ab8e59e04c7fdbb", + "ami_id": "ami-0b8d912e17fbd68ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd01e23cd128bc8b", + "ami_id": "ami-002eb9d0092f20557", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201125 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20201125-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ab67467126a45fb", + "ami_id": "ami-0bfde05819d4b88f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b18d96963d7d81c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06671534087c61ddc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a68d4e8f18768a78", + "ami_id": "ami-0fd1d511d99da6c7a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bb7899d4a0b2124", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-079a54b07e26a6446", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054c3fb6387504c77", + "ami_id": "ami-0b981dfe20899f1a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b742e1743c4a28c0", + "ami_id": "ami-013059f6b2252dd8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0050afee8f10b788f", + "ami_id": "ami-09a380759593805d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02704edb2becb49b9", + "ami_id": "ami-0ae29683c89e04f65", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080c62a143d9cf764", + "ami_id": "ami-0393473fc0ccee7e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c1ae5aae1d9f201", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-0a6e86aa7f2cbd52e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cff34a042205fb12", + "ami_id": "ami-0c688cb2661dc68ea", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7b01e1bc588c0f3", + "ami_id": "ami-0e3da4d8e192eb4b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe28a2e6e45233ef", + "ami_id": "ami-0647c9ca3a37e1cec", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea0d92ec19db2153", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-0446e75b79329eba7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2765,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024429d1aad54b1ba", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "ami_id": "ami-0f689175dd4281620", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8087b9a726c87de", + "ami_id": "ami-72edc81d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0035c1ebd33d04edd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-06f63a9d26ce5c990", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8bd0dd1106fad54", + "ami_id": "ami-03ab8e59e04c7fdbb", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a79258ed09263366", + "ami_id": "ami-040b2d7439fe753b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5b4d1c68d611b30", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a3d3f4a4de3d6292", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f72e472a0a9ae1e5", + "ami_id": "ami-01132b148ae939dc1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05de310b944d67cde", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", + "ami_id": "ami-0d2986ff9c18954e6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4c58fca5ae2d9b8", + "ami_id": "ami-0f2936a416e6baff5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0411720f000f2e7d5", + "ami_id": "ami-0eb626c7d9a7e849f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012d2736ded106fc4", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-0828c3edd067af1ef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fb12c1feb7a3bb6", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-04f4b801b11102d9c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e4deff298390350", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-0b1dedffb7483cd07", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03021e0f712f1a007", + "ami_id": "ami-0a5cb77ec59c0addf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e95aa8676610021", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-0d962753cccb63d67", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3005,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d344ddfd714149", + "ami_id": "ami-054b580dc4401e471", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df6329054d96b74c", + "ami_id": "ami-06c32dcc85d819ed4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076d358feced52545", + "ami_id": "ami-043ddb36dd9b4cc66", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5908f44ccb9cb78", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-04f313fc41252d9f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c817137e5e2ed971", + "ami_id": "ami-0756ca3501c623503", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0639b720a83a37252", + "ami_id": "ami-0393798ba6402e984", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077b59488dadd00a0", + "ami_id": "ami-04b412847162495a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076625be986fd5a02", + "ami_id": "ami-03c0860c1927c00b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a7343dcd2b6a468", + "ami_id": "ami-0db37fa51a7d32f36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024c2c9650e59af98", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08b4b47dd4195b1d1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3165,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9d66ddb2a9f47d1", + "ami_id": "ami-01f07505bb3860f86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ffd00f81f901c05", + "ami_id": "ami-0362b8870ca261806", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041a2640b5e0bb935", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-09f4a4a61408b81e3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a5ae026e19d2c74", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-09be0a0cc08c9f07c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011ebc87751369a80", + "ami_id": "ami-059277940bb17f968", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040b2d7439fe753b6", + "ami_id": "ami-09f6bc049f323302c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e22c1d4ad13192d5", + "ami_id": "ami-0ccbbcc9ea047c916", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac26d07e5b3dee2c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "ami_id": "ami-0b45d3185421f13e7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b236c2d05a9300f5", + "ami_id": "ami-0f0b6879fc894f309", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b43e07657e36577", + "ami_id": "ami-0fd39ae05e1da03c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6c3b2d57c7ff351", + "ami_id": "ami-016a983aa5f72ad48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf8058295e8cbb33", + "ami_id": "ami-0640885fece9e14fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027a0367928d05f3e", + "ami_id": "ami-0f502f93283696a72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c02548bca5729e1", + "ami_id": "ami-0bb90679de40109ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d892bc42a247508", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f7a5df91c868b37b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04218b844164d6cbb", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-0006dac33e4ec1474", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061d1e37eb47f145c", + "ami_id": "ami-01acc0a5034f296d0", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aaeb86c1813148b", + "ami_id": "ami-04a13379b93d01d0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0396665e2ff17464c", + "ami_id": "ami-0c1d2a6bc2b08d27b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006b0e1febe66af61", + "ami_id": "ami-0fe38eb39fb46b350", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025fa2a3e27b6e58a", + "ami_id": "ami-07adcf9e16bb5e10b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0033858a78f3d834e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0358c036b235fb60d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fef433579e5e035b", + "ami_id": "ami-0c38ea72bda93db3c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8a979e049713720", + "ami_id": "ami-0bbd058c4f753adc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a41ad28381339032", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "ami_id": "ami-000a531d595cda3a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef316010a944f920", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0308e63f36f3afca8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b4b47dd4195b1d1", + "ami_id": "ami-06959b9dc7ed71bd9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca03f5fa2ed4462a", + "ami_id": "ami-0d8b1cb238477598f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059277940bb17f968", + "ami_id": "ami-03b8bf94c4ffd5945", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d641e8b96146809", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-0464ccdcda7755ce7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025047fa9157cc14a", + "ami_id": "ami-0d1716fb8e78a3639", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3661,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb86ee480801d528", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-084555ae8da26ecef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061ef3e5fc485468a", + "ami_id": "ami-078da8bb22763d870", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210802 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2986ff9c18954e6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-0bdd36e9d2318376b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8b1cb238477598f", + "ami_id": "ami-0c50344154200fefa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dddc48c6b96268e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-041a2640b5e0bb935", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b948665b52b6ac61", + "ami_id": "ami-09c3487308366c513", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092e554c8b200d245", + "ami_id": "ami-0c814df738f3c9fd5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eefb2485a7364e8f", + "ami_id": "ami-0a576113d81e659cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a24d8f7a4890bba", + "ami_id": "ami-072b20c3cda798d4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a7f839c132efbe0", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-0c40cb61e9bb1e04b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080ebe5e01062eccf", + "ami_id": "ami-054feefd140361c3e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de3d54ba3ab99b37", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-09de1e22fa7c3e362", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032ae306acd436b50", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "ami_id": "ami-0730c3e810b7a2236", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06455a54808f89aca", + "ami_id": "ami-09fee13e183eb2baf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02da5c0c65a162dc6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-0b742e1743c4a28c0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0080447f7c14d3c3d", + "ami_id": "ami-02e566ee3ee2cd373", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002eb9d0092f20557", + "ami_id": "ami-078c68de9ef6d5eda", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201125 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201125-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c50344154200fefa", + "ami_id": "ami-0a03968949ee4e012", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070ea05cb21034fd4", + "ami_id": "ami-0c9f73e9af1e90a36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0addf584ba12acd5e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03540f68f16a24881", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8a033e0ed55c230", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02b5c6454d7de5528", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecb2cd6cd4189247", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-018c6d9b3bb8537cd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06da25bc3ffb0ca5f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-05f37144958ee7cdd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c1f67890f6ffb9f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "ami_id": "ami-084b89e6c52b049ea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038a97723bb94762b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-0c7e9b930903ec413", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07996a7f9ac416eb5", + "ami_id": "ami-0706d825173b7650e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a481a7079fcae271", + "ami_id": "ami-0c5e046003ce4f920", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07266f249b2602d5b", + "ami_id": "ami-07f4d02d802d4a339", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6e2b0c3d728fbcb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08a0d28e4ccdcabe3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c42adb42b71cacfc", + "ami_id": "ami-063ee2cb61b0bdabc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a775762b575b417d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ee33c69338608ad8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0bcfe494ee9e85e", + "ami_id": "ami-0b7dbb6ca61dea5dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b959a803c151fe8", + "ami_id": "ami-0cd1f83db97697b6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d33f071194ead44", + "ami_id": "ami-04a552830632c004e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abc14ac7d370ecb5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f059401fe4b368c6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f20ba1b13494b7e8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", + "ami_id": "ami-05c627abbe9a4ca3a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e76915206b3a613", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-041714b586fb68340", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f40368f3b8795588", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-0ff89dc8e3f75f9ac", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f63a9d26ce5c990", + "ami_id": "ami-0a79258ed09263366", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087312bff74117961", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-0af6280f0be708126", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4d8b822fb7a0485", + "ami_id": "ami-08bd640fc110cd4cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,31 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcc9a67d3b25e9e3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0365dd33ce77958a7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-040fb08cfade627cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdc1361044019eed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-07c11d2542088ba82", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5f5b2444c433e58", + "ami_id": "ami-00cf287dcd260fbd8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf578c4aa3268186", + "ami_id": "ami-03084f07c7e4b53f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063ee2cb61b0bdabc", + "ami_id": "ami-0205f72f24e39213b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040eaade4330de05a", + "ami_id": "ami-0f2e5933bd108d90a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da49b56d7d31943d", + "ami_id": "ami-094a1682d55349d9f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee720095dda2d5dc", + "ami_id": "ami-024c2c9650e59af98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0565cd1eca06021c4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cff34a042205fb12", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e91b0720b0b6c41", + "ami_id": "ami-04e4deff298390350", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6c9fb57b5db3be5", + "ami_id": "ami-080c62a143d9cf764", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040fb08cfade627cf", + "ami_id": "ami-024b649b2bd976c3a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f4d02d802d4a339", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-0b844af777d2a0aa0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0728433edfacabeeb", + "ami_id": "ami-06a47aa612591b873", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0848dc050dba8dce0", + "ami_id": "ami-0ab2cb7f6b4c677d8", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcc8ebb1d0ada0ca", + "ami_id": "ami-0edc9c5eb896055cc", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c3f1f6fde475f9c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "ami_id": "ami-069d7513bc1896fb8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098aea07c3b58bc1b", + "ami_id": "ami-07f167b88a67a6de5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5b552e792488f9e", + "ami_id": "ami-01d0732649e351ee3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0275dae9644b7c80f", + "ami_id": "ami-02c47f550a19e1820", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028098eaf18131a90", + "ami_id": "ami-069c6f348be6527b1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bd640fc110cd4cf", + "ami_id": "ami-09a1ddc3f454e3b99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0405ea06ab2621cff", + "ami_id": "ami-06e79960619f912bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053a37931be6ac0f9", + "ami_id": "ami-0c22194571cbc7f59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0118b82e643243b0a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "ami_id": "ami-0693eb4c0bf369656", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0706d825173b7650e", + "ami_id": "ami-003c4e453d6057f7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec1eac5e2a81f238", + "ami_id": "ami-07c76bb6b27614a68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdd65050039c21a1", + "ami_id": "ami-018bf378c35021448", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8d912e17fbd68ca", + "ami_id": "ami-0b84eb0a71faf3a75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4797,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02da1a19f6ce5e079", + "ami_id": "ami-0d44f7e948c181a71", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0fa6d2f40394cf2", + "ami_id": "ami-0edd7dd8873a56c0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091d200b0abcfe8c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0d5c4d003853996a7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00019caa150dae0e9", + "ami_id": "ami-0cc6b8cf3ed4d3ac0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1c7240d72e08522", + "ami_id": "ami-0c42adb42b71cacfc", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00608a7ff274efbe7", + "ami_id": "ami-07f13fe7942ba3a2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007f7ddf63be8be11", + "ami_id": "ami-09ac9c3d5d0654975", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4909,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d269172e5cda9faa", + "ami_id": "ami-0b833526946dbed31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0976fabfd7f7dbf99", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05102fa15f846ac89", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad3d32735fc0cec0", + "ami_id": "ami-0e8d7f93a49469d2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041714b586fb68340", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-019880147c0de49a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b42d8c9836727d0", + "ami_id": "ami-0cf8058295e8cbb33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de5f0000a966fc88", + "ami_id": "ami-0c40583127f1b33b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d8d59b16f6e38d3", + "ami_id": "ami-0b8087b9a726c87de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055c990ee4c1b7825", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-01e93ffd8bfa96afc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fea9915a8e42a3a4", + "ami_id": "ami-0a5044768ebf7ed50", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e88617ff75044150", + "ami_id": "ami-06590044496e8946a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f4d2b39308520c0", + "ami_id": "ami-0cc64c3e94c71aa80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +5368,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f301e1e49adc049e", + "ami_id": "ami-02418456c27a77029", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04ed0e5896ecf4082", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d6edad5808a4739", + "ami_id": "ami-0dd19c110feeefcd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +5419,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0f7e71303450208", + "ami_id": "ami-08f9122e9a08ea450", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-007efb2a5a3c179cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a3e1b3d0ec96e31", + "ami_id": "ami-0405ea06ab2621cff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0192c62dc30ba862a", + "ami_id": "ami-0df9b4bc5237f5920", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c32dcc85d819ed4", + "ami_id": "ami-0b0d1aa5234e7ca33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4b5d1c379b73bbd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "ami_id": "ami-0728433edfacabeeb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0514ebec162167c71", + "ami_id": "ami-0a08df48e8750e809", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bd117a9c5a3a4ae", + "ami_id": "ami-07542504e4f048f77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06162220bc590f5a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-0edcb3fc4dc338767", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +5572,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8dac4693bfc9c01", + "ami_id": "ami-094cd45e7f833a443", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03a065dffb9bf0469", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7d42442cb0e2b6c", + "ami_id": "ami-0533963b535917e8d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0475b0d685d5250cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-0eb7a2e1ef992c2f9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c40cb61e9bb1e04b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0f8dac4693bfc9c01", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4ec68023641728c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01d5812d2d91a8079", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fc976c5fc9aa0ce", + "ami_id": "ami-003d71ce2ee2183b8", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0520a52c94745d2e9", + "ami_id": "ami-031bd416348652a8a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4891a73ffc5f54a", + "ami_id": "ami-095caae7b72b59227", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e3648333752dfc5", + "ami_id": "ami-0df4552fc52c35aca", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01132b148ae939dc1", + "ami_id": "ami-070efbcb5d340490e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa6f67ced0e94133", + "ami_id": "ami-0fb7ffcafc9e13c25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +5776,594 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d00210def6b47210", + "ami_id": "ami-0b147df026a13882d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-55e7d53a", + "architecture": "x86_64", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "hypervisor": "xen", + "image_type": "machine", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", + "owner_id": "591542846629", + "platform": "windows", + "public": true, + "root_device_name": "/dev/sda1", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a9f7ec082fe809fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c7a993787e4d010d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0323f5adffd0b1df2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-027a0367928d05f3e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01b38aa344ec8e6a7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0404fad4827050817", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e8bba1489bc01ef4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-053b2604fced7e4bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0506ca0d0cd5715bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04af4ff16282f76e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-021006c4250daed92", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-092e554c8b200d245", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09b019ee1a9a522ab", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-098aea07c3b58bc1b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05d55f9bf0c4ffcf9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d0a5f56fbac7f3b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08db0e1881e30be69", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0258e5ef5fd460410", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b8329ea882f25050", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c4bf640c95e4c802", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08aaeb86c1813148b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-041121485f4f734b4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d0e74761b4cc8a53", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07c1b20afa582c5aa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0899ea3f6a2d174fe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fdf0d779a4359dbd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-059ddf0d4c63fe9f0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0731afba2dab25d81", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-065d9eea76eb7bacc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09230ffe82c419a1a", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01948da6139834271", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-040820bbe2e9c3d5f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04a24d8f7a4890bba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082064b33b8c1b743", + "ami_id": "ami-09e14a8ae05fabcab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0960dab3ff9a5026e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "ami_id": "ami-0fcfa88caa14f818c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b981dfe20899f1a6", + "ami_id": "ami-0137bdc89b5a408b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ac9c3d5d0654975", + "ami_id": "ami-0e6364eb63f8b9c35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046cdc737face57a0", + "ami_id": "ami-0416723f8e455592c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dfd4173689e81e6", + "ami_id": "ami-05df77ec905ed3dcf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb0bce357b6183d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-060579a06bf3e91cb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05306c479181a7cf7", + "ami_id": "ami-0396665e2ff17464c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8329ea882f25050", + "ami_id": "ami-0586eea64c9dd6ca3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d5af8060c8e639d", + "ami_id": "ami-011ebc87751369a80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ec607d5b84572e5", + "ami_id": "ami-025b68c5bbdb6cc8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5b1055ba79129e8", + "ami_id": "ami-079bf9c628514d3da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c40583127f1b33b0", + "ami_id": "ami-091d200b0abcfe8c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc68abcb5148ea23", + "ami_id": "ami-0e579f4b6dc9e5a94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036eaa870decb368d", + "ami_id": "ami-0ce42b079327e987c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5f12d1a1d660cb9", + "ami_id": "ami-0c937abf7f638b7ec", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017cab36e4ddda18b", + "ami_id": "ami-0ca03f5fa2ed4462a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d59a5396b25365b", + "ami_id": "ami-0d3cb6a1aa319e4d2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0323f5adffd0b1df2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "ami_id": "ami-00fbcf0755bcc7b6e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0393473fc0ccee7e4", + "ami_id": "ami-0cab22b9f6254fbc5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08db0e1881e30be69", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-0e170ac0ea3bdf765", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220411 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029a6312077f682b1", + "ami_id": "ami-0824d8508df646d10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a88c9b10b7ce5ec1", + "ami_id": "ami-00b008ac5f7e325d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5805,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e44468d24abec2c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-0e19761603fa5d931", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098863b3ed950a40c", + "ami_id": "ami-0ea1fee46718bd831", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e2244a5c662f360", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-0094b4bf588911d7b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d44f7e948c181a71", + "ami_id": "ami-09b2eb7683f84ad6e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0646e038cf065d5ec", + "ami_id": "ami-0ffe3b6e9e0a0d3ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbffa6e4565b7b8d", + "ami_id": "ami-03e469057e64e53bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3102c6801672b9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "ami_id": "ami-0c0073ade0969b4c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0101ae7acdeb3b2a6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-01ef9f6a829ae3956", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045bd2c12e2d073b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-062e2d147ab3c2e78", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5949,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0682239ab263484aa", + "ami_id": "ami-068f18970ff17c432", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2936a416e6baff5", + "ami_id": "ami-0253000eaaef5fbc5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0470125449146b386", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d8edf176a7ff7615", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067c9850745d0aec4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-034beff8e77013ce7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097313abf4c78cc3b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-0e6da3c15647a576d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8bba1489bc01ef4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-0c6c3b2d57c7ff351", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b496de7a8e92a59", + "ami_id": "ami-0c2310645a5e63827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0024206fed5c99368", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07435a77d0389f51a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbb96009b99659a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fa6f67ced0e94133", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c70e84671c4fafaf", + "ami_id": "ami-01c1f67890f6ffb9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8eca668c425ad5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "ami_id": "ami-0d4a31e878446c581", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083f42623a1c56cd1", + "ami_id": "ami-00d892bc42a247508", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a43ac8de9ded8e41", + "ami_id": "ami-0866299613cd5d5a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a2faa486f100e42", + "ami_id": "ami-01ab67467126a45fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cefaa8d09f5d4eb9", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", + "ami_id": "ami-0fde8df2a9b8d814c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf6eb9c461adf122", + "ami_id": "ami-0484b39dd56f70080", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7a5df91c868b37b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-0acf629a2c0e57f6e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b63d2d331f0d2061", + "ami_id": "ami-037e74d2cae6e49d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0599cdac6e1fe7d62", + "ami_id": "ami-0f5f5b2444c433e58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b3dccbc05ea28df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-03a5f55afee1bbc72", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad442d21f5ede7e1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "ami_id": "ami-0f25ec426ce9ba353", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0756ca3501c623503", + "ami_id": "ami-0b6b7d4cd9ca0ffce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190913-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0152222ec11597c29", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b18d96963d7d81c8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026d60dca99a5ac54", + "ami_id": "ami-062495999fce2fb79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c0f8a42b483e4cf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0976fabfd7f7dbf99", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff67a3471930febc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-063dd92e888d1c75c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211020 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6365,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be4deadf54b0dff7", + "ami_id": "ami-07c60e3f57b740edc", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6381,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062e2d147ab3c2e78", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0cbebe9b6f4aea1c8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022d17f836ff88941", + "ami_id": "ami-076d358feced52545", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082e9762a1713ad3e", + "ami_id": "ami-030b004c743a8d206", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09230ffe82c419a1a", + "ami_id": "ami-0ad3d32735fc0cec0", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095caae7b72b59227", + "ami_id": "ami-0e5908f44ccb9cb78", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09787bd8c2bbdcb34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-045d1ba70ca77c8f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03122d8ba715051d0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "ami_id": "ami-0dcc8ebb1d0ada0ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdcd69f97bbc094a", + "ami_id": "ami-0b8cbe83bba91b09a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5fe2c99e7708435", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0197356bcfa85f838", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fc890789da0c85a", + "ami_id": "ami-0c2373399185bebfb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b019ee1a9a522ab", + "ami_id": "ami-0f40368f3b8795588", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045d1ba70ca77c8f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-0326a0330a9e7731c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06590044496e8946a", + "ami_id": "ami-08159a44fff0ddf0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096bf01d815d03c76", + "ami_id": "ami-00f7aaba00f8156bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e42c95bc5367069a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bb19f0a62c9ba776", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b412847162495a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "ami_id": "ami-0d5f12d1a1d660cb9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d55f9bf0c4ffcf9", + "ami_id": "ami-0c4e9862241e18281", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb5ad7192123b92b", + "ami_id": "ami-00c0c5b0723cc4070", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e28beeada501b10", + "ami_id": "ami-0bb7bb768b8578f04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a813ddc2dd0aa2d1", + "ami_id": "ami-0c6a93d5072903a1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6701,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9b05548eb9b4603", + "ami_id": "ami-0d192d7b37f96a4e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f059401fe4b368c6", + "ami_id": "ami-02aa1df73bbf458cf", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07adcf9e16bb5e10b", + "ami_id": "ami-0a4891a73ffc5f54a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da06b208c75ac7a8", + "ami_id": "ami-0dd5b547fad5d8e7c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210609 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0766ed55de77e0e3e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-038f109007ac72a24", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0308e63f36f3afca8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02db68add888aecd3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d5cdb4f4023206a", + "ami_id": "ami-001eb7503255a018c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00022ccb33529c637", + "ami_id": "ami-0abc14ac7d370ecb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d8866fbfcdbb66e", + "ami_id": "ami-04291fc1d2b651070", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d143ad35f29ad632", + "ami_id": "ami-055a5bbcbce2b9721", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edcb3fc4dc338767", + "ami_id": "ami-0ac6b4be918654751", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bbd058c4f753adc6", + "ami_id": "ami-0e1ea8050960391ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d0468a25e6bc979", + "ami_id": "ami-03a7c6badb88a7be0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054c337ee5048c313", + "ami_id": "ami-04da744f82c02f303", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0910020535ae3e6c3", + "ami_id": "ami-0dd99c8f8b4bb2547", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8cbe83bba91b09a", + "ami_id": "ami-0fc326ae649eedd3c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067b58da1e3a1ecd2", + "ami_id": "ami-009106980e83c9761", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021006c4250daed92", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-025290a8ad19d22ab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d110a07150b4d2f", + "ami_id": "ami-0345c0581a1b3637a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b8bf94c4ffd5945", + "ami_id": "ami-077b59488dadd00a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b008ac5f7e325d4", + "ami_id": "ami-022eb37190e1fa8a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f37144958ee7cdd", + "ami_id": "ami-0657c6e928d1628ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008268c30341aeab8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-093e9dd3a21577587", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddb7d0564cea4389", + "ami_id": "ami-0681b232e0ccd6562", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ed0e5896ecf4082", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-011f5aded4e99a1a8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +8139,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f4caeed7794cd4e", + "ami_id": "ami-0848dc050dba8dce0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09e28beeada501b10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f689175dd4281620", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "ami_id": "ami-0fa918aa7ca15f1ba", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cab22b9f6254fbc5", + "ami_id": "ami-0b9619cf0471c7a3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3129df65bbc25b1", + "ami_id": "ami-0e26e067030ec6083", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0718a1f188959e3d4", + "ami_id": "ami-033ea3d2319de354e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007efb2a5a3c179cb", + "ami_id": "ami-01cd6f47c1ca3be26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079a54b07e26a6446", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0382cce5fd7023271", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c851f11f2b1d8eff", + "ami_id": "ami-04cce654b9063c8b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c0c5b0723cc4070", + "ami_id": "ami-0c7cbb292697919ee", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6e86aa7f2cbd52e", + "ami_id": "ami-073f91d19fb5ea012", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf04a8bb30bf1e2e", + "ami_id": "ami-0b8a033e0ed55c230", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d0732649e351ee3", + "ami_id": "ami-0fd09c5df16973f35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c30d898561a2c7bf", + "ami_id": "ami-0a757cd7cb4188fb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcdd077fdfd090ba", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "ami_id": "ami-041e6e0e4d4143757", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068b12e2f5ee80923", + "ami_id": "ami-03aff94e9111b0391", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005d8bcae66c38276", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "ami_id": "ami-0f2b1ceb5b33279d3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037e74d2cae6e49d0", + "ami_id": "ami-0a043e12b9110673a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e26e067030ec6083", + "ami_id": "ami-0e9df7c9c34b3b638", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4b320bbceb0d3ba", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210708 arm64 ECS HVM GP2", + "ami_id": "ami-055c990ee4c1b7825", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009161c263996bdfe", + "ami_id": "ami-0b4d8b822fb7a0485", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de1e95cdc19a7d63", + "ami_id": "ami-0bf24c0fcdeef9bfd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060e4c5b14cd29277", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-022d17f836ff88941", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfeb7ac874f6bf34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-07f1d7cef63faabdd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0902d9a8cb5751154", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-0fbb5026d37f5f347", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03171ab01121580fc", + "ami_id": "ami-0a5b1055ba79129e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cf287dcd260fbd8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e057253047e68f18", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0331e50df2d3161fe", + "ami_id": "ami-04a56cb1908b6ce94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac205f3fcec32d9a", + "ami_id": "ami-0aa919b02bdc94885", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c02e0d26ed93fb7", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "ami_id": "ami-038a97723bb94762b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0189b3459af07446a", + "ami_id": "ami-0599cdac6e1fe7d62", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5cdf93d467beca8", + "ami_id": "ami-0fd8d4b4aa145fad3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn-ami-2018.03.20201013-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb45c81c0daa4200", + "ami_id": "ami-0a9af6cb0013d3aaa", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb7a2e1ef992c2f9", + "ami_id": "ami-09eb1053405a096bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb19f0a62c9ba776", + "ami_id": "ami-0ec76a47f870c0bcb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0358c036b235fb60d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-0a81316c815a35c2b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054b580dc4401e471", + "ami_id": "ami-0d3da533040e5db38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1716fb8e78a3639", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", + "ami_id": "ami-04322e867758d97a8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0446e75b79329eba7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f9250b5a1166e468", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f7412be54b54e08", + "ami_id": "ami-0ac26d07e5b3dee2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c556d64c0320b38", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "ami_id": "ami-0ced95b230f01db8f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f313fc41252d9f8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a8bf4e187339e2c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c70001583ee4552", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-07d3f6ffd06cdfaaa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb00e728f56a421b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", + "ami_id": "ami-0a68d4e8f18768a78", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8892ce5874c1780", + "ami_id": "ami-0c0b4d21dbb89946c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a380759593805d8", + "ami_id": "ami-0451d7f8804492202", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de8ee7c4cd45c7d9", + "ami_id": "ami-0f49b54df17409f00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e469057e64e53bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-067c9850745d0aec4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009106980e83c9761", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7d42442cb0e2b6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a0d28e4ccdcabe3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "ami_id": "ami-0fc68abcb5148ea23", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b5c6454d7de5528", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-03dfdfab7b0e113ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0878b3c494946aadd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-0c20a67db6e1c7258", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030639538f37be379", + "ami_id": "ami-0fcfb39b93c09a8ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030b004c743a8d206", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-09b32a5de8c6176f1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9e0371eaaa4fae6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "ami_id": "ami-0845fadee0743f234", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn-ami-2018.03.20210219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018c76b54b3639e48", + "ami_id": "ami-0fcdd077fdfd090ba", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fcbb6bcfbc5ced8", + "ami_id": "ami-036e2e880bfdc66b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0225d0150197dbf08", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-04d5e1738cd1528e5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa918aa7ca15f1ba", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-0818ec728a0792150", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0451d7f8804492202", + "ami_id": "ami-00019caa150dae0e9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acf629a2c0e57f6e", + "ami_id": "ami-02c668f689b9bfedf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eba843e8db652def", + "ami_id": "ami-07bb9aa4e43a2d031", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05629198cfd9d5d2d", + "ami_id": "ami-0cefaa8d09f5d4eb9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b23c71cff7ba7a32", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b51c19e9fe84d2e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7dbb6ca61dea5dc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-0fa0c9baf8c06d61f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b9bea855ad1d9d3", + "ami_id": "ami-02815c9df0c0d3d82", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014774faf259e4ac5", + "ami_id": "ami-08a53c14912efbb09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c60e3f57b740edc", + "ami_id": "ami-0159fed5c9ff9a700", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220520-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2310645a5e63827", + "ami_id": "ami-05281723cfb891001", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f6f82270576fe90", + "ami_id": "ami-01ee820a6a2a1bd34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076bbae7511f2cc74", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-0520fedb5be6af19e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed35d17c3db7d475", + "ami_id": "ami-00608a7ff274efbe7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0730c3e810b7a2236", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-014774faf259e4ac5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084555ae8da26ecef", + "ami_id": "ami-0a0bcfe494ee9e85e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fee13e183eb2baf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-061d1e37eb47f145c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041e6e0e4d4143757", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a068cd039d40b675", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c609058199c186d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-00d77a3fbae71c6a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07303fde87f3c8fe0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06ef2165f815be076", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022eb37190e1fa8a7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-006cddaf99b3b2d49", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc326ae649eedd3c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", + "ami_id": "ami-0275dae9644b7c80f", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", + "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0d1aa5234e7ca33", + "ami_id": "ami-06ebcd201e518e437", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c20a67db6e1c7258", + "ami_id": "ami-08f6f82270576fe90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcfb39b93c09a8ec", + "ami_id": "ami-0e56759c07de47641", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0197356bcfa85f838", + "ami_id": "ami-0050afee8f10b788f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038e53e84434526ee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-02d600a774f09f569", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7dde1418f6b9b08", + "ami_id": "ami-04b56a8e8608ef08f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb90679de40109ec", + "ami_id": "ami-06d0468a25e6bc979", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03540f68f16a24881", + "ami_id": "ami-0843fbd18aa2c2a08", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fab34896f5da895b", + "ami_id": "ami-0df7a53affdc7cb92", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d57061c96c876f8", + "ami_id": "ami-001a2d73ab5f47354", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bb9aa4e43a2d031", + "ami_id": "ami-0c0e911bd8711defa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8541,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b9c07fa9391d46c", + "ami_id": "ami-04cc2d2989683d134", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b30a0131829fe78", + "ami_id": "ami-0cfeb7ac874f6bf34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ab7403d92c593a2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-0cb2bf03bcf43b446", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf24c0fcdeef9bfd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0298e0c0441cb5c66", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04796634390136d12", + "ami_id": "ami-070b0ceb57b81fe46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-c7072aa8", + "ami_id": "ami-075d45851994f0e1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0520fedb5be6af19e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-0d7b01e1bc588c0f3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f0c4b64f9826e02", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-0db7921475d01c897", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018bf378c35021448", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-098d8f17d34b0d209", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b45d3185421f13e7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-0cf9d9acde0d8d277", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02247ce67d19dab21", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-08d110a07150b4d2f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdf0d779a4359dbd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "ami_id": "ami-05f1d7f8a888ca2bd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a576113d81e659cd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e5b4d1c68d611b30", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fde8df2a9b8d814c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0624aae84693b4ea5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e3ef60527dd80ed", + "ami_id": "ami-05b64c6231d34972a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068f18970ff17c432", + "ami_id": "ami-0749926733e079de3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0670f20e30bc1f980", + "ami_id": "ami-05629198cfd9d5d2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0261df022519bfdac", + "ami_id": "ami-0dfb394e182c8b8e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a14e1a77951097e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-0be4deadf54b0dff7", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3da4d8e192eb4b7", + "ami_id": "ami-0c1c7240d72e08522", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb2bf03bcf43b446", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00b218674d3be1fc1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d63d6800d0b96443", + "ami_id": "ami-08fcdc6a7359c0468", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e13e0df31e6aa478", + "ami_id": "ami-0779325a71066f4c6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6b7d4cd9ca0ffce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7859e12b7371f85", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190913-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095f8e1f2319f6b4f", + "ami_id": "ami-081c47245612a8aac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdfb4e87ef402851", + "ami_id": "ami-0cf578c4aa3268186", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c79253ca9931586d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "ami_id": "ami-0345ff83c9ce865bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0693eb4c0bf369656", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0080447f7c14d3c3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd19c110feeefcd9", + "ami_id": "ami-00d476222cab1db0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043a316113a451043", + "ami_id": "ami-060fe06a270f90897", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3cb6a1aa319e4d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-07266f249b2602d5b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0634b2d6c60acfbb4", + "ami_id": "ami-0bcf36cedf30616c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019880147c0de49a6", + "ami_id": "ami-098863b3ed950a40c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014d6d0aa108605c3", + "ami_id": "ami-044ae49006f7880af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0151e841a3a5b6e8d", + "ami_id": "ami-0c79253ca9931586d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c3dd9d331356fb8", + "ami_id": "ami-0c6fb4841abda7bde", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d192d7b37f96a4e5", + "ami_id": "ami-0ceb2f0f07dd0abfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b247977c95afe42", + "ami_id": "ami-0723d46f64aae66f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b9a3d0eb58884f4", + "ami_id": "ami-0ca1d10e1c83e5587", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfb394e182c8b8e4", + "ami_id": "ami-0ad442d21f5ede7e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c1b69fd80caeedc", + "ami_id": "ami-0e22c1d4ad13192d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd2ebd86e9e44cec", + "ami_id": "ami-00dddc48c6b96268e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0393798ba6402e984", + "ami_id": "ami-024429d1aad54b1ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06808db60b3965e55", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08b496de7a8e92a59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02917e65d34daf81c", + "ami_id": "ami-0d3f1b9e20c42234d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0757906f618693fc2", + "ami_id": "ami-0135b10eebe3dcc61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7dd52cf622469e5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-0570b8907cd2ad2f6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a679ab720de3b5c2", + "ami_id": "ami-0197f82bc4ce1c3fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce730021859dd989", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fe00d4d7f42b9730", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff1a039a69957ee8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0f53c06e76b4eb362", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006a5e2bfa1ca2877", + "ami_id": "ami-01ceeba3decf22b30", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da652b3f2049d190", + "ami_id": "ami-0da49b56d7d31943d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e57d3c69f37d9da", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c4b5d1c379b73bbd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d600a774f09f569", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "ami_id": "ami-0b6657640a764c91d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030493a647e0ba449", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0e5382b89ccd2af72", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8bf4e187339e2c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "ami_id": "ami-0ae7345474a78bd83", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e0f71ed62b19958", + "ami_id": "ami-09d641e8b96146809", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0681b232e0ccd6562", + "ami_id": "ami-0a7298d2d1a1c6bce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081a6bc7bdbafd63a", + "ami_id": "ami-0c817137e5e2ed971", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9351279f17b5e60", + "ami_id": "ami-026d60dca99a5ac54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072df3f9c88997b73", + "ami_id": "ami-0b236c2d05a9300f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b32a5de8c6176f1", + "ami_id": "ami-08f4b3849a79d5067", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae2f00fa12adfdf8", + "ami_id": "ami-0bfd230ac37791b83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00aa49392c5529ded", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-083f42623a1c56cd1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e61f841bba635fc9", + "ami_id": "ami-0ad5d170bc1dda336", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d35b3d4686661a00", + "ami_id": "ami-031f54f71e357b28b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecb897bf12beb2c6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-0d35b3d4686661a00", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080b9f62670fb2e94", + "ami_id": "ami-0a6e2b0c3d728fbcb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039481fe28b44997c", + "ami_id": "ami-0f3129df65bbc25b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02418456c27a77029", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-03e75332ffeeb512f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cce654b9063c8b5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "ami_id": "ami-0514ebec162167c71", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0073ade0969b4c1", + "ami_id": "ami-0e0cca126a0dae251", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dbf311c5deb3dd3", + "ami_id": "ami-0de8ee7c4cd45c7d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070b0ceb57b81fe46", + "ami_id": "ami-044c72a801982b446", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08209658f756ca8f4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "ami_id": "ami-0fd2e9d0197e5ce29", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000bc93d2ea2f1c89", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-0101ae7acdeb3b2a6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ef23ca2cb951485", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01c1ae5aae1d9f201", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae3b63c2bbbe8a54", + "ami_id": "ami-0281cf57549707b32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025b68c5bbdb6cc8b", + "ami_id": "ami-01fc890789da0c85a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03084f07c7e4b53f5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0cedf6c96a55a7ec3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ccfe02eea2011a8", + "ami_id": "ami-0c179ce399a9e08ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bb1c51137dbc9c0", + "ami_id": "ami-06fd12abc66811f23", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f4b801b11102d9c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-078902ae8103daac8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa919b02bdc94885", + "ami_id": "ami-08fc474539ba41654", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe53f229ec00391d", + "ami_id": "ami-0b659541b96227d56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6da3c15647a576d", + "ami_id": "ami-0b7514ad4a4fb45da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093e9dd3a21577587", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "ami_id": "ami-0fef97de55f169992", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2f2f6043fb3eee3", + "ami_id": "ami-043a316113a451043", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0347998ec7dee3d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-081a6bc7bdbafd63a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f62fc558c2362a92", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "ami_id": "ami-02da5c0c65a162dc6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deb32780af3fb00e", + "ami_id": "ami-01ee0fb76c6f95519", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ceb2f0f07dd0abfa", + "ami_id": "ami-0622934c45dda0670", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f6bc049f323302c", + "ami_id": "ami-08fcbb6bcfbc5ced8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d6344bae9e0e108", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-02c3dd9d331356fb8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059ddf0d4c63fe9f0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "ami_id": "ami-0dcc9a67d3b25e9e3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b38aa344ec8e6a7", + "ami_id": "ami-02ef23ca2cb951485", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0464ccdcda7755ce7", + "ami_id": "ami-04796634390136d12", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fe06897abb31eb5", + "ami_id": "ami-05ccb156ed4909c80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8d0e6963d197be9", + "ami_id": "ami-0d8f825afc47e935b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4a31e878446c581", + "ami_id": "ami-0960dab3ff9a5026e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d03fcaf7774908cf", + "ami_id": "ami-00b9c07fa9391d46c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066dc4262ec30ccb8", + "ami_id": "ami-0f506e35c2636f6ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f9122e9a08ea450", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02e76915206b3a613", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025290a8ad19d22ab", + "ami_id": "ami-0ae3b63c2bbbe8a54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02417378b42f167b0", + "ami_id": "ami-0cf8f0b8cf320258c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034beff8e77013ce7", + "ami_id": "ami-095f8e1f2319f6b4f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1d2a6bc2b08d27b", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-008268c30341aeab8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04322e867758d97a8", + "ami_id": "ami-0de5f0000a966fc88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fe7bfe0d7a1938f", + "ami_id": "ami-098f0a3af76d9c485", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfd230ac37791b83", + "ami_id": "ami-0584cc43fa900617c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd2e9d0197e5ce29", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00a414349b1f52d57", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ef9f6a829ae3956", + "ami_id": "ami-0b23c71cff7ba7a32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b78bc66bb472d75", + "ami_id": "ami-04e4d64ebe8dc4236", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea1fee46718bd831", + "ami_id": "ami-0ea3bcacb176f09dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cc7182d2ce2d2a9", + "ami_id": "ami-038e53e84434526ee", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010644bdae1cbf69f", + "ami_id": "ami-0902d9a8cb5751154", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd8aa406a93cc7e6", + "ami_id": "ami-010644bdae1cbf69f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a13379b93d01d0c", + "ami_id": "ami-0bf7720b631f83cb1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06671534087c61ddc", + "ami_id": "ami-068bd421b3b1bc7b9", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c627abbe9a4ca3a", + "ami_id": "ami-0d63d6800d0b96443", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008769d6114ebcf5e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-02d59a5396b25365b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031bd416348652a8a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "ami_id": "ami-080ebe5e01062eccf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec7c8a51d3d0911c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "ami_id": "ami-0ed2a238542fbb3d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a53c14912efbb09", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-0f9923fa44a389ffb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d65e6bf3b63110a", + "ami_id": "ami-0bdc1361044019eed", "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c22194571cbc7f59", + "ami_id": "ami-04e8aaa9cf22e6941", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0899ea3f6a2d174fe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-025047fa9157cc14a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2b1ceb5b33279d3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "ami_id": "ami-06ef62a67be0325c9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02aa1df73bbf458cf", + "ami_id": "ami-0e42c95bc5367069a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0205f72f24e39213b", + "ami_id": "ami-06dc1ebae22470a04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028ed9d27685a2216", + "ami_id": "ami-007c5bfe6d7ef25bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038716c3fd0b41471", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-03e3ef60527dd80ed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef62a67be0325c9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "ami_id": "ami-0d5fe2c99e7708435", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4eb075415155f50", + "ami_id": "ami-0198ff65b1c5be8e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0258e5ef5fd460410", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06808db60b3965e55", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09de1e22fa7c3e362", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-06f8929217cb48fe8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a068cd039d40b675", + "ami_id": "ami-0eb72d5b82330cd6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10733,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e8942c6ee3e4b4f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-02a26d504ccad3de6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0818ec728a0792150", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-0d143ad35f29ad632", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dc1ebae22470a04", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-080751a8141d8551e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0fb42a441f6b55f", + "ami_id": "ami-0135122ce04051906", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e45c8a260a13d2b2", + "ami_id": "ami-0f7d950a5d78be4bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0975e658758ce49df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-01fe7bfe0d7a1938f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10829,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5c4d003853996a7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-066dc4262ec30ccb8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d892a043551458d9", + "ami_id": "ami-0572f35fb885fbf25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f1d7cef63faabdd", + "ami_id": "ami-05069f420298dfd37", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024fbf55b51b6f872", + "ami_id": "ami-0fba866e13a3cf285", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0779325a71066f4c6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "ami_id": "ami-087e8a75b1970b2fc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10909,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f3f8eba055cfad0", + "ami_id": "ami-04f0382b7ddb5867f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fd65f60abed18c4", + "ami_id": "ami-0a813ddc2dd0aa2d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a7c6badb88a7be0", + "ami_id": "ami-0639b720a83a37252", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfde05819d4b88f7", + "ami_id": "ami-0634b2d6c60acfbb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ae32d47e8a525cb", + "ami_id": "ami-0be84f190eb87333b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6373f38d4b78dad", + "ami_id": "ami-00403569d16a7d04c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea27c46b15cf3997", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-0f6ddd5cd06387305", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ebcd201e518e437", + "ami_id": "ami-0ddb7d0564cea4389", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3d3f4a4de3d6292", + "ami_id": "ami-047071b129b111c87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0115ee444de22694f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-08f7412be54b54e08", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0006dac33e4ec1474", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c0f7e71303450208", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2b907da41e07166", + "ami_id": "ami-0e0347998ec7dee3d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ced95b230f01db8f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-0c1ba531403917563", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07435a77d0389f51a", + "ami_id": "ami-061ef3e5fc485468a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f167b88a67a6de5", + "ami_id": "ami-0eefb2485a7364e8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0345c0581a1b3637a", + "ami_id": "ami-0189b3459af07446a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074fbf900bb006d87", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-055fafe7f2d82c995", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c882e7e875c0532", + "ami_id": "ami-0a43ac8de9ded8e41", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c8db643e96b9884", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03ca81473d8346627", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa0c9baf8c06d61f", + "ami_id": "ami-04c609058199c186d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f39af8b1b7a04d70", + "ami_id": "ami-006b0e1febe66af61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11245,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03828d40a9d200f03", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-0331e50df2d3161fe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4b830d7d94d5130", + "ami_id": "ami-071c5c50719c95215", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04195853b65d6a9bd", + "ami_id": "ami-098e6955ce7c43270", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0224887a04cbb496b", + "ami_id": "ami-0a481a7079fcae271", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0647c9ca3a37e1cec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04f4e4ea117a3a0aa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ccb156ed4909c80", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-04fd15f5805c3b58c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb626c7d9a7e849f", + "ami_id": "ami-06eaf1582682bda5d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a47aa612591b873", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ff1a039a69957ee8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044c72a801982b446", + "ami_id": "ami-0ff67a3471930febc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dae45b322e48a882", + "ami_id": "ami-0a7ff903557b0ec9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078b06f4f76426e59", + "ami_id": "ami-08f3f8eba055cfad0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed2a238542fbb3d2", + "ami_id": "ami-02417378b42f167b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f4a4a61408b81e3", + "ami_id": "ami-09e91b0720b0b6c41", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0777e1c2593bb230b", + "ami_id": "ami-05105fc6c44b9fcfc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef85a882a5246c04", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01e3e1a2b26733604", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca1d10e1c83e5587", + "ami_id": "ami-0682239ab263484aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edc9c5eb896055cc", + "ami_id": "ami-0b4b320bbceb0d3ba", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210708 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093233e8a90ce4db8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0cdcd69f97bbc094a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dd6cc40e21a72a6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-06455a54808f89aca", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06959b9dc7ed71bd9", + "ami_id": "ami-038716c3fd0b41471", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220421 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8dc7281b12fed36", + "ami_id": "ami-03b3e8ed32775925d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0925298bf57195744", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c5cdf93d467beca8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0345ff83c9ce865bb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-082c5e9fe22286b69", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, - { - "ami_id": "ami-04cc7ece0a3c510c6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + { + "ami_id": "ami-03bb1c51137dbc9c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d3db89c7206d9c5", + "ami_id": "ami-0312d67ff59a3db34", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f724ccabccceb69e", + "ami_id": "ami-09dbf311c5deb3dd3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084b89e6c52b049ea", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ef316010a944f920", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074a975af29cb9747", + "ami_id": "ami-0f8a979e049713720", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078da8bb22763d870", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0036f358750e191d0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fc474539ba41654", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-02247ce67d19dab21", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0713fc8663fe451cd", + "ami_id": "ami-072df3f9c88997b73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20210520-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adc3260327e5cdf9", + "ami_id": "ami-0cf953afde70921a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c688cb2661dc68ea", + "ami_id": "ami-0ecb2cd6cd4189247", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062334f99a043235f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-0d269172e5cda9faa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5e26551d20fcd93", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "ami_id": "ami-0c0fa6d2f40394cf2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7621d173c4f6757", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", + "ami_id": "ami-024fbf55b51b6f872", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", + "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2e3ca3d3aad2af3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-0470125449146b386", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063dd92e888d1c75c", + "ami_id": "ami-0a5e26551d20fcd93", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211020 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb75124cb70d414c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "ami_id": "ami-04218b844164d6cbb", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02852566ac6bc7826", + "ami_id": "ami-0c48c07e7ea185bb9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd1f83db97697b6f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-0035c1ebd33d04edd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a414349b1f52d57", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-000be607201d9d6ff", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033ea3d2319de354e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0873de0405b4b1fef", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0198ff65b1c5be8e4", + "ami_id": "ami-05bd117a9c5a3a4ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9f7ec082fe809fd", + "ami_id": "ami-0225d0150197dbf08", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044ae49006f7880af", + "ami_id": "ami-0f301e1e49adc049e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0e74761b4cc8a53", + "ami_id": "ami-028fadf76d1135245", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9251412e5c8e67d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-068b12e2f5ee80923", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "amzn-ami-2018.03.20220121-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fd12abc66811f23", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-0718a1f188959e3d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12029,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007c5bfe6d7ef25bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "ami_id": "ami-0878b3c494946aadd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024b649b2bd976c3a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-0c2b907da41e07166", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2f722514ec458e4", + "ami_id": "ami-0b60daa2cd0f4bccd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn-ami-2018.03.20200708-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12077,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0404fad4827050817", + "ami_id": "ami-0757906f618693fc2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8cbac4a95b4e64c", + "ami_id": "ami-0ab848f7fdb5cc0f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8308af2872f7dd7", + "ami_id": "ami-03828d40a9d200f03", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c4493503c13796f", + "ami_id": "ami-093e80c2074ab2559", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05352e3d068930030", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-0f20ba1b13494b7e8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db9fd68ec248ce38", + "ami_id": "ami-0cdfb4e87ef402851", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecaa78c77132cff5", + "ami_id": "ami-0b948665b52b6ac61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9923fa44a389ffb", + "ami_id": "ami-060e4c5b14cd29277", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0b6879fc894f309", + "ami_id": "ami-0910020535ae3e6c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09be0a0cc08c9f07c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-074fbf900bb006d87", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0dc7872b44903a6", + "ami_id": "ami-0c4b830d7d94d5130", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5382b89ccd2af72", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-0b9d66ddb2a9f47d1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ca81473d8346627", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211115 arm64 ECS HVM GP2", + "ami_id": "ami-000bc93d2ea2f1c89", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd86d3f55b59b877", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-0d247158221877eef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d9116706210352", + "ami_id": "ami-017cab36e4ddda18b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b15f6552fa4b9e48", + "ami_id": "ami-000e4b3f0c9f06ffb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0253000eaaef5fbc5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-082e9762a1713ad3e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4bf640c95e4c802", + "ami_id": "ami-02715cd0bc65e8716", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08159a44fff0ddf0b", + "ami_id": "ami-06162220bc590f5a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4f8fcb3ade8d192", + "ami_id": "ami-078b06f4f76426e59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025cd980457aea469", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bdd65050039c21a1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a5f55afee1bbc72", + "ami_id": "ami-0f096dff1adc73458", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d643ca9021517713", + "ami_id": "ami-03d6344bae9e0e108", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f41d0da78840fcb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "ami_id": "ami-0520a52c94745d2e9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084f65e5ecfe69422", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-0c8892ce5874c1780", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e56759c07de47641", + "ami_id": "ami-0adc3260327e5cdf9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055c242d89deb39da", + "ami_id": "ami-0cf6eb9c461adf122", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f4facb1e6950eea", + "ami_id": "ami-0dc5ffddb2d6bed09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12525,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a03968949ee4e012", + "ami_id": "ami-0411720f000f2e7d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12541,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0934e936785d7e228", + "ami_id": "ami-05352e3d068930030", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12557,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9b642df102940f8", + "ami_id": "ami-0ce730021859dd989", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12573,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1ea8050960391ce", + "ami_id": "ami-0c30d898561a2c7bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12589,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d5812d2d91a8079", + "ami_id": "ami-0ec1eac5e2a81f238", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12605,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0828c3edd067af1ef", + "ami_id": "ami-0a2e884b66d632d57", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12621,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5af60af932abb52", + "ami_id": "ami-04d33f071194ead44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12637,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047071b129b111c87", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-0cd86d3f55b59b877", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12653,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0824d8508df646d10", + "ami_id": "ami-0f72e472a0a9ae1e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12669,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f7aaba00f8156bb", + "ami_id": "ami-0777c898440c9472b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12685,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d5e1738cd1528e5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ecd0bea2b84ff1c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12701,31 +14106,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-55e7d53a", + "ami_id": "ami-07d3db89c7206d9c5", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9af6cb0013d3aaa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-046a09e6579ab9bf0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12733,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0843fbd18aa2c2a08", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-07e36534b6dcd5314", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12749,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee33c69338608ad8", + "ami_id": "ami-04cc7ece0a3c510c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12765,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0586eea64c9dd6ca3", + "ami_id": "ami-0c0dc7872b44903a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12781,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c71845cc3c46dad7", + "ami_id": "ami-0ed762d44659d7ea7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12797,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0570b8907cd2ad2f6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01e9c477d7a1eccbf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12813,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0135b10eebe3dcc61", + "ami_id": "ami-053a37931be6ac0f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12829,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc6b8cf3ed4d3ac0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "ami_id": "ami-0115ee444de22694f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12845,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf7720b631f83cb1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "ami_id": "ami-06f59f5dec3a6d411", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12861,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d16d497d6d61b8a0", + "ami_id": "ami-043a354850ed667a8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12877,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df4552fc52c35aca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-074a975af29cb9747", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12893,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0094b4bf588911d7b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-0b6c9fb57b5db3be5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12909,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000be607201d9d6ff", + "ami_id": "ami-06da25bc3ffb0ca5f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12925,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014b6497008d2c77c", + "ami_id": "ami-042119a47956bf270", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12941,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf9d9acde0d8d277", + "ami_id": "ami-0d106c329037cc8f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12957,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0e911bd8711defa", + "ami_id": "ami-0af0b95bc21b60a92", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12973,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cc2d2989683d134", + "ami_id": "ami-0844bd6b57eb5b4c6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12989,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcfa88caa14f818c", + "ami_id": "ami-0aeef856e3f4d1b6b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13005,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b2eb7683f84ad6e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "ami_id": "ami-0925298bf57195744", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13021,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a065dffb9bf0469", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-022b88b4e96bfccaa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13037,15 +14463,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc64c3e94c71aa80", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-0475b0d685d5250cc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13053,15 +14480,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f8929217cb48fe8", + "ami_id": "ami-0f8dc7281b12fed36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13069,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d3f6ffd06cdfaaa", + "ami_id": "ami-05e31c2992b7c042b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13085,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00da5f062fe8bfafd", + "ami_id": "ami-039481fe28b44997c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13101,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a552830632c004e", + "ami_id": "ami-0de95fdcc4b6a3c86", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13117,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab848f7fdb5cc0f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-066de5c9ab6859c41", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13133,15 +14565,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038f109007ac72a24", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-036fbc96664e1005f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13149,15 +14582,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d962753cccb63d67", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "ami_id": "ami-01e95aa8676610021", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13165,15 +14599,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f49b54df17409f00", + "ami_id": "ami-0713fc8663fe451cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13181,15 +14616,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd09c5df16973f35", + "ami_id": "ami-08a5ae026e19d2c74", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13197,15 +14633,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ee820a6a2a1bd34", + "ami_id": "ami-0d34b4793f730fcdb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13213,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0506ca0d0cd5715bb", + "ami_id": "ami-0061a2fc8f6477d24", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13229,15 +14667,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df9b4bc5237f5920", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-02d8866fbfcdbb66e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13245,15 +14684,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb72d5b82330cd6b", + "ami_id": "ami-01653ce780e98d080", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13261,15 +14701,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a9efccb7ae2842c", + "ami_id": "ami-0e45c8a260a13d2b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13277,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016a983aa5f72ad48", + "ami_id": "ami-0fd01e23cd128bc8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13293,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae199ba2d8af90f3", + "ami_id": "ami-08b42d8c9836727d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13309,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac6b4be918654751", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-054c337ee5048c313", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13325,15 +14769,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0137bdc89b5a408b2", + "ami_id": "ami-076bbae7511f2cc74", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13341,15 +14786,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e36534b6dcd5314", + "ami_id": "ami-01744011f7ae18667", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13357,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7b28ba212180c81", + "ami_id": "ami-05d1cd45ae25e070f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13373,15 +14820,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd39ae05e1da03c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "ami_id": "ami-0152222ec11597c29", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13389,15 +14837,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003d71ce2ee2183b8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-04efec74570be2f5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13405,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d476222cab1db0b", + "ami_id": "ami-03122d8ba715051d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13421,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6d534408705ed23", + "ami_id": "ami-0f4c58fca5ae2d9b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13437,15 +14888,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1038a91bc52eda6", + "ami_id": "ami-01c02e0d26ed93fb7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13453,15 +14905,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021ba8bd221f137f1", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200905 x86_64 ECS HVM GP2", + "ami_id": "ami-08a3ba19b29318364", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200905-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13469,15 +14922,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd75d5ef1eba328a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-0d2f2f6043fb3eee3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13485,15 +14939,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb34b155cdd1f9b4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "ami_id": "ami-0509dabb9ec78ac21", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13501,15 +14956,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07542504e4f048f77", + "ami_id": "ami-018ae918c152249f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13517,15 +14973,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e75332ffeeb512f", + "ami_id": "ami-0a7b28ba212180c81", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13533,15 +14990,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fd15f5805c3b58c", + "ami_id": "ami-0b58dc2804bf4d8d7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13549,15 +15007,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa25b7fde1dd8f2f", + "ami_id": "ami-02ef2fd8a34a8a8c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13565,15 +15024,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c0a2d018925e9a7", + "ami_id": "ami-0c0af70b81234e237", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13581,15 +15041,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04224e9b8e778d0d4", + "ami_id": "ami-0e0fb42a441f6b55f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13597,15 +15058,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bf43a01c17ea8eb", + "ami_id": "ami-0b9e0371eaaa4fae6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13613,15 +15075,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0657c6e928d1628ee", + "ami_id": "ami-0a99893ef8088511c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13629,15 +15092,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecd0bea2b84ff1c4", + "ami_id": "ami-0afe7d8347f17aa64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13645,15 +15109,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a1ddc3f454e3b99", + "ami_id": "ami-01a2faa486f100e42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13661,15 +15126,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05069f420298dfd37", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "ami_id": "ami-0afab995a48697030", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13677,15 +15143,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6a93d5072903a1f", + "ami_id": "ami-0b15f6552fa4b9e48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13693,15 +15160,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028fadf76d1135245", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "ami_id": "ami-0eb86ee480801d528", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13709,15 +15177,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000a531d595cda3a9", + "ami_id": "ami-0766ed55de77e0e3e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13725,15 +15194,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098f0a3af76d9c485", + "ami_id": "ami-00022ccb33529c637", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13741,15 +15211,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c73a0fe286bc1110", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-005136f1190a5c6b7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13757,15 +15228,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe38eb39fb46b350", + "ami_id": "ami-041171a57850bdbed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13773,15 +15245,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0622934c45dda0670", + "ami_id": "ami-04d4365dbf5e79c64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13789,15 +15262,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005136f1190a5c6b7", + "ami_id": "ami-0addf584ba12acd5e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13805,15 +15279,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054feefd140361c3e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c4eb075415155f50", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13821,15 +15296,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdc7ef990b70e8fd", + "ami_id": "ami-0fe53f229ec00391d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13837,15 +15313,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad5d170bc1dda336", + "ami_id": "ami-067c97577b083954f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13853,15 +15330,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05571b81adcbfa18b", + "ami_id": "ami-0f8bd0dd1106fad54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13869,15 +15347,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071c5c50719c95215", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-0019bd9847bcb12d7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13885,15 +15364,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f096dff1adc73458", + "ami_id": "ami-0ed35d17c3db7d475", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13901,15 +15381,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046a09e6579ab9bf0", + "ami_id": "ami-0dae45b322e48a882", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13917,15 +15398,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e566ee3ee2cd373", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f29128bcec495a39", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13933,15 +15415,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040820bbe2e9c3d5f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-0c73a0fe286bc1110", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13949,15 +15432,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0135122ce04051906", + "ami_id": "ami-08209658f756ca8f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13965,15 +15449,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016e9085cb9320a8f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04c70001583ee4552", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13981,15 +15466,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6364eb63f8b9c35", + "ami_id": "ami-00c556d64c0320b38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13997,15 +15483,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05105fc6c44b9fcfc", + "ami_id": "ami-05de310b944d67cde", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14013,15 +15500,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd99c8f8b4bb2547", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "ami_id": "ami-0eb75124cb70d414c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14029,15 +15517,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0312d67ff59a3db34", + "ami_id": "ami-030639538f37be379", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14045,15 +15534,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6ab585d6b174e91", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03a143742b9b13783", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14061,15 +15551,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0844bd6b57eb5b4c6", + "ami_id": "ami-0db9fd68ec248ce38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14077,15 +15568,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055a5bbcbce2b9721", + "ami_id": "ami-07dd925e475db032b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14093,15 +15585,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043ddb36dd9b4cc66", + "ami_id": "ami-036eaa870decb368d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14109,15 +15602,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ee0fb76c6f95519", + "ami_id": "ami-0ac205f3fcec32d9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14125,15 +15619,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05102fa15f846ac89", + "ami_id": "ami-0a9086db7bf053774", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14141,15 +15636,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c61945a814ec6fe1", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-0b9b642df102940f8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14157,15 +15653,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef2165f815be076", + "ami_id": "ami-0db7ae41ea783cb0a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14173,15 +15670,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05df77ec905ed3dcf", + "ami_id": "ami-05c965bf5566e4071", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14189,15 +15687,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab2cb7f6b4c677d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "ami_id": "ami-0d892a043551458d9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14205,15 +15704,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd2bda3adccca481", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-009161c263996bdfe", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14221,15 +15721,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea6f6845dd370ae8", + "ami_id": "ami-0c8cbac4a95b4e64c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14237,15 +15738,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09eb1053405a096bb", + "ami_id": "ami-005375d069fffb6b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14253,15 +15755,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4e9862241e18281", + "ami_id": "ami-05306c479181a7cf7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14269,15 +15772,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0af70b81234e237", + "ami_id": "ami-0670f20e30bc1f980", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14285,15 +15789,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd8d4b4aa145fad3", + "ami_id": "ami-07573491172d104be", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201013-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14301,15 +15806,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072b20c3cda798d4b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-00b3dccbc05ea28df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14317,15 +15823,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006cddaf99b3b2d49", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "ami_id": "ami-067b58da1e3a1ecd2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14333,15 +15840,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c38ea72bda93db3c", + "ami_id": "ami-04224e9b8e778d0d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14349,15 +15857,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00afad28fec23f73a", + "ami_id": "ami-04fe06897abb31eb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14365,15 +15874,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b833526946dbed31", + "ami_id": "ami-06bb7899d4a0b2124", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14381,15 +15891,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0876ad01c0d284cbb", + "ami_id": "ami-0934e936785d7e228", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14397,15 +15908,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc5ffddb2d6bed09", + "ami_id": "ami-0c918054e678b9da6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14413,15 +15925,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a143742b9b13783", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "ami_id": "ami-05be78da8ad82f4fd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14429,15 +15942,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054ec1f5320963f5f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-087632d3a5a48acf4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14445,15 +15959,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f009513cd58ac90", + "ami_id": "ami-029a6312077f682b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14461,15 +15976,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0484b39dd56f70080", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "ami_id": "ami-097313abf4c78cc3b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14477,15 +15993,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02715cd0bc65e8716", + "ami_id": "ami-0d91eb77677b73ddc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14493,15 +16010,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02815c9df0c0d3d82", + "ami_id": "ami-07c02548bca5729e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14509,15 +16027,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0723d46f64aae66f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec7c8a51d3d0911c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14525,15 +16044,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dc6d65e614115bd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-0b4ec68023641728c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14541,15 +16061,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041c3fb6ed245b87d", + "ami_id": "ami-07c0f8a42b483e4cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14557,15 +16078,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f59f5dec3a6d411", + "ami_id": "ami-0ecb897bf12beb2c6", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14573,15 +16095,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d91eb77677b73ddc", + "ami_id": "ami-0e07d6ef5008c6ca3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14589,15 +16112,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02bd6e5cd75696de6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-0a679ab720de3b5c2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14605,15 +16129,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065d9eea76eb7bacc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "ami_id": "ami-0c70e84671c4fafaf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14621,15 +16146,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7cbb292697919ee", + "ami_id": "ami-0ddef4729eb82bcad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14637,15 +16163,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04af4ff16282f76e1", + "ami_id": "ami-040eaade4330de05a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14653,15 +16180,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0533963b535917e8d", + "ami_id": "ami-03c3f1f6fde475f9c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14669,15 +16197,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011f5aded4e99a1a8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09dc6d65e614115bd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14685,15 +16214,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf8f0b8cf320258c", + "ami_id": "ami-02c1b69fd80caeedc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14701,15 +16231,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0cca126a0dae251", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-07123aaf4f43238b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14717,15 +16248,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005375d069fffb6b5", + "ami_id": "ami-0622a76878be0b6c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14733,15 +16265,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a26d504ccad3de6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "ami_id": "ami-0da7defaf4c4b50ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14749,15 +16282,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b58dc2804bf4d8d7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-04fd65f60abed18c4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14765,15 +16299,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043a354850ed667a8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-0bbb96009b99659a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14781,15 +16316,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae7345474a78bd83", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-018c878b09a10e89f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14797,15 +16333,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7fd4a2fe63dc8c2", + "ami_id": "ami-082d5268d361e93d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14813,15 +16350,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e19761603fa5d931", + "ami_id": "ami-0d3bfbdb814deeb39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14829,15 +16367,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0335c61fdd0fc8509", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0fd75d5ef1eba328a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14845,15 +16384,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af6280f0be708126", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-05f009513cd58ac90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14861,15 +16401,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a08df48e8750e809", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-08d8d17a037350913", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14877,15 +16418,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c937abf7f638b7ec", + "ami_id": "ami-09dd6cc40e21a72a6", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14893,15 +16435,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0362b8870ca261806", + "ami_id": "ami-0365dd33ce77958a7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14909,15 +16452,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034a922ba877237a1", + "ami_id": "ami-0261df022519bfdac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14925,15 +16469,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af0b95bc21b60a92", + "ami_id": "ami-046cdc737face57a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14941,15 +16486,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0749926733e079de3", + "ami_id": "ami-0d5b552e792488f9e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14957,15 +16503,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01948da6139834271", + "ami_id": "ami-0fea9915a8e42a3a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14973,15 +16520,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db37fa51a7d32f36", + "ami_id": "ami-05ec607d5b84572e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14989,15 +16537,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e4d64ebe8dc4236", + "ami_id": "ami-00da5f062fe8bfafd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15005,15 +16554,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9086db7bf053774", + "ami_id": "ami-0682a720aa29835dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15021,15 +16571,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fcdc6a7359c0468", + "ami_id": "ami-0b789e6c6cb5f1d1d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15037,15 +16588,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a99893ef8088511c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b9251412e5c8e67d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15053,15 +16605,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045dcb7db59808be0", + "ami_id": "ami-023b60501dadc7f23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15069,15 +16622,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c76bb6b27614a68", + "ami_id": "ami-0b63d2d331f0d2061", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15085,15 +16639,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf5769470872eb3a", + "ami_id": "ami-0fb5ad7192123b92b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15101,15 +16656,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03aff94e9111b0391", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-09e0f71ed62b19958", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15117,15 +16673,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07573491172d104be", + "ami_id": "ami-016e9085cb9320a8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15133,15 +16690,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a56cb1908b6ce94", + "ami_id": "ami-0dd8aa406a93cc7e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15149,15 +16707,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e07d6ef5008c6ca3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03f0c4b64f9826e02", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15165,15 +16724,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6ddd5cd06387305", + "ami_id": "ami-055c242d89deb39da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15181,15 +16741,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf953afde70921a2", + "ami_id": "ami-c7072aa8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15197,15 +16758,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d106c329037cc8f6", + "ami_id": "ami-093233e8a90ce4db8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15213,15 +16775,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3bfbdb814deeb39", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-025cd980457aea469", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15229,15 +16792,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0019bd9847bcb12d7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-076225ecb934f9972", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15245,15 +16809,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06eaf1582682bda5d", + "ami_id": "ami-053e5fdc0eb2ee0ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15261,15 +16826,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9c8e4f494a2961c", + "ami_id": "ami-0599b5261dca6f7da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15277,15 +16843,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2373399185bebfb", + "ami_id": "ami-0cf04a8bb30bf1e2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15293,15 +16860,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce58ed87dac0105a", + "ami_id": "ami-0d643ca9021517713", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15309,15 +16877,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04291fc1d2b651070", + "ami_id": "ami-03021e0f712f1a007", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15325,15 +16894,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0b4d21dbb89946c", + "ami_id": "ami-09c0a2d018925e9a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15341,15 +16911,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0640885fece9e14fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "ami_id": "ami-0ef85a882a5246c04", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15357,15 +16928,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbebe9b6f4aea1c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "ami_id": "ami-0f2c90f81c2e95ba9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15373,15 +16945,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081c47245612a8aac", + "ami_id": "ami-0fa2e62574a2d44f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15389,15 +16962,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0777c898440c9472b", + "ami_id": "ami-0224887a04cbb496b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15405,15 +16979,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2db73af6757169b", + "ami_id": "ami-03a86bf5c0d3e8f21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15421,15 +16996,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078902ae8103daac8", + "ami_id": "ami-06c9e88b3820b991d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15437,15 +17013,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b51c19e9fe84d2e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "ami_id": "ami-0df6329054d96b74c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15453,15 +17030,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ba2f1b4cce70109", + "ami_id": "ami-02704edb2becb49b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15469,15 +17047,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cd6f47c1ca3be26", + "ami_id": "ami-02f4d2b39308520c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15485,15 +17064,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e579f4b6dc9e5a94", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "ami_id": "ami-054ec1f5320963f5f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15501,15 +17081,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078c68de9ef6d5eda", + "ami_id": "ami-07a7f839c132efbe0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15517,15 +17098,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064fdf5642fe4f153", + "ami_id": "ami-00afad28fec23f73a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15533,15 +17115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0238773622896ccab", + "ami_id": "ami-082064b33b8c1b743", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15549,15 +17132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0584cc43fa900617c", + "ami_id": "ami-0f3102c6801672b9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15565,15 +17149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0682a720aa29835dc", + "ami_id": "ami-03546d38de43204ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15581,15 +17166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0509dabb9ec78ac21", + "ami_id": "ami-034a922ba877237a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15597,15 +17183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0622a76878be0b6c4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-028098eaf18131a90", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15613,15 +17200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073f91d19fb5ea012", + "ami_id": "ami-0aa25b7fde1dd8f2f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15629,15 +17217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5044768ebf7ed50", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", + "ami_id": "ami-0192c62dc30ba862a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15645,15 +17234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01acc0a5034f296d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "ami_id": "ami-02e3e19f21e426111", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15661,15 +17251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d688e08248fffa2", + "ami_id": "ami-0bb00e728f56a421b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15677,15 +17268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c965bf5566e4071", + "ami_id": "ami-016ebb387e4971868", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15693,15 +17285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ef2fd8a34a8a8c1", + "ami_id": "ami-075cafac13c3369f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15709,15 +17302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3e22d6e87ca8e3f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce58ed87dac0105a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15725,15 +17319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8f825afc47e935b", + "ami_id": "ami-0b1038a91bc52eda6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15741,15 +17336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b60daa2cd0f4bccd", + "ami_id": "ami-0024206fed5c99368", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200708-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15757,15 +17353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d247158221877eef", + "ami_id": "ami-0033858a78f3d834e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15773,15 +17370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be84f190eb87333b", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-0e44468d24abec2c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15789,15 +17387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c0860c1927c00b6", + "ami_id": "ami-096bf01d815d03c76", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15805,15 +17404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093e80c2074ab2559", + "ami_id": "ami-0ae199ba2d8af90f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15821,15 +17421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e3e1a2b26733604", + "ami_id": "ami-05f4caeed7794cd4e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15837,15 +17438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f53c06e76b4eb362", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-044aae085a94cc4ae", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15853,15 +17455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b218674d3be1fc1", + "ami_id": "ami-08dfd4173689e81e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15869,15 +17472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069d7513bc1896fb8", + "ami_id": "ami-025fa2a3e27b6e58a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15885,15 +17489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8edf176a7ff7615", + "ami_id": "ami-0b4f8fcb3ade8d192", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15901,15 +17506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fef97de55f169992", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-0c71845cc3c46dad7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15917,15 +17523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dfeb9bdf79c0980", + "ami_id": "ami-0b3e22d6e87ca8e3f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15933,15 +17540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0873de0405b4b1fef", + "ami_id": "ami-0ded68b9c04b0cc83", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15949,15 +17557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e14a8ae05fabcab", + "ami_id": "ami-0e9c8cde719d3456e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15965,6 +17574,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json b/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json index 40db5e37a82e..d8ecad7f2e75 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-south-2.json @@ -1,11 +1,28 @@ [ { - "ami_id": "ami-03724c651932c4944", + "ami_id": "ami-07aca577b1d1cde34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-041098e759b954fa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -13,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052e85212df7efb33", + "ami_id": "ami-04a6abb4f46ff8412", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -29,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020b84e67260c2e73", + "ami_id": "ami-006cf6c1a6ec4f004", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -45,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07714af66252e26ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-040e11e5688282684", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -61,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d49324ad5abdd11c", + "ami_id": "ami-03724c651932c4944", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -77,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8165570a3ce4385", + "ami_id": "ami-00eaa38079759a429", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -93,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0370558e06a2a7e9b", + "ami_id": "ami-083c917e8a7a87e6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -109,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af5451fda0cd133b", + "ami_id": "ami-05bdfc863c3ee3fb8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -125,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c09a1d3d61d6f822", + "ami_id": "ami-066f0f264303c7eb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -141,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee5ef2135fd3646b", + "ami_id": "ami-03dbfb3aadbd4a99b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -157,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c73097fff773d5e", + "ami_id": "ami-0afa78f916510d153", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -173,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f097003d5144452", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "ami_id": "ami-044544b33649e4dbe", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -189,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7f8de147adf7031", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-0d56ee1f4b329ab86", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -205,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bee634f8bea9aaa7", + "ami_id": "ami-056a928863cf3c6c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -221,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e50817e1e8697623", + "ami_id": "ami-0f7ef99fadb2e0ff2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -237,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dafe5f8bab15095f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-0ebf81db963958e80", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -253,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0264e3e92e711246b", + "ami_id": "ami-0933defbe607203bf", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -269,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04561404ff8c40c07", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "ami_id": "ami-0b76d6f72ac624f4f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -285,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d42a87c6a0417b2", + "ami_id": "ami-0cd9da9280f354dc8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -301,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a9f05cfb7286276", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dd6e7f170c3b0a83", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -317,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b86f4594b637b09", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "ami_id": "ami-0a56400951367b56c", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -333,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d496040cbe8beb96", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "ami_id": "ami-0c422356ab118f472", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -349,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f70d9db2641ba628", + "ami_id": "ami-08a44926d228376cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -365,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d79b8fde4a8f1676", + "ami_id": "ami-0261d563d67c8241f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -381,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013eb0343719d1225", + "ami_id": "ami-07920be66ff9ab12e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -397,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0143dc65b79da4711", + "ami_id": "ami-09f97cfbd77bfcf7c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -413,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a03e5f318f26b868", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0f37a305de1e14a70", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -429,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071b1aca06a129d18", + "ami_id": "ami-069e0ec398cb414f9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -445,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8c7f811683071c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "ami_id": "ami-0873413815ac8c38b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -461,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08acacfa9131b522f", + "ami_id": "ami-029a59e887c69e4b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -477,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7283ce231b83bca", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec16ab8ad44d7d4e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -493,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07557bf2405fb1920", + "ami_id": "ami-0ce73636e2170c34a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -509,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5024ddb778b1c32", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "ami_id": "ami-0dbdffe5bf78ff0fa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -525,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ede695e50071e65c", + "ami_id": "ami-0adc1f99119b7d3b8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -541,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7ef99fadb2e0ff2", + "ami_id": "ami-0f036752f44831d87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -557,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8b053b39e69c124", + "ami_id": "ami-0180bc287789e04b3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -573,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00492b130acbd6ea2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-0dab39fda213f015a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -589,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06da6bfa5237b3b04", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0e32397b123bb9a5b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -605,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dbcff8a3d2d962a", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "ami_id": "ami-0daa280e235cc6fe4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -621,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e72381e368b0d08", + "ami_id": "ami-045de08f8b268a459", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -637,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05dd84820a41332fc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d49324ad5abdd11c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -653,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022b6233ac3257ec4", + "ami_id": "ami-054e7498465522d36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -669,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4b4e8149ac6eaa8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04e6c9bfe4e4ca703", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -685,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bc90d7266ab64ff", + "ami_id": "ami-05552972562c01c6e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -701,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6f499ae819b47b9", + "ami_id": "ami-0e1731767a3b0025b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -717,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04318a10bdbd2b7fb", + "ami_id": "ami-019b734d52f197cce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -733,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0dcef07e08af45f", + "ami_id": "ami-0a3770f9b874cc610", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -749,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f3d2f54144d316b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0dc1d81975360d48d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -765,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4b3077ca2320b90", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "ami_id": "ami-0001e0d7704c1248b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -781,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a81c0a83bb668361", + "ami_id": "ami-0edf6a9ce77731758", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -797,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03db21558f078f728", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-078b657d53dfe27ce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -813,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e73ca67e2556372", + "ami_id": "ami-0006ad3c9d8f47476", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -829,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f75e494bfe30681d", + "ami_id": "ami-075ab698e58809adf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -845,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0afdbede0d3a639", + "ami_id": "ami-08fa2504fd40e09cd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -861,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d8050eaa7dd6fc8", + "ami_id": "ami-0db352d4c4bffb9ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -877,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c74fd7164eb2a17", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01387399b588ca25f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -893,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08668ef764bf2ebbc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-0d9b169a633850510", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -909,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00172981004835fc4", + "ami_id": "ami-052399d4ee86efabf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -925,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6a9158aa626dba6", + "ami_id": "ami-01c42e10a77e4b51b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -941,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048876a49d5ff499d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-073ce3cb9afb2bdc3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -957,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033dcb1097fb79e72", + "ami_id": "ami-08a5e070b8602c544", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -973,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036a528c48d399002", + "ami_id": "ami-0ed658f92d628f3c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -989,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ea02f29c12e5246", + "ami_id": "ami-03549a9e03c51faa3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1005,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deb859e094c33116", + "ami_id": "ami-0c34b7fc827946018", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1021,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e6c9bfe4e4ca703", + "ami_id": "ami-0cc8bbe3c7c4de079", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1037,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be00602579fecdc6", + "ami_id": "ami-0285907a9d6121832", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1053,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c1c7bfde20d24bc", + "ami_id": "ami-077b923fe2da195d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -1069,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0809d3be1011aa17f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-03dcdae7ef970b1c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1085,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fa9b1e7b193efb8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "ami_id": "ami-02ed030d4c75a01a6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1101,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00521faa394c2abe5", + "ami_id": "ami-0ab4fb74c8105d577", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1117,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd9da9280f354dc8", + "ami_id": "ami-0bfaa04619d92bc85", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1133,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6458482e7be4a3e", + "ami_id": "ami-0c91459e5972c4aa9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1149,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b86b6be19cea4ef", + "ami_id": "ami-033b23ac70781b066", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -1165,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac0fc7bab1f6138d", + "ami_id": "ami-088e3fedd97f74a5a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1181,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db9872c6eaa3a815", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-0c5e43c50a9cba805", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1197,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffa2253579ddf642", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "ami_id": "ami-0a350a1841e23dbfc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1213,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6ed4345b1dc71b9", + "ami_id": "ami-0c3fd243f358278e5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1229,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08490cd17bff0e91e", + "ami_id": "ami-0ede695e50071e65c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1245,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2243150984e3c72", + "ami_id": "ami-0eb1926bb89187326", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1261,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d118d6eec8dcf9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "ami_id": "ami-0f94fdd33e7f5de96", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1277,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02adea1bfb248a5eb", + "ami_id": "ami-07f441718278d9cd5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1293,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066e09c7e87350ab5", + "ami_id": "ami-0bf27582d11fb9720", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -1309,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c66ee3525387029", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-01de5098b6820758a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1325,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f12993567244763e", + "ami_id": "ami-0296587cc901aa044", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1341,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09396b6842514cd5c", + "ami_id": "ami-052e85212df7efb33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1357,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044544b33649e4dbe", + "ami_id": "ami-0740dab837b06ac8e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1373,15 +1475,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f06bccad1e45cbd", + "ami_id": "ami-03c04fcf64c472279", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-054918bdd6d48ee6b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1389,6 +1509,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -1405,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aff2aa43e6de2952", + "ami_id": "ami-006b36b5da1fb46ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1421,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2488d7caf259888", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-071c8cf40391f3687", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1437,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0458b79645b391c0a", + "ami_id": "ami-04c0ceb6509c59a06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1453,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bcc5b9171c3b1d5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-0d9e5454c28d0b61b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1469,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e99a7667a39df9eb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f18f695ec6988b1e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1485,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c0732b156c152dd", + "ami_id": "ami-0723cb839f52c565a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1501,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e45d6fe0f53bf40", + "ami_id": "ami-05973eca7aa7b4efa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1517,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093942206045cf2df", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-071afdb3cf3f16f4c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1533,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa8cda151576d7e0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-080e939008d487272", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1549,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ed030d4c75a01a6", + "ami_id": "ami-01b75438899db123b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1565,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0435de7a031e28f2c", + "ami_id": "ami-09118aaf16d1c4d28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1581,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfdcc756b36932c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-0bb4a4c49d8776bf6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1597,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8cb8c9d817751fd", + "ami_id": "ami-026285a14ff319dce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1613,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef37f6ce2254489a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-0c49cff23c3bfa159", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1629,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dbb15598c24f59e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "ami_id": "ami-000fd114a002eff80", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1645,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c69ea1a3a707a789", + "ami_id": "ami-0389ad11deded3672", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -1661,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004a1a6e3c05435f2", + "ami_id": "ami-0462df4b73de7579d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1677,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ce600efcaed6750", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-047c8e0897e5314b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1693,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac7d5e071a0d2132", + "ami_id": "ami-0a81c0a83bb668361", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1709,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0753dd673595282ec", + "ami_id": "ami-0d3136ac75651b997", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1725,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099e7645033687302", + "ami_id": "ami-0f82739387cc61d9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1741,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0082600b28c0937ea", + "ami_id": "ami-042324da57640dfdd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1757,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dbfb3aadbd4a99b", + "ami_id": "ami-0e6cbc272940831f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1773,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0436b4f133027151e", + "ami_id": "ami-01e72381e368b0d08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1789,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0046b78f3d217dbaf", + "ami_id": "ami-0bc7d87111086bf5a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1805,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039dbc83cb3cc99d1", + "ami_id": "ami-0dabf4ad9223de7fd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1821,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d74f325e9e8c960", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-00908b6f0ca6b8449", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1837,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db352d4c4bffb9ff", + "ami_id": "ami-060045cfda216c160", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1853,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dcdae7ef970b1c9", + "ami_id": "ami-046702f8466972cbd", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1869,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046eec6dcc032951f", + "ami_id": "ami-0e9bbac871297b999", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1885,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00908b6f0ca6b8449", + "ami_id": "ami-0db9872c6eaa3a815", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1901,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084dc0a7c3d666d13", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-063789013abf26730", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1917,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0705cab03e460d57c", + "ami_id": "ami-08eaff3bc67fe70a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1933,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7f425903cf63e33", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0436b4f133027151e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1949,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7786786fe4758b0", + "ami_id": "ami-09148feaa6d5ec3e8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1965,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f94fdd33e7f5de96", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-019541e6061506a58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -1981,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088909c9eda920029", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-09b075a306df8edf5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -1997,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f8c816f83b4e908", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "ami_id": "ami-0f20c22153258436e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2013,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b721ff07f9efb8e3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00e357c76ca541c4b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2029,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5256a44c5f2c84c", + "ami_id": "ami-02c0732b156c152dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2045,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc2d65f77136f413", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-04ec9db38e738bf73", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2061,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc1d81975360d48d", + "ami_id": "ami-0b59ccb0196d777aa", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2077,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063e23f296014e220", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00e5908fba012e7f4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2093,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efc18b7dffea427c", + "ami_id": "ami-0e64458e001aaed91", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2109,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe84348836e86528", + "ami_id": "ami-036a528c48d399002", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2125,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00620e7039e24f627", + "ami_id": "ami-0d34a1abb175369a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2141,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08559c15d6cee34f6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "ami_id": "ami-01be03a945dc22ab1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2157,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c954c4a8f788a01c", + "ami_id": "ami-01c83172ce92dd054", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2173,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fcc08bf8ad7f6b15", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-0456319537f57aa7d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2189,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f371232226bb6082", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-04312e1c7c02a9cfd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2205,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5b09a10c0da7f4b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-077617eb66bea8aef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2221,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eca73621de261bc7", + "ami_id": "ami-0c2488d7caf259888", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2237,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddad980bde1804b8", + "ami_id": "ami-02b0ecd1cdd117782", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2253,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe358e53f82a8c85", + "ami_id": "ami-0e27a0109a69c41de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2269,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0442c9ec2241a17c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ac03f5b2010ec3cc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2285,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0daa280e235cc6fe4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-07d57ba42afc2480e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2301,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0832c96044d8fb8f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f406febf050b2be7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2317,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adde54a430c4d9d5", + "ami_id": "ami-0d8541df7c4019d4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2333,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01554416962c6f4d8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f93dda657057e69d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2349,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b037ac830be0c6c0", + "ami_id": "ami-0c6a9158aa626dba6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2365,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dabf4ad9223de7fd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-08ac772549f99618a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2381,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b74f90d3450c7f26", + "ami_id": "ami-0fd1988382410a3ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2397,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c692702639f24822", + "ami_id": "ami-0cd2d32d54e63bad9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2413,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02835d3987b24ee25", + "ami_id": "ami-0fb7155274bc86463", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2429,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0ddffb9335092ee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "ami_id": "ami-050934097a0406153", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2445,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0228a9458b49bb3ae", + "ami_id": "ami-0916b81dec41e8439", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2461,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075ab698e58809adf", + "ami_id": "ami-0b6004a44fdc74a35", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2477,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6004a44fdc74a35", + "ami_id": "ami-0efc18b7dffea427c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2493,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6754bc2a4480898", + "ami_id": "ami-020aef113eab9b51b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -2509,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeb80a4156630c92", + "ami_id": "ami-0ca5eec43a3c8a7c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2525,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0389ad11deded3672", + "ami_id": "ami-0553ab065ddf2ea93", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2541,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0232f6e56663ccfe7", + "ami_id": "ami-07f008a35e2a8719b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2557,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03da3ed017803e662", + "ami_id": "ami-08acacfa9131b522f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2573,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2b70524180e4898", + "ami_id": "ami-0fb7f704dc09d0298", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2589,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce1fe69e89d17f07", + "ami_id": "ami-09aba16aed0e0527a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2605,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0a05cb4cfb171e4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b721ff07f9efb8e3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2621,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05973eca7aa7b4efa", + "ami_id": "ami-03f8c816f83b4e908", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2637,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0723cb839f52c565a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-073e95f5775448467", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2653,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e098af3e3f0d91ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-027c02ffc76613757", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2669,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064f5c47b0e474f6d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-04bcc5b9171c3b1d5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2685,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dbe138679ac3bfa", + "ami_id": "ami-068fe397596d6b6da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2701,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee158db08e332459", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-0fe11a6345effa36e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2717,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a66c91850c66574b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0574d80968ba80397", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2733,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a4f0e6e1f32900f", + "ami_id": "ami-06da6bfa5237b3b04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2749,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e64458e001aaed91", + "ami_id": "ami-0805fdc84ba2bdda3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2765,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f75793bfdb8aa13", + "ami_id": "ami-0f600b7a4ebf11fed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2781,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c26ce0ba637b9a22", + "ami_id": "ami-09e8743356b99715e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2797,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfdfc44db41b87fc", + "ami_id": "ami-0b58dfc91341fa442", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2813,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ab24bbb70d8b23d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-017ede7e92635cf04", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2829,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c6d5aefc9933861", + "ami_id": "ami-0c692702639f24822", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -2845,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0873413815ac8c38b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "ami_id": "ami-0f5714609df13b62d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2861,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f099c9265d3d90c8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-013ded8ce64914665", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2877,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01414a40d3f08395c", + "ami_id": "ami-05bc90d7266ab64ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2893,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe11a6345effa36e", + "ami_id": "ami-0ed65c0b4a3b66422", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2909,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e9305c66b41c9fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "ami_id": "ami-0f371232226bb6082", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2925,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cbb0eae2ca41830", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "ami_id": "ami-0a805a9196121716a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2941,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afa78f916510d153", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-06c74fd7164eb2a17", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2957,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f77ee258db76e03", + "ami_id": "ami-0f8b053b39e69c124", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -2973,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb4a4c49d8776bf6", + "ami_id": "ami-02401843697b6d38d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -2989,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bec3a69b11bed084", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0207b449cca120aa4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3005,6 +3226,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -3021,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03db9a95d864cfdac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "ami_id": "ami-09cd9d6a67df66692", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3037,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f008a35e2a8719b", + "ami_id": "ami-085591ae4e7acca7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3053,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096033d61c54d8883", + "ami_id": "ami-0148ec4ce7b2e778d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3069,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019b734d52f197cce", + "ami_id": "ami-01d71e17deb36892f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3085,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b946efcbdc28539d", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-084851ebc7d878072", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3101,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cd9d6a67df66692", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-0fe358e53f82a8c85", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3117,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfbbbeae8a824c11", + "ami_id": "ami-0599d33a98016cbe8", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3133,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c04fcf64c472279", + "ami_id": "ami-0a87009f0feb55461", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3149,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045da0d23092e20ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-0d79b8fde4a8f1676", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3165,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085f89cd8c5c89ab0", + "ami_id": "ami-03c12dd9b13807975", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3181,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f31d8bfa05cc350d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-022295e546b59333b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3197,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5ac61f6aa489c08", + "ami_id": "ami-05c66ee3525387029", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3213,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085ab67f452b399d7", + "ami_id": "ami-036ad77c354ee3333", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -3229,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ee453037e4e97a5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-011fef725a25ff7a5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3245,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c009871e78855285", + "ami_id": "ami-0809d3be1011aa17f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3261,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7e1fce442000545", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "ami_id": "ami-0740b4c301cfedbd4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3277,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0916b81dec41e8439", + "ami_id": "ami-04e3e11d9f131d824", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3293,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042324da57640dfdd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-08559c15d6cee34f6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3309,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0223e3b6d3e67468e", + "ami_id": "ami-0095d83a17698997d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3325,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056a928863cf3c6c9", + "ami_id": "ami-01f3d2f54144d316b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3341,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026db6a79606756a0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "ami_id": "ami-07d6f6684306e684c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3357,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5af998c09b32851", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ac0fc7bab1f6138d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3373,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7242934eb3a5e1a", + "ami_id": "ami-09b86f4594b637b09", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3389,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1fc0b4ec0390433", + "ami_id": "ami-00492b130acbd6ea2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3405,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce73636e2170c34a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-094b7acecbac6e096", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3421,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f600b7a4ebf11fed", + "ami_id": "ami-0db3ee60408ef609d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3437,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0229e0df571dd99f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e6458482e7be4a3e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3453,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020aef113eab9b51b", + "ami_id": "ami-0ca3a36d9151a661f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3469,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd11ec8e6bd18436", + "ami_id": "ami-0f5c4a6e3c3810b9c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3485,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e52a99799bce9f0a", + "ami_id": "ami-0fc00f006d9fe9868", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3501,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b60459f92338977", + "ami_id": "ami-04a97d3577cbe1528", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3517,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed65c0b4a3b66422", + "ami_id": "ami-0ac7ac46d94814110", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3533,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004b26418fcae5e64", + "ami_id": "ami-0ea24f23e4345e18d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3549,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ca626b1c428c97a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-06a2daff1eeff46d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3565,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054df5b49d946367d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-0dd11ec8e6bd18436", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3581,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011198dcc8e12ac45", + "ami_id": "ami-0d4e40888a0015687", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3597,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b075a306df8edf5", + "ami_id": "ami-0a66c91850c66574b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3613,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a97d3577cbe1528", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-0fcc08bf8ad7f6b15", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3629,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fc2f572396264e8", + "ami_id": "ami-0646cce9bdafca793", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3645,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b589cbaf7bd86aa4", + "ami_id": "ami-07fb52755159150ef", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3661,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053a2ccb39a3e43bc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c6f282ef518def68", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3677,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df09464426ec4dc1", + "ami_id": "ami-0a1b4cad89150ec69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3693,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b88ec6cc70aae19c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-0d5b09a10c0da7f4b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3709,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050934097a0406153", + "ami_id": "ami-0b88ec6cc70aae19c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3725,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070c0a6849979281a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ee158db08e332459", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3741,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf3ba5a12277407f", + "ami_id": "ami-064ac710aa70382b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3757,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc6c2d316fc278b2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "ami_id": "ami-0ad1c6acc9c4c8269", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3773,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd6e7f170c3b0a83", + "ami_id": "ami-0e6f00def2aa55366", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3789,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bf0b2cf221ef68b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b58f964512709f4f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3805,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adc1f99119b7d3b8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "ami_id": "ami-053a2ccb39a3e43bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3821,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec79279a29a8ec9e", + "ami_id": "ami-0fe84348836e86528", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3837,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0805fdc84ba2bdda3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-0a6571e14f6e08e83", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3853,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039c613ab790476c2", + "ami_id": "ami-0c2e7a0dcfdc867ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3869,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db3ee60408ef609d", + "ami_id": "ami-0d496040cbe8beb96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3885,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00127c47a2c4dde86", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a676ff4e1186ea2e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3901,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01202f1a903fe40cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-060d3c7d324123cb5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3917,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc7d87111086bf5a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "ami_id": "ami-0f84b0ac032fe87c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3933,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccd2313c236dc039", + "ami_id": "ami-089b5b483fb003b5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3949,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da1d2a45747c8645", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0a79c1ffd796c6b56", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3965,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeabe06e7229da0b", + "ami_id": "ami-0e8c7f811683071c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -3981,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c12dd9b13807975", + "ami_id": "ami-06f0a6a7bfa719404", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -3997,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05de407ebd4a0134f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "ami_id": "ami-0b95ed63754d0b513", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4013,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbf25fc26f526500", + "ami_id": "ami-0940b059b7842e271", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4029,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c549d12f187a6aa4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02f5ca392839cadd5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4045,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01033a91b8bd482da", + "ami_id": "ami-07c00b3e5f77f0b0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4061,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d2402db66b8a70b", + "ami_id": "ami-0997beec2db707144", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4077,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01be03a945dc22ab1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05aaf8d120c88f426", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4093,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a87009f0feb55461", + "ami_id": "ami-085f89cd8c5c89ab0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4109,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02edab3e50a37d507", + "ami_id": "ami-08d5c49f45e9e04ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4125,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d71e17deb36892f", + "ami_id": "ami-0228a9458b49bb3ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -4141,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0419ac1e3212f68c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "ami_id": "ami-06b6655def9934c3b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4157,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054918bdd6d48ee6b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "ami_id": "ami-0eb9d4b5121353d24", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4173,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b82febd6dfd14d5a", + "ami_id": "ami-066e09c7e87350ab5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4189,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0c7ad40d0336284", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "ami_id": "ami-00127c47a2c4dde86", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4205,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f99fec80f37614f3", + "ami_id": "ami-05f75793bfdb8aa13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4221,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c93ae5b2550d506", + "ami_id": "ami-0aef9e7273cc1787f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4237,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c00b3e5f77f0b0a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-0c26ce0ba637b9a22", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4253,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebf81db963958e80", + "ami_id": "ami-06fc1dd5e8ebe7b2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4269,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019541e6061506a58", + "ami_id": "ami-05d2402db66b8a70b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4285,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fb6e6ad139f7325", + "ami_id": "ami-03db9a95d864cfdac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4301,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014f743fd4b00b712", + "ami_id": "ami-046eec6dcc032951f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4317,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d2d2bc0ed4ff056", + "ami_id": "ami-0655656ce39d7d284", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4333,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7167f9812ea2b84", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-0f23ed8ea28206cfd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4349,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0065360f1961b6e40", + "ami_id": "ami-0c7344f8180584eec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4365,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046702f8466972cbd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "ami_id": "ami-0a8cb8c9d817751fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4381,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0655656ce39d7d284", + "ami_id": "ami-02fda67c5f2c46503", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4397,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9b169a633850510", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-07557bf2405fb1920", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -4413,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046dbe01842e3e1af", + "ami_id": "ami-0cfdcc756b36932c1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4429,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac7ac46d94814110", + "ami_id": "ami-0eaac324abf435acc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4445,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd250104e8af564b", + "ami_id": "ami-06652bbd9b22d165a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4461,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057b8fbbc0d7680dc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-0b8ab75554bbc49b8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4477,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab1de1caff9e7bd5", + "ami_id": "ami-0227962726a8f82b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4493,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048f8e6cdddb169b2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0a2853be5699775f0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4509,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d90424584e1a98b7", + "ami_id": "ami-063e23f296014e220", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4525,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088625a2459ddda83", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "ami_id": "ami-0fef5e24cb978a4af", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4541,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068fccacca64e6257", + "ami_id": "ami-04561404ff8c40c07", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4557,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6badf13cd11b6be", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-0719fcca58fcd0914", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4573,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1d40d913fc8ff79", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08a9f05cfb7286276", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4589,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0075234132a30cc23", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09b882bd8b4d77539", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4605,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f59cb2f1f3acda24", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09165fd045596bdc3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4621,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bde37933a37724a5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02825caadcc66f9b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4637,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0056973be3a2b30e9", + "ami_id": "ami-05e278cf19457822c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4653,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0336d57a3a869f371", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06da7e440db2db384", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4669,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c0ceb6509c59a06", + "ami_id": "ami-01899fc26e20e89fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4685,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040e11e5688282684", + "ami_id": "ami-072f7337983b5901e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4701,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f5ca392839cadd5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07714af66252e26ae", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4717,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02954750115bea5e4", + "ami_id": "ami-0a58c750ebd258132", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4733,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068ba8d9dfbad7985", + "ami_id": "ami-05e73ca67e2556372", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4749,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a8c1fc182bf7b93", + "ami_id": "ami-02593a93af1201ff3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4765,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c911389dc52da40", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-072bd52b06be9bb98", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4781,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1c5c8a23ace8b77", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-050fd5f175c76a788", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4797,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b27b2b8fc3a45565", + "ami_id": "ami-0fdd0a12ee317138b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4813,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036ad77c354ee3333", + "ami_id": "ami-09b9caa51c2c55f78", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4829,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cd879d458b963ec", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-0046b78f3d217dbaf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4845,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c002fab83af89e9", + "ami_id": "ami-0229e0df571dd99f5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4861,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3cbe242bbb97c59", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "ami_id": "ami-034860fe12b12f208", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4877,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7457fbc5691830e", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "ami_id": "ami-035ba047993b45a9d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4893,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae4e25664d7c808e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "ami_id": "ami-0e8f804e8607cbacd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4909,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2a80d540619a14d", + "ami_id": "ami-04a9ff9c319b9d967", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4925,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01816b7728f85991c", + "ami_id": "ami-05d8ed53ffc430958", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4941,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0074f354cc04746c9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-09783489e9feb7553", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -4957,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edf6a9ce77731758", + "ami_id": "ami-0440825e9e89063cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -4973,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2e7a0dcfdc867ec", + "ami_id": "ami-09ca1d465a58cbb27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -4989,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b7a8708009adad4", + "ami_id": "ami-0eb3df507f78317a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5005,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e27a0109a69c41de", + "ami_id": "ami-05cc2b0c3b4ced4ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5021,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03da242704097cb6f", + "ami_id": "ami-09922665d293be30b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5037,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b58f964512709f4f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-048f8e6cdddb169b2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5053,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca86c69976ae0076", + "ami_id": "ami-0b589cbaf7bd86aa4", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5069,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a44926d228376cb", + "ami_id": "ami-0753dd673595282ec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5085,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd2d32d54e63bad9", + "ami_id": "ami-0814847b6aee107e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5101,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089066cc869d12c1e", + "ami_id": "ami-0effac6b83182b49e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5117,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdcbaa785ec70cc4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce1fe69e89d17f07", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5133,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017ede7e92635cf04", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b5256a44c5f2c84c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5149,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4bcac5b8a1a74df", + "ami_id": "ami-0ef37f6ce2254489a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5165,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0139886c07cf035e5", + "ami_id": "ami-01414a40d3f08395c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5181,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfcee284128d7484", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "ami_id": "ami-0e4e750e80cf02fd1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5197,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064ac710aa70382b8", + "ami_id": "ami-03890b96f479bac7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5213,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fceb58c1b4b2cf52", + "ami_id": "ami-07f06bccad1e45cbd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5229,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0051ae2c97c29fe86", + "ami_id": "ami-0ddad980bde1804b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5245,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025254f22f832c819", + "ami_id": "ami-08e36c6f80c61adc9", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5261,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041098e759b954fa2", + "ami_id": "ami-065779e1b6fabf4f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5277,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f84b0ac032fe87c1", + "ami_id": "ami-00620e7039e24f627", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5293,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079bedbc7456da147", + "ami_id": "ami-08cbb0eae2ca41830", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5309,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0860fe11497cef275", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "ami_id": "ami-0c549d12f187a6aa4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5325,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3b8fb7fefbdabf4", + "ami_id": "ami-0e7457fbc5691830e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -5341,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb3df507f78317a0", + "ami_id": "ami-0f3cbe242bbb97c59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5357,15 +5725,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b0ecd1cdd117782", + "ami_id": "ami-004a1a6e3c05435f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5373,15 +5742,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022295e546b59333b", + "ami_id": "ami-0405571f8867736f2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5389,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0225d13b7af0a608a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0336d57a3a869f371", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5405,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dab39fda213f015a", + "ami_id": "ami-0edda5f279da5fca3", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5421,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2e0bc2b4eef0b11", + "ami_id": "ami-0ff7220bf17ebf114", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5437,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0599d33a98016cbe8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0442c9ec2241a17c0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5453,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad1c6acc9c4c8269", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0cea675aa16cf8535", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5469,15 +5844,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f20c22153258436e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-0fdcbaa785ec70cc4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5485,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d34a1abb175369a4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "ami_id": "ami-0ea64dcf73361bab9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5501,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ecda2a22338eefb", + "ami_id": "ami-0c159c8ff1bdee965", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5517,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006cf6c1a6ec4f004", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-070d3381dee107ee3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5533,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0296587cc901aa044", + "ami_id": "ami-0e098af3e3f0d91ca", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5549,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b50d91d7111a4f58", + "ami_id": "ami-0143dc65b79da4711", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5565,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087d90aa9866bc0bb", + "ami_id": "ami-09bc8c5a624aa4a75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5581,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f457bed50f529b4c", + "ami_id": "ami-0aff2aa43e6de2952", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5597,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006b36b5da1fb46ff", + "ami_id": "ami-06d42a87c6a0417b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5613,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c49cff23c3bfa159", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-03100109be590f255", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5629,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047a2531eab0f2264", + "ami_id": "ami-0acf0a68a220f7664", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5645,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0095d83a17698997d", + "ami_id": "ami-0f59cb2f1f3acda24", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5661,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073258fb4096a768c", + "ami_id": "ami-045da0d23092e20ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5677,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f97cfbd77bfcf7c", + "ami_id": "ami-092c4a5ff56117861", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5693,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3bd21e203b8f8b8", + "ami_id": "ami-0dafe5f8bab15095f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5709,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067042e26172e42a1", + "ami_id": "ami-0ae4e25664d7c808e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5725,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009a9488082facf0b", + "ami_id": "ami-0f7283ce231b83bca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5741,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3f4c19cf57a9d4d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e827b837b39bb880", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5757,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ef49112da227b34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-053dd28cf0e34b5b8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5773,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fb52755159150ef", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c2b70524180e4898", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -5789,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0066fa129db04769f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03966c2ae0324d989", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5805,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0871563b4e587bdf8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b31d7230653e52c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5821,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a9ff9c319b9d967", + "ami_id": "ami-0de4510073449d2d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5837,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe8abb862e19bf05", + "ami_id": "ami-0871563b4e587bdf8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5853,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5714609df13b62d", + "ami_id": "ami-0f75e494bfe30681d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5869,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d57ba42afc2480e", + "ami_id": "ami-087d90aa9866bc0bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5885,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b6fea0622334cbc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0960070905aec20ab", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5901,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f82739387cc61d9a", + "ami_id": "ami-0b5c01f009620751c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5917,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0997beec2db707144", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-020b84e67260c2e73", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5933,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0456319537f57aa7d", + "ami_id": "ami-0ad63b75e1347c2fe", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5949,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a350a1841e23dbfc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-0bb1e112d9a8e8f8b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5965,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8afda721d65aa23", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-083dd118fec772a77", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -5981,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094b7acecbac6e096", + "ami_id": "ami-0ccf638620142bee5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -5997,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed658f92d628f3c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "ami_id": "ami-0eca73621de261bc7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6013,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c6033c968739b8e", + "ami_id": "ami-0cbf25fc26f526500", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6029,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083dd118fec772a77", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0743e96a2c2e580fa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6045,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fc1dd5e8ebe7b2c", + "ami_id": "ami-09396b6842514cd5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6061,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052399d4ee86efabf", + "ami_id": "ami-0caca59f00a76c476", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6077,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfaa04619d92bc85", + "ami_id": "ami-030ca340ffd85d8fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6093,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0227962726a8f82b5", + "ami_id": "ami-0a9c41c98a16f7ca1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6109,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084851ebc7d878072", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-0b4db7a260de79b1c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6125,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6aa42ecdecb47e3", + "ami_id": "ami-064f5c47b0e474f6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6141,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d8ed53ffc430958", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "ami_id": "ami-0c5650e39ef42abbb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6157,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e8743356b99715e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-005d33d0c1b95cfef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6173,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb9d4b5121353d24", + "ami_id": "ami-022566dddf008e532", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6189,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02363c81cfa40825d", + "ami_id": "ami-0f12993567244763e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6205,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0982d6a6c91a1000d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "ami_id": "ami-04d3f0deebbedc7b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6221,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a805a9196121716a", + "ami_id": "ami-076f55d969d0a5157", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6237,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edda5f279da5fca3", + "ami_id": "ami-0d61a44af310a57c3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6253,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073e95f5775448467", + "ami_id": "ami-0419ac1e3212f68c0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6269,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09118aaf16d1c4d28", + "ami_id": "ami-059c6c551dd9863b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6285,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05890c90bce77ea18", + "ami_id": "ami-06975bf5e41e950a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6301,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096a8e7ab2966ea2c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-038bcab9a12458aa8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6317,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0099f366deb519272", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-0e64605e340959e8d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6333,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0022311de5d53f507", + "ami_id": "ami-0e0c7ad40d0336284", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6349,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077b923fe2da195d2", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-0c45418a6cb7c66e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6365,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056eb80c75b9cb4ad", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01033a91b8bd482da", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6381,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4db7a260de79b1c", + "ami_id": "ami-0fceb58c1b4b2cf52", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6397,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03549a9e03c51faa3", + "ami_id": "ami-0022311de5d53f507", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6413,15 +6847,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0effac6b83182b49e", + "ami_id": "ami-026db6a79606756a0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02edab3e50a37d507", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6429,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4ab80af7a5e4931", + "ami_id": "ami-0435de7a031e28f2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6445,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fba4f664bc6cdda", + "ami_id": "ami-0928eed5248d95245", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6461,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064267ac6d123e32a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-089066cc869d12c1e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6477,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b6655def9934c3b", + "ami_id": "ami-0d4cbf7ac9e50ac33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6493,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c159c8ff1bdee965", + "ami_id": "ami-0beba7464c885884b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6509,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9038b3bcc792b88", + "ami_id": "ami-0128aeac9b6caf31e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6525,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0948be2e45d0c17a4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-04d27f6b80e3c0c9e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6541,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083683b02dae0969f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "ami_id": "ami-071b1aca06a129d18", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6557,6 +7017,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -6573,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d6f6684306e684c", + "ami_id": "ami-0d2a80d540619a14d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6589,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdc4e3b9f29753d4", + "ami_id": "ami-0c009871e78855285", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6605,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07aca577b1d1cde34", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ba27c82b7e4ee839", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6621,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09922665d293be30b", + "ami_id": "ami-047a2531eab0f2264", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -6637,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09165fd045596bdc3", + "ami_id": "ami-08490cd17bff0e91e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6653,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e3e11d9f131d824", + "ami_id": "ami-068fccacca64e6257", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6669,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077617eb66bea8aef", + "ami_id": "ami-092e955e0aab34f0c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6685,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072f7337983b5901e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08aa0edcee1a801cd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6701,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3fd243f358278e5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fa9d98464f0924e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6717,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b14f27c58367198", + "ami_id": "ami-09de542d5dc136db6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -6733,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068fe397596d6b6da", + "ami_id": "ami-0c3e0ce158dbf88cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6749,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02528cdc549c24f60", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03c1c6fb8bb016a41", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6765,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04312e1c7c02a9cfd", + "ami_id": "ami-0b7cf670d234eb989", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6781,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0218028f91a839fd6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "ami_id": "ami-039dbc83cb3cc99d1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6797,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031d3ecce9972aeb8", + "ami_id": "ami-0609e1ddf4bc38cce", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6813,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a676ff4e1186ea2e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "ami_id": "ami-0af5451fda0cd133b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6829,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9d673de7b1fcd07", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-0f2e0bc2b4eef0b11", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6845,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb1926bb89187326", + "ami_id": "ami-033dcb1097fb79e72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6861,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb1b2ee3ea3612c8", + "ami_id": "ami-05b8de82405e5962f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6877,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02825caadcc66f9b9", + "ami_id": "ami-088fc486cfd5e82f1", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6893,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f2b322c4ab92f0b", + "ami_id": "ami-037c2ba023b2e21e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6909,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072bd52b06be9bb98", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02e1f3e4b4d743f05", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6925,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a27c8fabe05e43ae", + "ami_id": "ami-03da242704097cb6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6941,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b882bd8b4d77539", + "ami_id": "ami-09f77ee258db76e03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6957,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066f0f264303c7eb4", + "ami_id": "ami-0adde54a430c4d9d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -6973,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005c2446cad6a1115", + "ami_id": "ami-00f2b322c4ab92f0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -6989,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0707be9dca5ada5f9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ffa2253579ddf642", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7005,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e068b334b2c0c3bd", + "ami_id": "ami-00c93ae5b2550d506", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7021,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f23ed8ea28206cfd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-0832c96044d8fb8f9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7037,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050fd5f175c76a788", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-096033d61c54d8883", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -7053,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060d3c7d324123cb5", + "ami_id": "ami-054df5b49d946367d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7069,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0756ff8010bdf6d25", + "ami_id": "ami-0e1fc0b4ec0390433", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7085,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099e8cb0dc798cc6e", + "ami_id": "ami-01514839c2c4e4e62", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7101,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026285a14ff319dce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f62d3da7974bbd0c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7117,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035bf2ffed05ab186", + "ami_id": "ami-0e7e1fce442000545", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7133,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03890b96f479bac7b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f3bd21e203b8f8b8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7149,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5e43c50a9cba805", + "ami_id": "ami-0d6f1ecf0ee81c7f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7165,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0285907a9d6121832", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0232f6e56663ccfe7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7181,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069e0ec398cb414f9", + "ami_id": "ami-0e068b334b2c0c3bd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7197,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfb6c5931199f88b", + "ami_id": "ami-0d7ddac2ee2ab9776", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7213,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018c2d9f5a157dfca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-0fc2d65f77136f413", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7229,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f96d1e35be3eacd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-09636a4201b25bfa7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7245,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d27f6b80e3c0c9e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "ami_id": "ami-0f7167f9812ea2b84", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7261,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06975bf5e41e950a0", + "ami_id": "ami-09c6a3a7cb863f585", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7277,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085591ae4e7acca7f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09f96d1e35be3eacd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7293,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c25e07df809e65f", + "ami_id": "ami-090399ac71b4f877e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7309,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca5eec43a3c8a7c6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-012b53075feba25af", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7325,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0250cc14c3753bbf6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ece5708c798d4439", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7341,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b91e4b7e7d334bd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0ee5ef2135fd3646b", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -7357,15 +7867,492 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09431a8730aecdc56", + "ami_id": "ami-00c1c7bfde20d24bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03403b9acdbd91db3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02835d3987b24ee25", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07d73b57c936987f7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04323404ffe8620e5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a7786786fe4758b0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05fb6e6ad139f7325", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f6ed4345b1dc71b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-040db8a3c24d481e5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f60bab3cf73e49be", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-031d3ecce9972aeb8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f6f499ae819b47b9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06dfd4b0ff13189f8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-083683b02dae0969f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fd250104e8af564b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00d7a5ed450394c75", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d2243150984e3c72", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0cfbbbeae8a824c11", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0066fa129db04769f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b946efcbdc28539d", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-004c1c4affec9ac6d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d558dac560461627", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03a4f0e6e1f32900f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09c911389dc52da40", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fa8cda151576d7e0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a03e5f318f26b868", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e99a7667a39df9eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04b7a8708009adad4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04c002fab83af89e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7373,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02401843697b6d38d", + "ami_id": "ami-08668ef764bf2ebbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7389,15 +8377,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07920be66ff9ab12e", + "ami_id": "ami-0b0afdbede0d3a639", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-099e7645033687302", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7405,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095444619c0c26768", + "ami_id": "ami-0a5fe51ac5c9b44cf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7421,15 +8428,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b31d7230653e52c0", + "ami_id": "ami-02adea1bfb248a5eb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0705cab03e460d57c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06a69f47addba1694", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7437,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c012b8786c68459f", + "ami_id": "ami-0f70d9db2641ba628", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7453,15 +8496,186 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0006ad3c9d8f47476", + "ami_id": "ami-0a5ac61f6aa489c08", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0094876a49c99565c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0707be9dca5ada5f9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02528cdc549c24f60", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-005c2446cad6a1115", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0569dddfbb364d185", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0139886c07cf035e5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0982d6a6c91a1000d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01c6033c968739b8e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0dc6c2d316fc278b2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "owner_id": "296569632912", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-079bedbc7456da147", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7469,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ece5708c798d4439", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a0767dbb1cc650cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7485,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03966c2ae0324d989", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-0c09a1d3d61d6f822", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7501,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a56400951367b56c", + "ami_id": "ami-02a51fd6b6beaa671", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7517,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09636a4201b25bfa7", + "ami_id": "ami-0f31d8bfa05cc350d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7533,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06124641eb61852ab", + "ami_id": "ami-057b8fbbc0d7680dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7549,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0307d6b15003104d5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-05bc751b2ec2f2774", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7565,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aef9e7273cc1787f", + "ami_id": "ami-08d67ef6693ed065a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7581,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012b53075feba25af", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b27b2b8fc3a45565", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7597,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8541df7c4019d4b", + "ami_id": "ami-0d293838e38b77a2b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7613,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e32397b123bb9a5b", + "ami_id": "ami-0b7242934eb3a5e1a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7629,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8ab75554bbc49b8", + "ami_id": "ami-01202f1a903fe40cc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7645,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05552972562c01c6e", + "ami_id": "ami-0d9d673de7b1fcd07", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7661,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063789013abf26730", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-090a99c11f5073c73", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7677,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbf6c12ee27a965b", + "ami_id": "ami-0a27c8fabe05e43ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -7693,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd7d66e9e082a69b", + "ami_id": "ami-01ee453037e4e97a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7709,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec16ab8ad44d7d4e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-068ba8d9dfbad7985", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7725,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f60bab3cf73e49be", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "ami_id": "ami-0a004d9e720e1c714", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -7741,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011fef725a25ff7a5", + "ami_id": "ami-03ec09ad05fd3ead5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7757,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083c917e8a7a87e6a", + "ami_id": "ami-05bc04a6fb844d988", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7773,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0094876a49c99565c", + "ami_id": "ami-0b075b1c43296fc81", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7789,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05279f784fa36b353", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-0a4bcac5b8a1a74df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7805,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d5c49f45e9e04ea", + "ami_id": "ami-05279f784fa36b353", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7821,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04323404ffe8620e5", + "ami_id": "ami-0d90424584e1a98b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7837,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072db6dac767a3c0a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ac7d5e071a0d2132", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7853,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c422356ab118f472", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-0eeabe06e7229da0b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7869,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0001e0d7704c1248b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-0d27762d4b8f65aa0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7885,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f21fb520b13966a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01554416962c6f4d8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7901,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4af8d1701cd6856", + "ami_id": "ami-0225d13b7af0a608a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7917,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbdffe5bf78ff0fa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-05a8c1fc182bf7b93", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7933,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fda67c5f2c46503", + "ami_id": "ami-0bde37933a37724a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7949,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014f111b964a35d3f", + "ami_id": "ami-00172981004835fc4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7965,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0283dd419ed66f874", + "ami_id": "ami-0264e3e92e711246b", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -7981,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0207b449cca120aa4", + "ami_id": "ami-0056973be3a2b30e9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -7997,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0462df4b73de7579d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0074f354cc04746c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8013,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb7f704dc09d0298", + "ami_id": "ami-08c25e07df809e65f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8029,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c83172ce92dd054", + "ami_id": "ami-06125ec31bd6f9307", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8045,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b4e690cb1a85441", + "ami_id": "ami-0cb9d73b51e14968f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8061,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad63b75e1347c2fe", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-0099f366deb519272", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8077,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0d61a44af310a57c3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + }, + { + "ami_id": "ami-0084c0bfca76b2331", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8093,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d67ef6693ed065a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e8165570a3ce4385", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8109,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ffc67b549f9341d", + "ami_id": "ami-07dbcff8a3d2d962a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -8125,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b590fec6f2b2ef45", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-0082600b28c0937ea", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8141,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064604e799ec0c325", + "ami_id": "ami-02fd7e2004d71774e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8157,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1b4cad89150ec69", + "ami_id": "ami-070c0a6849979281a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8173,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a88ae49ace865228", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "ami_id": "ami-0f65564222188f9cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8189,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05aaf8d120c88f426", + "ami_id": "ami-06d74f325e9e8c960", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8205,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1d5e0bea74d1ee4", + "ami_id": "ami-05f21fb520b13966a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8221,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079bf229a62773791", + "ami_id": "ami-018c2d9f5a157dfca", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8237,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5c01f009620751c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0bfcee284128d7484", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8253,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01387399b588ca25f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-05b14f27c58367198", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8269,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088fc486cfd5e82f1", + "ami_id": "ami-0f41bcc79444364e6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8285,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03100109be590f255", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dfdfc44db41b87fc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8301,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045de08f8b268a459", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-019bb34f38825ef36", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8317,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9c41c98a16f7ca1", + "ami_id": "ami-097ae7329e03a3ed8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8333,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09148feaa6d5ec3e8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00ef49112da227b34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8349,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00eaa38079759a429", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a88ae49ace865228", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8365,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030ca340ffd85d8fa", + "ami_id": "ami-0728d1df74ac629d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8381,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bdfc863c3ee3fb8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-05666bf8b53783fdb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8397,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f406febf050b2be7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-0df09464426ec4dc1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8413,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b76d6f72ac624f4f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "ami_id": "ami-0ec79279a29a8ec9e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8429,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6cbc272940831f7", + "ami_id": "ami-0bee634f8bea9aaa7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8445,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0440825e9e89063cf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "ami_id": "ami-0faa7e1d7ae7df293", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8461,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bc04a6fb844d988", + "ami_id": "ami-035bf2ffed05ab186", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -8477,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd1988382410a3ff", + "ami_id": "ami-0b82febd6dfd14d5a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8493,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0940b059b7842e271", + "ami_id": "ami-00e4b920752544050", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8509,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca3a36d9151a661f", + "ami_id": "ami-02d2d2bc0ed4ff056", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8525,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a58c750ebd258132", + "ami_id": "ami-095444619c0c26768", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8541,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09aba16aed0e0527a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "ami_id": "ami-0458b79645b391c0a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8557,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d27762d4b8f65aa0", + "ami_id": "ami-086c1bf74bdf491c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8573,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e64605e340959e8d", + "ami_id": "ami-0deb859e094c33116", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8589,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0574d80968ba80397", + "ami_id": "ami-0b037ac830be0c6c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8605,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0767dbb1cc650cf", + "ami_id": "ami-0c4b3077ca2320b90", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8621,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092c4a5ff56117861", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-09b60459f92338977", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8637,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06da7e440db2db384", + "ami_id": "ami-0b590fec6f2b2ef45", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8653,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0261d563d67c8241f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-0e50817e1e8697623", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8669,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c85689bd0b53f2ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-064267ac6d123e32a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8685,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0719fcca58fcd0914", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-0ce70d76d0f544a10", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8701,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005d33d0c1b95cfef", + "ami_id": "ami-085ab67f452b399d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8717,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f141cc319c5bb16", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-0c954c4a8f788a01c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8733,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01514839c2c4e4e62", + "ami_id": "ami-00f097003d5144452", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8749,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f005a788d16fcb7", + "ami_id": "ami-0b7f8de147adf7031", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8765,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05cc2b0c3b4ced4ab", + "ami_id": "ami-0a3b8fb7fefbdabf4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8781,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba27c82b7e4ee839", + "ami_id": "ami-0bec3a69b11bed084", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8797,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03403b9acdbd91db3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-09dbe138679ac3bfa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8813,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c34b7fc827946018", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-0948be2e45d0c17a4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8829,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c1c6fb8bb016a41", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "ami_id": "ami-05de407ebd4a0134f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8845,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086c1bf74bdf491c0", + "ami_id": "ami-0db3b39535e608fa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8861,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f37a305de1e14a70", + "ami_id": "ami-0370cbf5027580402", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8877,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b9caa51c2c55f78", + "ami_id": "ami-05fad60c6814ff04b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8893,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0569dddfbb364d185", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "ami_id": "ami-04b91e4b7e7d334bd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8909,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f036752f44831d87", + "ami_id": "ami-0f457bed50f529b4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8925,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0114d0913fcb36d9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0075234132a30cc23", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8941,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fad60c6814ff04b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-079bf229a62773791", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -8957,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b75438899db123b", + "ami_id": "ami-084dc0a7c3d666d13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -8973,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0084c0bfca76b2331", + "ami_id": "ami-0ccd2313c236dc039", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -8989,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fd7e2004d71774e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05890c90bce77ea18", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9005,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096ab629070bb4c0c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "ami_id": "ami-088625a2459ddda83", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9021,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de4510073449d2d3", + "ami_id": "ami-03da3ed017803e662", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9037,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f18f695ec6988b1e", + "ami_id": "ami-0c85689bd0b53f2ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9053,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02409854193e282ce", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0be00602579fecdc6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9069,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5c4a6e3c3810b9c", + "ami_id": "ami-025dc4761044102dd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9085,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0814847b6aee107e2", + "ami_id": "ami-0b50d91d7111a4f58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9101,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d56ee1f4b329ab86", + "ami_id": "ami-056eb80c75b9cb4ad", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9117,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a6abb4f46ff8412", + "ami_id": "ami-014f743fd4b00b712", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9133,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4e750e80cf02fd1", + "ami_id": "ami-0c6754bc2a4480898", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9149,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bf27582d11fb9720", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "ami_id": "ami-048876a49d5ff499d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9165,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb7155274bc86463", + "ami_id": "ami-0b7d6d7eb518eb295", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9181,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5650e39ef42abbb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "ami_id": "ami-00cd879d458b963ec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9197,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9bbac871297b999", + "ami_id": "ami-09431a8730aecdc56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9213,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053dd28cf0e34b5b8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "ami_id": "ami-0a5024ddb778b1c32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9229,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01899fc26e20e89fe", + "ami_id": "ami-0218028f91a839fd6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9245,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078b657d53dfe27ce", + "ami_id": "ami-03c8c635a069451e5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9261,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc8bbe3c7c4de079", + "ami_id": "ami-0d1d5e0bea74d1ee4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9277,31 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0148ec4ce7b2e778d", + "ami_id": "ami-039c613ab790476c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", - "owner_id": "296569632912", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-07d73b57c936987f7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9309,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b59ccb0196d777aa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08e45d6fe0f53bf40", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9325,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb1e112d9a8e8f8b", + "ami_id": "ami-0065360f1961b6e40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9341,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5c6f6c547429c36", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-046dbe01842e3e1af", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9357,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a5737d1cc1d3245", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0307d6b15003104d5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9373,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0740b4c301cfedbd4", + "ami_id": "ami-0ca86c69976ae0076", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9389,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09de542d5dc136db6", + "ami_id": "ami-0250cc14c3753bbf6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9405,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e11ab36ebc2556bb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0f99fec80f37614f3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9421,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f0a6a7bfa719404", + "ami_id": "ami-02fc2f572396264e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9437,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047c8e0897e5314b8", + "ami_id": "ami-03f005a788d16fcb7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9453,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d31b2cdbb4a355a3", + "ami_id": "ami-0cfb6c5931199f88b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9469,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0646cce9bdafca793", + "ami_id": "ami-096a8e7ab2966ea2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9485,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034860fe12b12f208", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-0e63d17d414ab45d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9501,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0743e96a2c2e580fa", + "ami_id": "ami-02363c81cfa40825d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9517,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02593a93af1201ff3", + "ami_id": "ami-06b86b6be19cea4ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9533,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0130ca20de5f4f47b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "ami_id": "ami-05dd84820a41332fc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9549,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e4b920752544050", + "ami_id": "ami-009a9488082facf0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9565,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b075b1c43296fc81", + "ami_id": "ami-013eb0343719d1225", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9581,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea6bd1d0260b8222", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fe8abb862e19bf05", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9597,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab4fb74c8105d577", + "ami_id": "ami-022b6233ac3257ec4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9613,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac03f5b2010ec3cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02954750115bea5e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9629,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004c1c4affec9ac6d", + "ami_id": "ami-0d4af8d1701cd6856", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9645,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ac772549f99618a", + "ami_id": "ami-0d9038b3bcc792b88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -9661,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdd0a12ee317138b", + "ami_id": "ami-014f111b964a35d3f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9677,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019bb34f38825ef36", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09fba4f664bc6cdda", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9693,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc00f006d9fe9868", + "ami_id": "ami-0ab1de1caff9e7bd5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9709,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088e3fedd97f74a5a", + "ami_id": "ami-05b6fea0622334cbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9725,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6f282ef518def68", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-01816b7728f85991c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9741,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fd1c2d24ce8afa", + "ami_id": "ami-0370558e06a2a7e9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9757,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d293838e38b77a2b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "ami_id": "ami-06a5737d1cc1d3245", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9773,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f41bcc79444364e6", + "ami_id": "ami-004d9cf5b37d20607", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9789,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037c2ba023b2e21e4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d34de56cac572082", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9805,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a69f47addba1694", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-0e8f3c79a3408509c", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -9821,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d34de56cac572082", + "ami_id": "ami-01f141cc319c5bb16", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9837,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3136ac75651b997", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-08dbb15598c24f59e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9853,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bc751b2ec2f2774", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02409854193e282ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9869,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d3f0deebbedc7b1", + "ami_id": "ami-09b4e690cb1a85441", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9885,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e77b555a40e9b084", + "ami_id": "ami-0e5c6f6c547429c36", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9901,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea24f23e4345e18d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "ami_id": "ami-064604e799ec0c325", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9917,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2853be5699775f0", + "ami_id": "ami-06fa9b1e7b193efb8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9933,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038bcab9a12458aa8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "ami_id": "ami-0c0eb85c1c72dd2de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9949,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e36c6f80c61adc9", + "ami_id": "ami-025254f22f832c819", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -9965,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a2daff1eeff46d2", + "ami_id": "ami-0223e3b6d3e67468e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9981,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b8de82405e5962f", + "ami_id": "ami-0da1d2a45747c8645", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -9997,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f26050d30975f4e", + "ami_id": "ami-05fd37eafb73a0c0e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10013,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e357c76ca541c4b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-0ea6bd1d0260b8222", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10029,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acf0a68a220f7664", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "ami_id": "ami-01c73097fff773d5e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10045,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fef5e24cb978a4af", + "ami_id": "ami-08e9305c66b41c9fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10061,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06125ec31bd6f9307", + "ami_id": "ami-093942206045cf2df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10077,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071c8cf40391f3687", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "ami_id": "ami-06f27ac17a72f4c51", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10093,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070d3381dee107ee3", + "ami_id": "ami-02713dd8052f1e4c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10109,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019c95bd761d69dab", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e52a99799bce9f0a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10125,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a5e070b8602c544", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "ami_id": "ami-067042e26172e42a1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10141,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0eb85c1c72dd2de", + "ami_id": "ami-0dbf6c12ee27a965b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10157,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9e5454c28d0b61b", + "ami_id": "ami-05bf0b2cf221ef68b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10173,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eaac324abf435acc", + "ami_id": "ami-0a4fd1c2d24ce8afa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10189,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6571e14f6e08e83", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "ami_id": "ami-0b74f90d3450c7f26", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10205,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f62d3da7974bbd0c", + "ami_id": "ami-0f099c9265d3d90c8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10221,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b95ed63754d0b513", + "ami_id": "ami-0037b54957f5d5ff4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10237,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0960070905aec20ab", + "ami_id": "ami-07ce600efcaed6750", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10253,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00bff2f230a9053e1", + "ami_id": "ami-0cf3ba5a12277407f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10269,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d558dac560461627", + "ami_id": "ami-088909c9eda920029", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10285,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076f55d969d0a5157", + "ami_id": "ami-00bff2f230a9053e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10301,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092e955e0aab34f0c", + "ami_id": "ami-0eeb80a4156630c92", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10317,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a004d9e720e1c714", + "ami_id": "ami-041d9912b3007c929", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10333,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0beba7464c885884b", + "ami_id": "ami-0c8afda721d65aa23", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10349,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0128aeac9b6caf31e", + "ami_id": "ami-0e38204d827460483", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10365,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0609e1ddf4bc38cce", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "ami_id": "ami-0eb6188d630e1874d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10381,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c91459e5972c4aa9", + "ami_id": "ami-0f6aa42ecdecb47e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10397,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccf638620142bee5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-0114d0913fcb36d9c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10413,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054e7498465522d36", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03ca626b1c428c97a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10429,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb6188d630e1874d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-0c4b4e8149ac6eaa8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10445,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e1f3e4b4d743f05", + "ami_id": "ami-03db21558f078f728", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10461,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0180bc287789e04b3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0e11ab36ebc2556bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10477,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033b23ac70781b066", + "ami_id": "ami-07ea02f29c12e5246", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10493,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041d9912b3007c929", + "ami_id": "ami-0d31b2cdbb4a355a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10509,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080e939008d487272", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "ami_id": "ami-019c95bd761d69dab", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10525,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065779e1b6fabf4f4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f7f425903cf63e33", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10541,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08aa0edcee1a801cd", + "ami_id": "ami-0e77b555a40e9b084", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10557,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa9d98464f0924e4", + "ami_id": "ami-0283dd419ed66f874", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "296569632912", "platform": null, "public": true, @@ -10573,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00126a0f28a0a3726", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "ami_id": "ami-0051ae2c97c29fe86", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10589,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035ba047993b45a9d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-03d8050eaa7dd6fc8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10605,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0553ab065ddf2ea93", + "ami_id": "ami-0bb1b2ee3ea3612c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10621,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7344f8180584eec", + "ami_id": "ami-05f26050d30975f4e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10637,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0037b54957f5d5ff4", + "ami_id": "ami-0130ca20de5f4f47b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10653,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08eaff3bc67fe70a7", + "ami_id": "ami-0c012b8786c68459f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10669,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0933defbe607203bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0a5af998c09b32851", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10685,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0740dab837b06ac8e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-0f0a05cb4cfb171e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10701,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f65564222188f9cf", + "ami_id": "ami-0a3f4c19cf57a9d4d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10717,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089b5b483fb003b5c", + "ami_id": "ami-0a6badf13cd11b6be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10733,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5fe51ac5c9b44cf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-011198dcc8e12ac45", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10749,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d84fa09117e15c9c", + "ami_id": "ami-0c1d40d913fc8ff79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10765,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022566dddf008e532", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-072db6dac767a3c0a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10781,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3770f9b874cc610", + "ami_id": "ami-0e0dcef07e08af45f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10797,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05666bf8b53783fdb", + "ami_id": "ami-00521faa394c2abe5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10813,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6f1ecf0ee81c7f3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c0ddffb9335092ee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10829,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fa2504fd40e09cd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-0cd7d66e9e082a69b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10845,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025dc4761044102dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04318a10bdbd2b7fb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10861,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073ce3cb9afb2bdc3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-00126a0f28a0a3726", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10877,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e827b837b39bb880", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-0c1c5c8a23ace8b77", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10893,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040db8a3c24d481e5", + "ami_id": "ami-0c69ea1a3a707a789", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10909,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8f3c79a3408509c", + "ami_id": "ami-073258fb4096a768c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10925,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e5908fba012e7f4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01d118d6eec8dcf9c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10941,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7ddac2ee2ab9776", + "ami_id": "ami-0c4ab80af7a5e4931", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10957,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ec9db38e738bf73", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-096ab629070bb4c0c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -10973,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e278cf19457822c", + "ami_id": "ami-09ecda2a22338eefb", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -10989,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4cbf7ac9e50ac33", + "ami_id": "ami-0756ff8010bdf6d25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -11005,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097ae7329e03a3ed8", + "ami_id": "ami-07c6d5aefc9933861", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -11021,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4e40888a0015687", + "ami_id": "ami-0860fe11497cef275", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11037,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090a99c11f5073c73", + "ami_id": "ami-02ab24bbb70d8b23d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11053,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e38204d827460483", + "ami_id": "ami-03ffc67b549f9341d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11069,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000fd114a002eff80", + "ami_id": "ami-0cdc4e3b9f29753d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11085,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c6a3a7cb863f585", + "ami_id": "ami-004b26418fcae5e64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11101,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f93dda657057e69d", + "ami_id": "ami-06124641eb61852ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -11117,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0405571f8867736f2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-0d84fa09117e15c9c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11133,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d7a5ed450394c75", + "ami_id": "ami-0fac737b1ecdff3dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "296569632912", "platform": null, "public": true, @@ -11149,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013ded8ce64914665", + "ami_id": "ami-099e8cb0dc798cc6e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "296569632912", "platform": null, "public": true, @@ -11165,6 +12593,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json b/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json index defe6ec081c2..9d85744d64f4 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-southeast-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0a7141be8733dcc63", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "ami_id": "ami-078e078761b0e1f90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07012db125f76393e", + "ami_id": "ami-0e7cf0e02ddae81a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014eadd38d307d78b", + "ami_id": "ami-0815b72d6ae880103", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0436520b1a44e0985", + "ami_id": "ami-05d6a82e749d9be41", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0809e9bb32d947d14", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "ami_id": "ami-0cbc3b9e64a28c5d6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0240730614164f057", + "ami_id": "ami-0a2bfca3c9d16280d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06765992275a897c0", + "ami_id": "ami-02130a0d56b3a5bc9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033f6315bca06b2b7", + "ami_id": "ami-05df4d758aea111df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad81f8dbc2661529", + "ami_id": "ami-0aaa6d1e08e1e271d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe0cf680737dc80f", + "ami_id": "ami-0d139487eea74515c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a230528226b1b674", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0520d85eb68d646ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c84dffba7015613c", + "ami_id": "ami-07bb1629b6821c9ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201028-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a94c144c2e133df", + "ami_id": "ami-0495c0ddc0a94a551", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0527f47693dcc8b4b", + "ami_id": "ami-09dd3a5de528aec1d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aff71c3d6ffeac86", + "ami_id": "ami-0885cc777ab62214d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b84da235be1cfcb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "ami_id": "ami-08f93d8e2a689896d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c973ad6baa8cb1cf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "ami_id": "ami-0486a148c701396df", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bb391112266ca82", + "ami_id": "ami-057fe906eec775e0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d264a7775c029e7", + "ami_id": "ami-0fa63422c3b137666", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3e18d0010c8cf34", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-0c21f84f00f2f3de7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0250843b3d84b59bb", + "ami_id": "ami-0c84dffba7015613c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06151af2f75aa5ecb", + "ami_id": "ami-051726ba1bef05f48", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7b3d730d0438e1b", + "ami_id": "ami-0bc916eba073a69ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0486be18511835608", + "ami_id": "ami-0bfb942827f5f641f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec7ce069c5354b3b", + "ami_id": "ami-0d16cace55f61ff19", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e1beca07dd0e734", + "ami_id": "ami-01d14cda63bf6fd37", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0653c9731ee7419ad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0827de5a738b0659c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5ab0d956378c44d", + "ami_id": "ami-08fc83b69e3d07c9b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f24ba166c1203189", + "ami_id": "ami-02fb0f1de730927d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dfc8c6e4ff4c375", + "ami_id": "ami-06765992275a897c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e47a1e7ce1d448a", + "ami_id": "ami-b75a6acb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a60977a89a15442f", + "ami_id": "ami-0260d0739b6f69ee3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de96932a5464a5db", + "ami_id": "ami-0ae36d54400d8157d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060c7b75c31ac0a2a", + "ami_id": "ami-095997bc097212f6f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2cbbe8ecd30a334", + "ami_id": "ami-07912203e0cc58785", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0813aa762a2f05419", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a230528226b1b674", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e407f59e735b7784", + "ami_id": "ami-0eead268449ccefc1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b2595b008a52304", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210623 arm64 ECS HVM GP2", + "ami_id": "ami-08ba47950361a3d7c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbd96725c5ba1105", + "ami_id": "ami-0ac9f90d0e223daa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b41aa338e2f8ece", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "ami_id": "ami-0c67d199fa888a026", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0945b21cd7d7f21bc", + "ami_id": "ami-0244ed1d6505ddd87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0615a0c0121c2fa64", + "ami_id": "ami-0ebfab1a8bdf7fbd2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7f7cc03d05d1ad8", + "ami_id": "ami-010a2dac2aefc1ba1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0622fa0e5c7f87e77", + "ami_id": "ami-02a1bcad15a4461da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b965b4d74a4c5e2", + "ami_id": "ami-0a882298f3797ed2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fac9d47f1d8617b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0de1dcbed1a4d794a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a910aabebf670d27", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "ami_id": "ami-0041edf24e34bddc2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d257983f5c19877", + "ami_id": "ami-06451b07ab4cd1727", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09be5a5f0d10ddd82", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0eb977d074b57acc0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0153fd8c2692db1b7", + "ami_id": "ami-037f2ba25e94f9e31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092972043c71cd403", + "ami_id": "ami-0dde72590b049b3db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dde72590b049b3db", + "ami_id": "ami-013766bd8d9bf1eaa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060326d41b06ed2c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-0c1f61f53a682ba98", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b03960435af0458a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d7046e1d357b6b85", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f4aafa990072233", + "ami_id": "ami-0047630742f17995f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040aa971744f6cf23", + "ami_id": "ami-05ed82a3e8b31bc94", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05dc23b25ea3b2bd3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "ami_id": "ami-03a8f19679a9ef48d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d895e2cab61e792", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce578a330334cd4f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070f56e2431dcc7e6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "ami_id": "ami-01a46ae73211cef07", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03af05ca012fd9ab5", + "ami_id": "ami-02f539b19cf465552", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02130a0d56b3a5bc9", + "ami_id": "ami-0d2bb46237ed296af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c0be0ddeb5915f9", + "ami_id": "ami-0210f4d072a0aa24d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6aef984502b8ede", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-06c2d587b92f4f3f2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0884a04d4fa81cb0a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-021ef324b34fee0c6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0116e94eb01a7d6bd", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", + "ami_id": "ami-057910ce1e2f89004", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c76fe584a60081f6", + "ami_id": "ami-0b62a2301e9954559", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d766e20e195b5ed", + "ami_id": "ami-0a47eb5f85b07481e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af3e86b9a7f1d473", + "ami_id": "ami-002249a6fc4fb59fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5cda887c80a9fde", + "ami_id": "ami-02063e1eb66d90639", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0542c5c95763709cf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-065d37ce21ef5bed5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbdb8f008362fb79", + "ami_id": "ami-0b00532b21d4d18e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d7fa24d8143f303", + "ami_id": "ami-0e90d07b6fcbf49f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0259b0d2c09f66058", + "ami_id": "ami-06d6a60136bc0621d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a47a96cbc11f4116", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-0c2c6deef55eaee73", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c37058383d73ea7f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0609ede7d87496b1c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb11f016d7d9e413", + "ami_id": "ami-0b52dceabb6e83aec", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b722696225886f8", + "ami_id": "ami-04c3d6e89aaba9605", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a91fa3b27488b46b", + "ami_id": "ami-03201e268e6830317", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aef3992367d1e993", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0969b5a02f80e2964", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b5d2185b5fe58ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "ami_id": "ami-0a95cc4e5c705e1dc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3e30783ebaf1160", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "ami_id": "ami-03ff08facfc9fbb03", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2249b9e9a5fe80e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "ami_id": "ami-0823f6db9fd96757b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0291e8e5d5bba3cee", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-074f8c63dde49cd2f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06451b07ab4cd1727", + "ami_id": "ami-07878c1c0df34447a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6ee93f1e86eb871", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "ami_id": "ami-0cd9b43876dd7badc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7753514e1db57e0", + "ami_id": "ami-0437123fafa0ce8f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c70338ce9c080fe6", + "ami_id": "ami-09b965b4d74a4c5e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20190127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018b35a1c6c2302c1", + "ami_id": "ami-0fd3e3d7875748187", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ec82253cb66d3ef", + "ami_id": "ami-0dfacf29e68ba0347", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8a892ebcca7fc7a", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-0538f94576417086a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007bc187e1ec3a328", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-093d72b5092e12d5d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca5663a4bb8e868f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-069c4f8ffeae03127", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f110e00e9007ea96", + "ami_id": "ami-02d97ab9ed7992614", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ae5080b13999c93", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03a773aa54a47c49d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bf9ce1ee81e994a", + "ami_id": "ami-09d80b2d648e14d16", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd206a0f01f30a03", + "ami_id": "ami-0fb7999e80111be40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d86c24c4cd7d2a1", + "ami_id": "ami-05e37e3def2f3b211", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c6f231be1b842ee", + "ami_id": "ami-086629923b4414a66", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eead268449ccefc1", + "ami_id": "ami-06a4b8eaf248d5c7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a607811847c75505", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", + "ami_id": "ami-04e3e68fcfc9ca078", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022ec1271b7debdca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "ami_id": "ami-0d93d701538c26260", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08331efbc9d028cd7", + "ami_id": "ami-0c40420d7aba7c57e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0651755cb449c45ba", + "ami_id": "ami-0e8baaccc62ee0a9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020ca9ba04a640e0b", + "ami_id": "ami-03fdd7696faf04663", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bb1629b6821c9ce", + "ami_id": "ami-0de8218d49ba63bef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201028-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0069fed60a17a611b", + "ami_id": "ami-004be38b70fc6688d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04efd034489953a0e", + "ami_id": "ami-061176cfbb7257e43", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06590f2c69395a8e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d45e70603fc4a79c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a02a199042d2dd03", + "ami_id": "ami-0241bc8b4b1ece086", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a0e4624521b6b7f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "ami_id": "ami-054a6fb6980eb8fd0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbcc25bfb4880bbf", + "ami_id": "ami-0cfa142fa9af94a26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040da034669b99f6a", + "ami_id": "ami-017df918e34bb078e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07912203e0cc58785", + "ami_id": "ami-0e2f716754add2659", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0212dec66a62edbd4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e8c2bf357b09d913", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a964cb661e6b64c", + "ami_id": "ami-0bde8339acf1b0bf9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb302a07ff3c17f2", + "ami_id": "ami-000e3c1953aef9f7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08049b75211059dac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "ami_id": "ami-002cb2703f8452195", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0463c2a27329f6094", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "ami_id": "ami-0348182a4f998bffa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a1bcad15a4461da", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06b5d2185b5fe58ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047af6779962d9b39", + "ami_id": "ami-0ab7a515667543b33", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051d3754f2b9a8376", + "ami_id": "ami-007d526cd3898e719", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b73ce102ee2e5b5a", + "ami_id": "ami-0eeb519849bc23b1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026e1a9b9fb773f14", + "ami_id": "ami-030e545d619a1548a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e830982c382b54ff", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-0809e9bb32d947d14", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067424a572d98b99d", + "ami_id": "ami-020ca9ba04a640e0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0348182a4f998bffa", + "ami_id": "ami-0766f4e6147ae6dff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c67d199fa888a026", + "ami_id": "ami-07fcd98f5403497d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f940fe5712c35470", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "ami_id": "ami-05652abdca9dc6677", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024fdc61d5cf53669", + "ami_id": "ami-0167d4afc8591fe51", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fddb69715de7473", + "ami_id": "ami-0276cae19c50718d0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03615fd9ef545c196", + "ami_id": "ami-02a70782e8f69ebc1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8b6581ffdc77053", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "ami_id": "ami-05ba46ee093104a5a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074f8c63dde49cd2f", + "ami_id": "ami-074df2af29dad12e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e3e68fcfc9ca078", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "ami_id": "ami-065b344a81208c28c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f82db98c3dda8580", + "ami_id": "ami-0a60977a89a15442f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3676a87a886c41a", + "ami_id": "ami-0eb8001f83aa58b4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cde557a2f29dd76a", + "ami_id": "ami-0fa4b2d46748f1f05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bde8339acf1b0bf9", + "ami_id": "ami-0e40c4298efa243f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e903b5dfea71ee4", + "ami_id": "ami-07d775e673651754a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037203a60dc74c167", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-01f24fd6e114ca670", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05699b074e5f78e46", + "ami_id": "ami-0367b769648c3d41a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d667f7974de4948", + "ami_id": "ami-01eadf33e58113fa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f13de89e52ab2f6", + "ami_id": "ami-0f51d0b5771bcdca4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2285,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fac8cd0fd7ab432c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-0f1882af060f6ed2f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcf12de2e7b750cc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-08c4610b1050a76fb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0384c8024930af788", + "ami_id": "ami-0167e83338bdf98c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bdbe7092756b552", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "ami_id": "ami-002281dd675dedcbf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022b83877f7f904c8", + "ami_id": "ami-060ad3994408f61cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e995dfaaee57db59", + "ami_id": "ami-031003da1bca818b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078b3c7c73c5a2ff4", + "ami_id": "ami-056c3b475c4d63b74", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04326e8a4df5ffadd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-035e386e4c4a6a500", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007b4199bb1f7a62e", + "ami_id": "ami-076c6daac8475fafa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b68661b29b9e058c", + "ami_id": "ami-0f940fe5712c35470", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d1f6f139aca5f94", + "ami_id": "ami-039fdfad8fd591445", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa0bf6e5fde20871", + "ami_id": "ami-0be704e4a6b15924c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09df630cc4e99ce0f", + "ami_id": "ami-03c88e5d9bd70e0c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6906b923ba2b9ef", + "ami_id": "ami-0bfa5336bc93e2bce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e37e3def2f3b211", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-0f92d96b2ab5e6397", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081cef8bd505a246f", + "ami_id": "ami-014eadd38d307d78b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abda8dc8b66d63bb", + "ami_id": "ami-0e9a0ac4214f2ebe1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a4b8eaf248d5c7b", + "ami_id": "ami-004bab50c38c626aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +2733,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088803065cc45a5f2", + "ami_id": "ami-075d2e2f1a80495c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d36bf360fd0b5aa5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9a0ac4214f2ebe1", + "ami_id": "ami-08049b75211059dac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7a19c0ee1a2626c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-0e830982c382b54ff", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036d39ac922eada1c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d792cf1bbdca66df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bef02fb90a20c9f", + "ami_id": "ami-01e548df566b4b9cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f76db4801959b5b", + "ami_id": "ami-0fac8cd0fd7ab432c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09320ace1494ab13b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-0c2b786b676fb5f59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022ff0a3db0adb5cc", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "ami_id": "ami-0dcf12de2e7b750cc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2d6e44ca447afa4", + "ami_id": "ami-05b9aacffe656f0e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ff08facfc9fbb03", + "ami_id": "ami-05e9d215663a4c007", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +2920,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1ff2a7df04dccfd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "ami_id": "ami-0f0e294db388d2c1a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,15 +2937,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079bed3f1ae367600", + "ami_id": "ami-078c281d889eea641", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2765,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0870a42665868bcae", + "ami_id": "ami-098f0d46754e671fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c10837ac8e696556", + "ami_id": "ami-0efc0c2d2278c2936", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d29748c076d0e451", + "ami_id": "ami-058e67940f68a2a92", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07360d922b003fde7", + "ami_id": "ami-0fe2772f03c28bf9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0864a84e214723bcd", + "ami_id": "ami-031921608fa6afddd", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00521dc43e51e9181", + "ami_id": "ami-095384eb5b7a8c09d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8ef5b3cf8888930", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", + "ami_id": "ami-0b620cf314bc9f477", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd9b43876dd7badc", + "ami_id": "ami-0abff52ddf0906d8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa399b25e8255eb4", + "ami_id": "ami-08e903b5dfea71ee4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca87e6af1fe9f5e5", + "ami_id": "ami-0fe163119b09f07be", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eef73af97db71658", + "ami_id": "ami-0b8e4d3bfd5f2f789", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039ec8fc674496137", + "ami_id": "ami-009122d67aa62493d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042f04a9fa299b39d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-0c2c4abd6fda1df1d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b00532b21d4d18e4", + "ami_id": "ami-0d3676a87a886c41a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,31 +3192,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b9773ea5680d845", + "ami_id": "ami-dabdfb30", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075d2e2f1a80495c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "ami_id": "ami-019a815bde0dbc3b2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a06bc4f544c1b8f0", + "ami_id": "ami-0f43bb967ff742242", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f65af85723ec616", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "ami_id": "ami-00ea037f5628240ad", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e930a76eb108a20c", + "ami_id": "ami-0108ebda02138676e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bd95d273327d4df", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "ami_id": "ami-05dfc2bb8127d9355", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069b5eddd9629c13e", + "ami_id": "ami-0af00e4ced3844bf7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d437326e0120355", + "ami_id": "ami-0db5f1dfe5934f120", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3328,458 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c5253247664e9f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", - "hypervisor": "xen", + "ami_id": "ami-010816a5f93b0182b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-062568153dd3b43a2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-016c34b12652edbb6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05f9337bda8f7758a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0dfd0f227eabe017b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-093e9d8ce33ea64f6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-088803065cc45a5f2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b03960435af0458a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f8a7c0cbde43fb6d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0176359b723f5f7ae", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f544a718b01b70e1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03f623f40714ad66a", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0486be18511835608", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a72913517961e18e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07d257983f5c19877", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02e1415e6cb9139dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0381de60c5359f104", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0bd592fb5d1d4141d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00fdf6cacef1f50a3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e94ed750e0420ade", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f123e192d3706e0d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05bdc52e8913188a1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00f0fb3e53bb2bbad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07c030e8b20b243d3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05234a4a4940555f1", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0923f4de6ef1d961d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fffbcc656acdae26", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d16cace55f61ff19", + "ami_id": "ami-026e1a9b9fb773f14", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,31 +3804,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d073901cb231d495", + "ami_id": "ami-0508b013b1c5fcb7d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04025ce6f33ddef1f", "architecture": "x86_64", - "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0382a37b59c70ae41", + "ami_id": "ami-0fa40f723d0a99e5c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f07b3fa86406c96", + "ami_id": "ami-05afb293ec36831e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3872,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0486a148c701396df", + "ami_id": "ami-084a70ad874e38927", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3889,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05cc875c9fed720e5", + "ami_id": "ami-041af6780897cc503", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa40f723d0a99e5c", + "ami_id": "ami-0aa9f9bfeebbc4d34", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +3923,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bde449bad3d707c", + "ami_id": "ami-0ec7ce9a1dd22d627", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a2bc25d41fbe64d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +3957,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ca6e8f0e96437e4", + "ami_id": "ami-0542c5c95763709cf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-092972043c71cd403", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +3991,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe288f5042d28ac0", + "ami_id": "ami-06132b356172acbe2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f005876d00fa81fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +4025,135 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa9a9f9a2b8451d5", + "ami_id": "ami-0a9f54284a39c79a0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f6d324b7c10077b5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-098da952dd8c7bca0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0dab11f5b09132f58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a4ef911fb53c97f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d3a2a9fab44cd957", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07757425cb19b6564", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b9d27eb102c9f32f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df680aa6b7f4eb0e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-0ed9c3ebaf2a2381a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093d4a6f7f6350149", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", + "ami_id": "ami-076798a2c06ff7646", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030216531c26d5c2d", + "ami_id": "ami-08562df827666baa2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a882298f3797ed2e", + "ami_id": "ami-044842f550f1fb2b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e6f3edd4e1612a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-0d3e30783ebaf1160", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08191541efc2dd370", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "ami_id": "ami-0d96b327f5214d7ad", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0456fe3d676e62283", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec2bea4c18d460a3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d089aeeabef7d535", + "ami_id": "ami-00efd500963d83017", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed410e030cc642ee", + "ami_id": "ami-0aff71c3d6ffeac86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab65f7626a6c120c", + "ami_id": "ami-0c0e17329b4f98609", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfbdb6cb43b0a471", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-0b09b99e47e9692f1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02865bbb5ac96158d", + "ami_id": "ami-0b21b19e561e2dc29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07757425cb19b6564", + "ami_id": "ami-0da07fad8ff3ac7c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b62a2301e9954559", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", + "ami_id": "ami-0e5bdcd7af3706cc4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b99b32d3c74575d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "ami_id": "ami-00dbd2def0865b0ab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002281dd675dedcbf", + "ami_id": "ami-08cd826c661ae0073", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d2fb9736b7fdd0e", + "ami_id": "ami-04efd034489953a0e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043dee3beda80d77e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-05e6476d77d9dfce2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04853d61326d07a0d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01f2b8b8f6c18671b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01eadf33e58113fa2", + "ami_id": "ami-04beec69af45311e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02cb4c2d39ad51e5a", + "ami_id": "ami-0de96932a5464a5db", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcd784d881aa1ad5", + "ami_id": "ami-01e79f2e7133b7940", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3661,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8a7c0cbde43fb6d", + "ami_id": "ami-0b773615f6110ee89", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0239251df8f8b269f", + "ami_id": "ami-0d5ed0a62ea9bd530", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3e029495d9ea7e9", + "ami_id": "ami-073fa53a9dc84e7fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e44b86b31521405a", + "ami_id": "ami-0436db8bd52359e94", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f230e7ef1a0b2702", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-085fd8639f8b2ad71", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071e753ada6dd9342", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211209 arm64 ECS HVM GP2", + "ami_id": "ami-02865bbb5ac96158d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddcf0789365a65e5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0d5885cad68331575", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc46b68f26e253f5", + "ami_id": "ami-0934325fd40464197", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08045f4a3069d4d88", + "ami_id": "ami-081cef8bd505a246f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e93202d468e9252", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bd206a0f01f30a03", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06803c995075bcbaf", + "ami_id": "ami-04a6c9b8841bf0a6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b9c755c56caa177", + "ami_id": "ami-014afdb749dcce4e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed9c3ebaf2a2381a", + "ami_id": "ami-04e93202d468e9252", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05878feda8c8cf05b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "ami_id": "ami-0a8e67539e0eb0f0b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-b75a6acb", + "ami_id": "ami-098f71ec4edf502d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001dd0d6a704d4ce8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "ami_id": "ami-09320ace1494ab13b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05490080f30515cd0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0244975dff958eb27", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfa6ffdd3eae1106", + "ami_id": "ami-00ec82253cb66d3ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bf08b80a133645c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-026bea1ec40145ef2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e1bb67c6b77292c", + "ami_id": "ami-0523a7a2828b8fb10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004a2eda5e17c70af", + "ami_id": "ami-06fac9d47f1d8617b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab04c2c315eb61e2", + "ami_id": "ami-0c10837ac8e696556", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d540d379a7896827", + "ami_id": "ami-0d1ff2a7df04dccfd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200915-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0920ef3608aa17d63", + "ami_id": "ami-0ab66964324813792", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", + "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e79f2e7133b7940", + "ami_id": "ami-0cb636837b2167e1d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045eae278a648c759", + "ami_id": "ami-0177286542a1a985d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035ce789e1184912e", + "ami_id": "ami-0195245045600e318", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098c80dcb48da48e6", + "ami_id": "ami-0584bb34329452bab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3f6080027b598fe", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-009b78394550fcc22", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e9710d43e23455c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0212dec66a62edbd4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd592fb5d1d4141d", + "ami_id": "ami-037bb88948235e17b", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017808decf20cee73", + "ami_id": "ami-0a1b522f85b81f98e", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062a3e3b74bb5b4c5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "ami_id": "ami-04b3dbb1c01439d89", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078c281d889eea641", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-074f9f25c4409c8be", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f0fb3e53bb2bbad", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-09b2595b008a52304", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210623 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022ed9bbec524c30c", + "ami_id": "ami-02949e28f844e1e75", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4327d8a824b79c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "ami_id": "ami-0e859f2dfb31f9ec2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0872cb0ee988e52aa", + "ami_id": "ami-0c6e9ed7f22d7f234", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a29369712cfd1acc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "ami_id": "ami-0f8e0ce69c021dd25", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0231bfc951ec6b578", + "ami_id": "ami-0c790eb5abc7aa1cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00237a21ff6310ec6", + "ami_id": "ami-097265a5363dd9f0a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cc10ecfd49a551d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-0f9d1088f02469569", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4333,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050ab9d57a47e88a6", + "ami_id": "ami-0116e94eb01a7d6bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f7c96e0c0028c53e", + "ami_id": "ami-0653c9731ee7419ad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8758d111ba195ab", + "ami_id": "ami-05d518a21f8d440e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010a2dac2aefc1ba1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-02d28b69c46e8bf3f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037f2ba25e94f9e31", + "ami_id": "ami-044c83b7c1472088d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0303610b63d913ff6", + "ami_id": "ami-0132196a6b5529202", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057910ce1e2f89004", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-0aa9c155a5487d22c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8e67539e0eb0f0b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", + "ami_id": "ami-0259b0d2c09f66058", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041b9f63b21fcf3cb", + "ami_id": "ami-04ed2ef90638ef96e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-088b0f850c98fb893", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0997ad7daa9e830a4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eba082e3536a7b8d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00287118e17ea1ca7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f3ddb6d55f68cf2", + "ami_id": "ami-05699b074e5f78e46", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042499b6ce91629ca", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-00d5d8c8e372e3601", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e1e98be0c632cfa", + "ami_id": "ami-0ad81f8dbc2661529", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03dd6aa6101519c46", + "ami_id": "ami-0f88a2909314ab037", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05652abdca9dc6677", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-0be7f2b82b4ec6467", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0598448c7e96c6bcd", + "ami_id": "ami-06443ab3f5502b9c3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +5538,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099dafd04075b6041", + "ami_id": "ami-0651755cb449c45ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +5555,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045072b7ebd2e0339", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-0239251df8f8b269f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +5572,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb7999e80111be40", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "ami_id": "ami-095d0f1be2f2e82dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +5589,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5b84b79a2f2127f", + "ami_id": "ami-02625fa987a246214", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +5606,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e548df566b4b9cb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "ami_id": "ami-04f313f671565f813", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +5623,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00657d64695256cd7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-0911e63d4fba6ce1c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +5640,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013bd769dc62cc191", + "ami_id": "ami-04c5253247664e9f5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +5657,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07efba5ef7cf9d465", + "ami_id": "ami-06bef02fb90a20c9f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210929-x86_64-ebs", + "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +5674,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ad30af91955f823", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-000acc9e1be48cb07", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5691,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d5ae72ff2dd2b8b", + "ami_id": "ami-01e632ac9fb1c17c2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5708,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0310a9b646b817d26", + "ami_id": "ami-02cb4c2d39ad51e5a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", + "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,31 +5725,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d66431aa4757b4c", + "ami_id": "ami-0d073901cb231d495", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e40612a28b34d074", + "ami_id": "ami-0d8758d111ba195ab", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5759,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0911e63d4fba6ce1c", + "ami_id": "ami-02dce1f50f37981a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5776,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2c4abd6fda1df1d", + "ami_id": "ami-08dfc8c6e4ff4c375", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5793,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0940a6fb1d5fe0e7b", + "ami_id": "ami-0d089aeeabef7d535", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5810,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074df2af29dad12e5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "ami_id": "ami-0eff5c1ad8e8cc80c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5827,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8f68267311ff2ce", + "ami_id": "ami-022ff0a3db0adb5cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,6 +5844,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -4909,15 +5861,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e099da1a1268ed7f", + "ami_id": "ami-03dd6aa6101519c46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5878,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0252bac01daf23750", + "ami_id": "ami-079a2f2d80d7b89b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5895,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f589a17ab9a89bec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0709a71954f69cc26", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5912,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5ed0a62ea9bd530", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-0c7b3d730d0438e1b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5929,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0047bfdb16f1f6781", + "ami_id": "ami-063c40d4cff786d60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5946,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04438c6446ece5b32", + "ami_id": "ami-05d2fb9736b7fdd0e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5963,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06132b356172acbe2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-03aaaa45dffb52e0a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5980,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6ac4cbc1c2b895d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "ami_id": "ami-026c70a35138a1088", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5997,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e206811d06b1190", + "ami_id": "ami-0bc85cd20dfa2ed8d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +6014,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b2ee98c5a8a87cd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", + "ami_id": "ami-060326d41b06ed2c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +6031,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c4610b1050a76fb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-017808decf20cee73", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +6048,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0431766b2a04d1a7d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0562e27aac95dcf60", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +6065,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01650f0fdee21ad15", + "ami_id": "ami-0a597600270fbb5f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +6082,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a604c08705c3e7f", + "ami_id": "ami-00fff2eeea9437837", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +6099,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086629923b4414a66", + "ami_id": "ami-0527f47693dcc8b4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +6116,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064850f904eb8caf8", + "ami_id": "ami-00b1186dac9226aac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +6133,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba00a57f9a169b2a", + "ami_id": "ami-08286412bdc151665", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +6150,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0530e30eaddc202ce", + "ami_id": "ami-0078cac10e3519047", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +6167,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0800e8bc252fab12b", + "ami_id": "ami-0abda8dc8b66d63bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +6184,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d14cda63bf6fd37", + "ami_id": "ami-0669b994780198e2e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +6201,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024b5d42c60cae985", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "ami_id": "ami-0da26f95cbfee36fc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +6218,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a715b67a350cdf88", + "ami_id": "ami-02a85a34a2bdf6fe1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +6235,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e9db968df3546fd", + "ami_id": "ami-0b72ce8a3f5c29a7e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +6252,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064345363a9e10ef7", + "ami_id": "ami-025fc21019d92b6dc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +6269,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08286412bdc151665", + "ami_id": "ami-0b0221d859c75bb04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +6286,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09965235741cea1a7", + "ami_id": "ami-0466e60a8f0b4178e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +6303,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091d0c5836273bca9", + "ami_id": "ami-096cae9fe50bd4d8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +6320,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b773615f6110ee89", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e524a48cd668ebeb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +6337,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09aade22702aec219", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "ami_id": "ami-01cbc7353fe0cb016", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +6354,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0b19a45f8e478fd", + "ami_id": "ami-06d66431aa4757b4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +6371,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017de0d19a90b728d", + "ami_id": "ami-0cc5ad7bb1d1e580f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +6388,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6352bab858d2ad6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-0daf64747e25e552f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +6405,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e646c3114068b16", + "ami_id": "ami-0b3e5d95bf6fba196", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +6422,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0381de60c5359f104", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0cf0454a48bf01ed7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +6439,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044c83b7c1472088d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "ami_id": "ami-0a0aac9c418afee0c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +6456,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3056ed0a37fa166", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d65620bd61e47e7d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +6473,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085fd8639f8b2ad71", + "ami_id": "ami-04a94c144c2e133df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +6490,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073fa53a9dc84e7fb", + "ami_id": "ami-07e6f3edd4e1612a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +6507,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ab95f467cd81849", + "ami_id": "ami-0266fa02a666d034a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +6524,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd3e3d7875748187", + "ami_id": "ami-047669ec172edcfa6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +6541,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04beec69af45311e5", + "ami_id": "ami-0800e8bc252fab12b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +6558,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025fc21019d92b6dc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-01f07b3fa86406c96", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +6575,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e632ac9fb1c17c2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b2249b9e9a5fe80e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +6592,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0520d85eb68d646ce", + "ami_id": "ami-0456fe3d676e62283", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +6609,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e88b1048a5b89e99", + "ami_id": "ami-0b079eeb4a6659d8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +6626,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae36d54400d8157d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "ami_id": "ami-072c947938ae36271", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +6643,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098da952dd8c7bca0", + "ami_id": "ami-00cd76a0e8dc5a6d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +6660,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0004cd7d90475b7", + "ami_id": "ami-0689726e1a700ed66", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +6677,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0184f964b566e7f09", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-013bd769dc62cc191", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +6694,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fb9b8925e17fd73", + "ami_id": "ami-0f8fe5269dbdb5336", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +6711,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0605fcb69148f9391", + "ami_id": "ami-0ffd2076dc18d6f0e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +6728,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d79f9671ab37e3c6", + "ami_id": "ami-0ac5c7ab6f0eab7c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +6745,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebfab1a8bdf7fbd2", + "ami_id": "ami-04e8c29fe2825ca96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +6762,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e68481ad4cc672e0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "ami_id": "ami-010ebbd1cff6fc091", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210708-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +6779,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a6c9b8841bf0a6a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "ami_id": "ami-0b38043d286bd96dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,15 +6796,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2bc25d41fbe64d9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0a607811847c75505", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5805,15 +6813,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c17dda32e45bf9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "ami_id": "ami-0cfbdb6cb43b0a471", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +6830,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081a18108c841ed9e", + "ami_id": "ami-0e3ce4198a45461c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +6847,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be7f2b82b4ec6467", + "ami_id": "ami-07e22605e7e9afd2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +6864,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa00d20cc2fa3c81", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "ami_id": "ami-0d29748c076d0e451", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +6881,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003f1a71259a73acf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08b5c30165eacc281", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +6898,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0709a71954f69cc26", + "ami_id": "ami-0c83cee0a0f6addd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +6915,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01329577e2dedcf71", + "ami_id": "ami-05c0be0ddeb5915f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +6932,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00717ff72d49b0e16", + "ami_id": "ami-0cd138844be3ea03d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,15 +6949,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0751c438d56315499", + "ami_id": "ami-08ab95f467cd81849", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5949,15 +6966,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf58ca797fd5428a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "ami_id": "ami-0872cb0ee988e52aa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +6983,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0177286542a1a985d", + "ami_id": "ami-033f6315bca06b2b7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +7000,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0466e60a8f0b4178e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "ami_id": "ami-0c987fd23e4898dee", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +7017,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0dbfe30685a020c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-036d39ac922eada1c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +7034,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4ef911fb53c97f5", + "ami_id": "ami-01014b4d9272533de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +7051,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e859f2dfb31f9ec2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-0ca757e0169c8b7d9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +7068,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058be37cd6ba929cd", + "ami_id": "ami-0bc303a0221952694", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +7085,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ddff7865753a2fe", + "ami_id": "ami-0a27914c7ec8b4092", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +7102,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0436db8bd52359e94", + "ami_id": "ami-09f13de89e52ab2f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +7119,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e0837184f3618d5", + "ami_id": "ami-048ad0bcf21d9a53c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +7136,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f596fcbda0cebcc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", + "ami_id": "ami-01d5ae72ff2dd2b8b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +7153,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af35c1f9c5378856", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "ami_id": "ami-0c5ab0d956378c44d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +7170,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03047dd3ba09863b8", + "ami_id": "ami-062a57a7ff5dbaee5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +7187,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a4fb148cbdf5eea1", + "ami_id": "ami-08d5fd25349128dc0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +7204,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c50c88b0c709f084", + "ami_id": "ami-0c143ce0a20041481", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +7221,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097265a5363dd9f0a", + "ami_id": "ami-0718c156add327ed6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +7238,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe2772f03c28bf9c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "ami_id": "ami-0864a84e214723bcd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014ae7f8ad6e16e24", + "ami_id": "ami-07360d922b003fde7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070cca12177e123ea", + "ami_id": "ami-0c33cf47326af4bf0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d48e6b68898b1e7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", + "ami_id": "ami-09072dd572d19b20b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0488ee62855172f5e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "ami_id": "ami-00b264d2db52dc3a0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa9f9bfeebbc4d34", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "ami_id": "ami-070cca12177e123ea", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0647ccfd9cd1fc7fc", + "ami_id": "ami-0c424edd98dbec996", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07cd9322bf65a1d2c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-01572483204479aac", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cb844d8a339a942", + "ami_id": "ami-099dafd04075b6041", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c030e8b20b243d3", + "ami_id": "ami-01218a7d202442125", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6365,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec7ce9a1dd22d627", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-0884a04d4fa81cb0a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6381,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003f6138d50a592b8", + "ami_id": "ami-0ab1966ee863c98fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0241bc8b4b1ece086", + "ami_id": "ami-004b1c28144325af1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +7459,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2e932e60801200f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", + "ami_id": "ami-071ba40c9827bcd68", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +7476,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0268805410e1565cd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05ec60e1e81816f59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +7493,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067b8f93fbf439310", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-030c61920c04c2a26", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a195580261f40db", + "ami_id": "ami-040da034669b99f6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +7527,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8e0ce69c021dd25", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", + "ami_id": "ami-055b5f9a90dfadea4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +7544,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0240589d2b387a307", + "ami_id": "ami-0e407f59e735b7784", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +7561,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071ba40c9827bcd68", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-016524370ae37a85a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000a516706f289e52", + "ami_id": "ami-0a29369712cfd1acc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0934325fd40464197", + "ami_id": "ami-0bd1daf5da8a9a903", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8407a51edadf1d9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "ami_id": "ami-0598448c7e96c6bcd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0885cc777ab62214d", + "ami_id": "ami-0353a293f5da1eda8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef5e578dfbce903c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "ami_id": "ami-04b990a9f1080d9fa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +7663,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001a916c2914ee9ff", + "ami_id": "ami-0627e2913cf6756ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +7680,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ba47950361a3d7c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-0790af6bd9d6db46a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +7697,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0111bef14b522435a", + "ami_id": "ami-0f99282b071e40ef1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +7714,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015a1b6cc11d63077", + "ami_id": "ami-001e0584bad7932b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +7731,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9e00e59e2f3ed75", + "ami_id": "ami-00d92ac5cbbffb042", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,15 +7748,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d84ff23cc77ac9de", + "ami_id": "ami-02368a9ea12ae2522", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6701,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060761d9129f18887", + "ami_id": "ami-08045f4a3069d4d88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb1d00a6460dda73", + "ami_id": "ami-07eca4b53f61c43b3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0110cd40e477dbba8", + "ami_id": "ami-004a1c76ee8e91c7c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b079eeb4a6659d8f", + "ami_id": "ami-09d0cce463fbe0ebf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f92d96b2ab5e6397", + "ami_id": "ami-0bb302a07ff3c17f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e73abe8ab17b56c6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-0a6fe191df026a602", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0464b5a4dd3ea431c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "ami_id": "ami-04bf08b80a133645c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b264eab0a1e04d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-0e6352bab858d2ad6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dab11f5b09132f58", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-0f07e2c47f44af105", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0226a3f6351ce07f2", + "ami_id": "ami-0b3bfb00a28874ede", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093d72b5092e12d5d", + "ami_id": "ami-001dd0d6a704d4ce8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05756a37f79ebefe5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07d667f7974de4948", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db3f8a2b93f010d3", + "ami_id": "ami-003375b60ebe663bc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ad21f130af0b5b1", + "ami_id": "ami-0c967fd1658d16302", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +8003,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f24fd6e114ca670", + "ami_id": "ami-0fe8765cd7065dc03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +8020,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c68f952153c18847", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-05a6f08a8679f9c94", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeb519849bc23b1f", + "ami_id": "ami-0844550712536a33b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0047630742f17995f", + "ami_id": "ami-0d2ffabfbd38ccd28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f019930739558712", + "ami_id": "ami-00eefb13b342446ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0997ad7daa9e830a4", + "ami_id": "ami-04adb12e6a048f840", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f51d0b5771bcdca4", + "ami_id": "ami-05ddff7865753a2fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0068d92d7b81aab1f", + "ami_id": "ami-01650f0fdee21ad15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030c61920c04c2a26", + "ami_id": "ami-0ab04c2c315eb61e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +8156,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073b50738a5423f9d", + "ami_id": "ami-0ed410e030cc642ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +8173,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8c2bf357b09d913", + "ami_id": "ami-00717ff72d49b0e16", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b5c30165eacc281", + "ami_id": "ami-04e1bb67c6b77292c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdc23ac5d84d39f1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0068d92d7b81aab1f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0489ac445eb4c2fe0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "ami_id": "ami-0b2e932e60801200f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051726ba1bef05f48", + "ami_id": "ami-0b91f3efad17de577", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07edb61f012da2f68", + "ami_id": "ami-0ac503285978338fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f44fdc7a6d8636b8", + "ami_id": "ami-0e099da1a1268ed7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb9a87fd82564ce9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ca87e6af1fe9f5e5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce578a330334cd4f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-09b722696225886f8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030e545d619a1548a", + "ami_id": "ami-09f4d88304a8a681e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bf8d691112d249e", + "ami_id": "ami-0fa9a9f9a2b8451d5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062c95132f5843ff2", + "ami_id": "ami-0464b5a4dd3ea431c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a49d5c378c014760", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-067b8f93fbf439310", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab7a515667543b33", + "ami_id": "ami-029ad89cee8435b53", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019a815bde0dbc3b2", + "ami_id": "ami-04b8afc6ee0864cdc", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d97ab9ed7992614", + "ami_id": "ami-085364f2a0c5b6458", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ab8dd278512e0db", + "ami_id": "ami-0e71e66b1da70d704", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9e33e79895e93e1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e6ac2b8d66883414", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c2124e08654f931", + "ami_id": "ami-01329577e2dedcf71", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb4239fe0f64fe58", + "ami_id": "ami-09cd4d4d5a98a763e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0017a79430c28ef34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ce4743e4bcac7f7e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07207991a2e81a7ce", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c47e5dfec4423cb8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079a2f2d80d7b89b0", + "ami_id": "ami-0deaa9a426a008fbe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0beb9cdf3ec3d324e", + "ami_id": "ami-003c37e0e7439d3ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002cb2703f8452195", + "ami_id": "ami-004a2eda5e17c70af", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bdc52e8913188a1", + "ami_id": "ami-0bfc41526051c670f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0041edf24e34bddc2", + "ami_id": "ami-060c7b75c31ac0a2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018d5e73c9309e0e7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-02d86c24c4cd7d2a1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b250f2f1f26c0a5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", + "ami_id": "ami-037e8c289fe141585", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6d324b7c10077b5", + "ami_id": "ami-093df4839e8df694e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2bc6692a369f61f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "ami_id": "ami-0fc46b68f26e253f5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e40c4298efa243f3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01b41aa338e2f8ece", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2222341e0302abd", + "ami_id": "ami-0137390f57a92f66e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ac44fc9dd15cc1d", + "ami_id": "ami-013e1d4bbdf263b6f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0309369aa9694281c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", + "ami_id": "ami-0a3e18d0010c8cf34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074f9f25c4409c8be", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "ami_id": "ami-0e1336e91e4fc4782", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02063e1eb66d90639", + "ami_id": "ami-0ba1e940a4653db3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0078cac10e3519047", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "ami_id": "ami-04faeeec057e1de96", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000e3c1953aef9f7d", + "ami_id": "ami-08137a0887d25b8bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084a70ad874e38927", + "ami_id": "ami-062a3e3b74bb5b4c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ebb6a52719fa527", + "ami_id": "ami-04e47a1e7ce1d448a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa9c155a5487d22c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c9e00e59e2f3ed75", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a6f08a8679f9c94", + "ami_id": "ami-01cd1755adbfea525", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fa3dbb74a453084", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01e0837184f3618d5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5484a426168b6aa", + "ami_id": "ami-0866b8c2cfda510b7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff3189e6c54410a5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0545c5417d5a50bd9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +8955,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e22605e7e9afd2a", + "ami_id": "ami-0aa399b25e8255eb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +8972,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f123e192d3706e0d", + "ami_id": "ami-066717cf6e0da8f50", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014afdb749dcce4e6", + "ami_id": "ami-0bd22023929c71792", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b07727ef9c54311", + "ami_id": "ami-0658045015db398b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0405ce18cc1d96fc4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0250843b3d84b59bb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05980193daf946095", + "ami_id": "ami-09db0c306d94e302d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095384eb5b7a8c09d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "ami_id": "ami-0c27b3b35bd7f06af", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026bea1ec40145ef2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "ami_id": "ami-051fb9ba0789eff4f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cccd3a936632f7a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "ami_id": "ami-0463c2a27329f6094", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ed888cc436dd7c4", + "ami_id": "ami-0d79f9671ab37e3c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001e0584bad7932b7", + "ami_id": "ami-0b4327d8a824b79c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d28b69c46e8bf3f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0d7a19c0ee1a2626c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c21f84f00f2f3de7", + "ami_id": "ami-0c5d3bdf69c09b0b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c4e51b701af7779", + "ami_id": "ami-0791c84a135845cef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a70782e8f69ebc1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "ami_id": "ami-0ac34f330c4c50e81", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a25470102c81744", + "ami_id": "ami-0705c968c7f0a3b1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9c55024702fbe0b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c26a1b26c9a48d3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6dd2dfe55885625", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", + "ami_id": "ami-0df286aadb218ff7e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d96b327f5214d7ad", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-0cccd3a936632f7a3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d2f8d563560b42d", + "ami_id": "ami-09c3bb4e378fe2d87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0176359b723f5f7ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-0e5a05747479033ad", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073e8a1188084ea61", + "ami_id": "ami-070f56e2431dcc7e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bff9332ad09dc064", + "ami_id": "ami-038f76d6028dc206c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05df4d758aea111df", + "ami_id": "ami-0427416aa4778f308", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfc41526051c670f", + "ami_id": "ami-06151af2f75aa5ecb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050865a806e0dae53", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", + "ami_id": "ami-0290a5d042f3a4e8f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0508b013b1c5fcb7d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-0b5730c969afa930e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06443ab3f5502b9c3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06d2f8d563560b42d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067a3feb521f9387a", + "ami_id": "ami-0322f25e889eb6a49", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfacf29e68ba0347", + "ami_id": "ami-0c0ca2e780e21103c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe00b7c5718fdf1e", + "ami_id": "ami-0c8ef5b3cf8888930", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6fe191df026a602", + "ami_id": "ami-01a245b3d989f7b32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faa5fb6ad9189862", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-00ae9cbb6bf5d4127", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cd826c661ae0073", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "ami_id": "ami-0995c254445bbfa99", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0437123fafa0ce8f4", + "ami_id": "ami-05980193daf946095", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096bb303c51f7b3f4", + "ami_id": "ami-06d766e20e195b5ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-019aa18d9f5a6a976", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a0004cd7d90475b7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093c0340f76565348", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-047af6779962d9b39", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d0cce463fbe0ebf", + "ami_id": "ami-05bb5da433d61c18a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095997bc097212f6f", + "ami_id": "ami-06bff88a293999f8c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fdf6cacef1f50a3", + "ami_id": "ami-04ffdfce4b6b1edab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d31bae124726404", + "ami_id": "ami-0d5b84b79a2f2127f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5a05747479033ad", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-02ab8dd278512e0db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fdcaa41a2d806875", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "ami_id": "ami-05e181feb36b1014c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062827b3401298389", + "ami_id": "ami-078b557e10479a651", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8541,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062a57a7ff5dbaee5", + "ami_id": "ami-0622fa0e5c7f87e77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09cd4d4d5a98a763e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "ami_id": "ami-0488ee62855172f5e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036d679e3abe2244c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "ami_id": "ami-0e3056ed0a37fa166", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038db37e2c1059a32", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04e8aa250fef09add", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f99282b071e40ef1", + "ami_id": "ami-035c2aab78de42c05", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfb942827f5f641f", + "ami_id": "ami-09aade22702aec219", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d36bf360fd0b5aa5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "ami_id": "ami-0dbda5a9cd13131cc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5bdcd7af3706cc4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-0870a42665868bcae", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b990a9f1080d9fa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-0a27a7f948f11cb32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fee7c0c9c1f58485", + "ami_id": "ami-0100f9c0536060f4e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098f0d46754e671fb", + "ami_id": "ami-0fe0cf680737dc80f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc916eba073a69ab", + "ami_id": "ami-071fbc655b2398016", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dd3a5de528aec1d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-043f17c0300716d55", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eff5c1ad8e8cc80c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", + "ami_id": "ami-04f65af85723ec616", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dcc11fdfb472d7d7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-00938a7172f62b5ba", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2d859a7d82c4f40", + "ami_id": "ami-0c2cbbe8ecd30a334", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038f76d6028dc206c", + "ami_id": "ami-08348b56dc2675995", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f2b8b8f6c18671b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01813416d767d88db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae45a10a2cc0c170", + "ami_id": "ami-001a916c2914ee9ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1ee31f2f7c8b443", + "ami_id": "ami-067424a572d98b99d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1882af060f6ed2f", + "ami_id": "ami-0b4dc0bd36ac50465", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07eca4b53f61c43b3", + "ami_id": "ami-0270f30b835a5d2c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07587c4ea02f0b8df", + "ami_id": "ami-0767b0f324c37fd5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f93d8e2a689896d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c70338ce9c080fe6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ae2723e3c86c93e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", + "ami_id": "ami-0e5484a426168b6aa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfa142fa9af94a26", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "ami_id": "ami-0af35c1f9c5378856", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00938a7172f62b5ba", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "ami_id": "ami-03d264a7775c029e7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f523d8d28353ad7d", + "ami_id": "ami-0d0fc8cb70df2eef4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026c70a35138a1088", + "ami_id": "ami-0f24ba166c1203189", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b4e7e304897c3bc", + "ami_id": "ami-0d0d22d7344a2d33c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa4b2d46748f1f05", + "ami_id": "ami-01fde0e789987289f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010ebbd1cff6fc091", + "ami_id": "ami-07a2982c76905acef", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d65620bd61e47e7d", + "ami_id": "ami-01086f4a8bd6f847b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db5f1dfe5934f120", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "ami_id": "ami-0a8407a51edadf1d9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ffd2076dc18d6f0e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "ami_id": "ami-00657d64695256cd7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060ad3994408f61cb", + "ami_id": "ami-022ed9bbec524c30c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f02bd2c1c60828c", + "ami_id": "ami-028f18079e7a2c1b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05234a4a4940555f1", + "ami_id": "ami-03047dd3ba09863b8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fde0e789987289f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-035ce789e1184912e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a01ee19565d9edbc", + "ami_id": "ami-0110cd40e477dbba8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0790af6bd9d6db46a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-0e28f01392735c38d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e71e66b1da70d704", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "ami_id": "ami-042f04a9fa299b39d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f88a2909314ab037", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "ami_id": "ami-04326e8a4df5ffadd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080fa7f39e5b767d9", + "ami_id": "ami-0f2222341e0302abd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba1e940a4653db3e", + "ami_id": "ami-0384c8024930af788", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc303a0221952694", + "ami_id": "ami-045eae278a648c759", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fcc5b181b50e822", + "ami_id": "ami-08b89dd90d350f70e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f43bb967ff742242", + "ami_id": "ami-0a02a199042d2dd03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0222e9cacf82c3605", + "ami_id": "ami-030216531c26d5c2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d6a60136bc0621d", + "ami_id": "ami-0ced3cf5466697972", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fcd98f5403497d4", + "ami_id": "ami-01854a08f7ce76245", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf89587378b734db", + "ami_id": "ami-0489ac445eb4c2fe0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f07e2c47f44af105", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0aef3992367d1e993", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043f17c0300716d55", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-01f02bd2c1c60828c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d5d8c8e372e3601", + "ami_id": "ami-0253eecd844ab6060", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6e18cc4952d4622", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-05490080f30515cd0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b72642a5b9b61a1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05dc23b25ea3b2bd3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00da0c1e473d9b98e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-016f8f13f93b79237", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0823f6db9fd96757b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05cc875c9fed720e5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2a8e5fd90633002", + "ami_id": "ami-0583e6c8e77715350", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c47e5dfec4423cb8", + "ami_id": "ami-0111bef14b522435a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065564bc852e6f8b7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "ami_id": "ami-0382a37b59c70ae41", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b9aacffe656f0e3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "ami_id": "ami-0c9c55024702fbe0b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04adb12e6a048f840", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-0e60d311f5713062d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05357ea4dad5e2cf4", + "ami_id": "ami-06803c995075bcbaf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-005fe3f919c4188a2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-06a3e78b847c3af40", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05eb68e514c138ae6", + "ami_id": "ami-02dbfbb8a2ba07867", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06180fabc1bac1a0a", + "ami_id": "ami-073b50738a5423f9d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0995c254445bbfa99", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-007b4199bb1f7a62e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbda5a9cd13131cc", + "ami_id": "ami-039ec8fc674496137", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +10910,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04701aabb3f8b4d74", + "ami_id": "ami-07c8e76033c0051b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +10927,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-048ad0bcf21d9a53c", + "ami_id": "ami-0bff9332ad09dc064", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe160f3f5d104db1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03d47956b0ea595c7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0562e27aac95dcf60", + "ami_id": "ami-0e40612a28b34d074", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", + "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fec50b48d2b32e2c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "ami_id": "ami-0184f964b566e7f09", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016524370ae37a85a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "ami_id": "ami-041b9f63b21fcf3cb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00eefb13b342446ba", + "ami_id": "ami-0f5cda887c80a9fde", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af00e4ced3844bf7", + "ami_id": "ami-02ad574b060e7bf70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da07fad8ff3ac7c7", + "ami_id": "ami-03a964cb661e6b64c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00efd500963d83017", + "ami_id": "ami-0a3f70f0255af1d29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cc3edba901a8022", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0c2ea3ecc747e300f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2b786b676fb5f59", + "ami_id": "ami-0f110e00e9007ea96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ab26c7c5e3ee40d", + "ami_id": "ami-06be2545447320ae9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca861d4d9c4b1115", + "ami_id": "ami-0dbd96725c5ba1105", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6ac2b8d66883414", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-06663ca27c0e2e306", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8e4d3bfd5f2f789", + "ami_id": "ami-0d0da86ff97c864d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6d6bb36ea9de518", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "ami_id": "ami-05fccea33ce778e78", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0523a7a2828b8fb10", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09b2ee98c5a8a87cd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac503285978338fd", + "ami_id": "ami-0bad6552c2f794ebb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e90d07b6fcbf49f7", + "ami_id": "ami-0ae85479bb0918b39", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb8001f83aa58b4c", + "ami_id": "ami-08d7fa24d8143f303", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f71e1253f7e998af", + "ami_id": "ami-00e206811d06b1190", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0538f94576417086a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a1ee31f2f7c8b443", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028dc84568dd7c888", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e995dfaaee57db59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a72913517961e18e", + "ami_id": "ami-0b9d178ee92a555b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071fbc655b2398016", + "ami_id": "ami-0d6e5549ed90fc3a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd138844be3ea03d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-022ec1271b7debdca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028f18079e7a2c1b2", + "ami_id": "ami-0401f332a3a697116", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4dc0bd36ac50465", + "ami_id": "ami-0240589d2b387a307", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01572483204479aac", + "ami_id": "ami-001e0c18eb90b2568", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00278804efb76f101", + "ami_id": "ami-0a1409bf94faa559f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01218a7d202442125", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04f3ddb6d55f68cf2", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a2fd4501054710e", + "ami_id": "ami-07c4e51b701af7779", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8fe5269dbdb5336", + "ami_id": "ami-0069fed60a17a611b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6e5549ed90fc3a9", + "ami_id": "ami-0cb1e19b24c11f98a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8cb6f04dd554018", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0996cfb3acf118b24", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3bfb00a28874ede", + "ami_id": "ami-0af3e86b9a7f1d473", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0167e83338bdf98c2", + "ami_id": "ami-0fe00b7c5718fdf1e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d6a82e749d9be41", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "ami_id": "ami-00ad30af91955f823", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aaa6d1e08e1e271d", + "ami_id": "ami-06cd84842385987f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d92ac5cbbffb042", + "ami_id": "ami-0e73abe8ab17b56c6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02dbfbb8a2ba07867", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", + "ami_id": "ami-0ec829f13a1ae96cd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1f61f53a682ba98", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-0f523d8d28353ad7d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02368a9ea12ae2522", + "ami_id": "ami-0310a9b646b817d26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01308997d4554a2f3", + "ami_id": "ami-0605fcb69148f9391", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a03513350f08b2bd", + "ami_id": "ami-05ca6e8f0e96437e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de891459e2ab6777", + "ami_id": "ami-0795792e1d2bf202d", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7cf0e02ddae81a9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-08331efbc9d028cd7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f625f9bfb7303b20", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "ami_id": "ami-06b99b32d3c74575d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220607-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031003da1bca818b6", + "ami_id": "ami-07b84da235be1cfcb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075f725f5b25119bf", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0e68481ad4cc672e0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ad4619f7b6cd056", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-0f590d66d16545a30", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d16dcba5870e773", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", + "ami_id": "ami-02549261833f78c40", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d5fd25349128dc0", + "ami_id": "ami-0d242941de637dea8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080cdc1184ac6b4fa", + "ami_id": "ami-0ab65f7626a6c120c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076c6daac8475fafa", + "ami_id": "ami-0df908cbf2fb4855b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04770d89e9dedfa8b", + "ami_id": "ami-06180fabc1bac1a0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04faeeec057e1de96", + "ami_id": "ami-0de891459e2ab6777", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb1e19b24c11f98a", + "ami_id": "ami-0ff3189e6c54410a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fffbcc656acdae26", + "ami_id": "ami-0dbdb8f008362fb79", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056c3b475c4d63b74", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09be5a5f0d10ddd82", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef63e57a8745423", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "ami_id": "ami-093c0340f76565348", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f2c044c09e94279", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "ami_id": "ami-0df680aa6b7f4eb0e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0daa2aaff2c8e3c74", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "ami_id": "ami-0c5a6b1577dab026f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc85cd20dfa2ed8d", + "ami_id": "ami-07d895e2cab61e792", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efc0c2d2278c2936", + "ami_id": "ami-0945b21cd7d7f21bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c88e5d9bd70e0c6", + "ami_id": "ami-07cd9322bf65a1d2c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10733,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b91f3efad17de577", + "ami_id": "ami-03ebb6a52719fa527", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2bfca3c9d16280d", + "ami_id": "ami-0c5b69a05af2f0e23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2f716754add2659", + "ami_id": "ami-096bb303c51f7b3f4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0253eecd844ab6060", + "ami_id": "ami-0309369aa9694281c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02625fa987a246214", + "ami_id": "ami-0869415c8417ff302", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,6 +12134,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -10829,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054a6fb6980eb8fd0", + "ami_id": "ami-0e3482b8bd1262d59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d792cf1bbdca66df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08c90fc2d7dac7bf1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020a983642f4b5876", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-02e9db968df3546fd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200827 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200827-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa5eac46d3cdd22d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0303610b63d913ff6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035c2aab78de42c05", + "ami_id": "ami-080fa7f39e5b767d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10909,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009b78394550fcc22", + "ami_id": "ami-0a7141be8733dcc63", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cd76a0e8dc5a6d3", + "ami_id": "ami-0e2d6e44ca447afa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1b522f85b81f98e", + "ami_id": "ami-037203a60dc74c167", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05955776db5f2f840", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "ami_id": "ami-0213942f7be0fc4b9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e9b17c2a5411ea2f", + "ami_id": "ami-069b5eddd9629c13e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062568153dd3b43a2", + "ami_id": "ami-0546a6a870e777d97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0767b0f324c37fd5c", + "ami_id": "ami-07efba5ef7cf9d465", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c790eb5abc7aa1cb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-01c871bd127994f6c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b72ce8a3f5c29a7e", + "ami_id": "ami-0c8a892ebcca7fc7a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb43ca4e9fb392e5", + "ami_id": "ami-0a03513350f08b2bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0da86ff97c864d1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-0fdcaa41a2d806875", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0210f4d072a0aa24d", + "ami_id": "ami-0226a3f6351ce07f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c27b3b35bd7f06af", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-0c68f952153c18847", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2ea3ecc747e300f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-01fb9b8925e17fd73", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a47fb89d15f09ed", + "ami_id": "ami-045072b7ebd2e0339", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d57c0aef2097f15", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", + "ami_id": "ami-04ac6aca5bd4003c5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0339c2625c277633a", + "ami_id": "ami-09556485af3868247", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a40ed7e422ec3f7b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "ami_id": "ami-075f725f5b25119bf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f853dec7ba3b95a9", + "ami_id": "ami-09b9773ea5680d845", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5c97a24586b5d61", + "ami_id": "ami-04701aabb3f8b4d74", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0270f30b835a5d2c1", + "ami_id": "ami-0037244947840df1c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11245,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091bf462afdb02c60", + "ami_id": "ami-0c50c88b0c709f084", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd83fbe170218bda", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "ami_id": "ami-0b990c05b4d8358f9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042747b36d74e6199", + "ami_id": "ami-0855712a34b3f2bf5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c987fd23e4898dee", + "ami_id": "ami-07ad4619f7b6cd056", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009122d67aa62493d", + "ami_id": "ami-073e8a1188084ea61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01854a08f7ce76245", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "ami_id": "ami-07f2c044c09e94279", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b3842d01881b123", + "ami_id": "ami-0cb43ca4e9fb392e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5d3bdf69c09b0b9", + "ami_id": "ami-0bb9a87fd82564ce9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f73bc1ac26698b4a", + "ami_id": "ami-01adcf6d3d27383a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095d0f1be2f2e82dc", + "ami_id": "ami-0b8b6581ffdc77053", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096cae9fe50bd4d8f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0928adf61391027d0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04025ce6f33ddef1f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "ami_id": "ami-0fec50b48d2b32e2c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210805-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7be416a84af0888", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-02fa3dbb74a453084", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a47eb5f85b07481e", + "ami_id": "ami-0d540d379a7896827", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200915-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00287118e17ea1ca7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-02672c9e282d0afdb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c245525afd552be8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-0c3e036f6cc1a5b74", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016c34b12652edbb6", + "ami_id": "ami-09357455c83ec914d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05436f7d28d68c83a", + "ami_id": "ami-0a5c97a24586b5d61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a597600270fbb5f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "ami_id": "ami-0e6ee93f1e86eb871", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08794ad3f2f72a83d", + "ami_id": "ami-050865a806e0dae53", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b52dceabb6e83aec", + "ami_id": "ami-04c2b121d2518d721", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072c947938ae36271", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01b07727ef9c54311", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a27914c7ec8b4092", + "ami_id": "ami-03fddb69715de7473", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003375b60ebe663bc", + "ami_id": "ami-0bb86540425b6f85f", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c83cee0a0f6addd9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "ami_id": "ami-00da0c1e473d9b98e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ae9cbb6bf5d4127", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "ami_id": "ami-0920ef3608aa17d63", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003c37e0e7439d3ab", + "ami_id": "ami-0813aa762a2f05419", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5885cad68331575", + "ami_id": "ami-0cde557a2f29dd76a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0137390f57a92f66e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-03f6664e98628ce3d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f3bb44634eed08be", + "ami_id": "ami-0a6dd2dfe55885625", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0195245045600e318", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-03a195580261f40db", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0584bb34329452bab", + "ami_id": "ami-07c2124e08654f931", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02949e28f844e1e75", + "ami_id": "ami-0d9729a673e46f18c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09393c46bf411c8ea", + "ami_id": "ami-0940a6fb1d5fe0e7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a27a7f948f11cb32", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07c01b469230a0fc0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fb0f1de730927d3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6ac4cbc1c2b895d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e181feb36b1014c", + "ami_id": "ami-04bde449bad3d707c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0866b8c2cfda510b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-0ca861d4d9c4b1115", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01014b4d9272533de", + "ami_id": "ami-0fe288f5042d28ac0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f590d66d16545a30", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "ami_id": "ami-08d4fe232c67b81b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066717cf6e0da8f50", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "ami_id": "ami-03d1f6f139aca5f94", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0221d859c75bb04", + "ami_id": "ami-06ef63e57a8745423", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02dce1f50f37981a2", + "ami_id": "ami-07d16dcba5870e773", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn-ami-2018.03.20191114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2c6deef55eaee73", + "ami_id": "ami-07012db125f76393e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035e386e4c4a6a500", + "ami_id": "ami-0f3bb44634eed08be", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac9f90d0e223daa4", + "ami_id": "ami-07d57c0aef2097f15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bad6552c2f794ebb", + "ami_id": "ami-0f9e7ad4abf49df6b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dbd2def0865b0ab", + "ami_id": "ami-0339c2625c277633a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0213942f7be0fc4b9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00cb844d8a339a942", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12029,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef403694e9d156b7", + "ami_id": "ami-036d679e3abe2244c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0705c968c7f0a3b1e", + "ami_id": "ami-07587c4ea02f0b8df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0649de16c9cf07093", + "ami_id": "ami-003cb73efe1eb03cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12077,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0689726e1a700ed66", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "ami_id": "ami-002105a5c70977e51", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0495c0ddc0a94a551", + "ami_id": "ami-0eef73af97db71658", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b073ce083a1241d5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "ami_id": "ami-0ed38fbf7a441cff9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab1966ee863c98fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "ami_id": "ami-0fee7c0c9c1f58485", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08348b56dc2675995", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-003f1a71259a73acf", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a95cc4e5c705e1dc", + "ami_id": "ami-06b264eab0a1e04d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078b557e10479a651", + "ami_id": "ami-0017a79430c28ef34", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4eb8642b96751a3", + "ami_id": "ami-0ba076ee2477bbf3c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bfa5336bc93e2bce", + "ami_id": "ami-0e2a8e5fd90633002", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f544a718b01b70e1", + "ami_id": "ami-0a91fa3b27488b46b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076798a2c06ff7646", + "ami_id": "ami-01a604c08705c3e7f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037bb88948235e17b", + "ami_id": "ami-04f0675fbc62b5f03", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb977d074b57acc0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "ami_id": "ami-043dee3beda80d77e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002249a6fc4fb59fe", + "ami_id": "ami-08b3842d01881b123", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cd1755adbfea525", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04770d89e9dedfa8b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f6664e98628ce3d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c76fe584a60081f6", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb4d27739848cc7e", + "ami_id": "ami-067a3feb521f9387a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec2bea4c18d460a3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-010555e73bb5146b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017df918e34bb078e", + "ami_id": "ami-0fd22eecc347e5378", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0546a6a870e777d97", + "ami_id": "ami-08b2a7e4ea6cbcaff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be704e4a6b15924c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "ami_id": "ami-0cf58ca797fd5428a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010816a5f93b0182b", + "ami_id": "ami-04d48e6b68898b1e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf02969983d4304c", + "ami_id": "ami-04ae5080b13999c93", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf0454a48bf01ed7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-065c0bd2832a70f9d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.f x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn-ami-2018.03.f-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d775e673651754a", + "ami_id": "ami-08191541efc2dd370", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ced3cf5466697972", + "ami_id": "ami-0b1081e8fbef477db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a85a34a2bdf6fe1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "ami_id": "ami-0cdc23ac5d84d39f1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0669b994780198e2e", + "ami_id": "ami-0647ccfd9cd1fc7fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12525,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0583e6c8e77715350", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-0a910aabebf670d27", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12541,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fccea33ce778e78", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0bdd773e19f335095", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12557,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029ad89cee8435b53", + "ami_id": "ami-038db37e2c1059a32", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12573,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06227143764cbe5b6", + "ami_id": "ami-0e7be416a84af0888", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190107 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190107-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12589,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085364f2a0c5b6458", + "ami_id": "ami-017de0d19a90b728d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12605,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0427416aa4778f308", + "ami_id": "ami-0f853dec7ba3b95a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12621,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09ddc96bc3d38df8e", + "ami_id": "ami-098c80dcb48da48e6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12637,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f005876d00fa81fc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-005fe3f919c4188a2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12653,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1409bf94faa559f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "ami_id": "ami-06994b593b83699d9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12669,15 +14106,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08562df827666baa2", + "ami_id": "ami-0faa5fb6ad9189862", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12685,15 +14123,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0244ed1d6505ddd87", + "ami_id": "ami-01308997d4554a2f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12701,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c3d6e89aaba9605", + "ami_id": "ami-05c6d22d98f97471c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12717,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3a2a9fab44cd957", + "ami_id": "ami-01b72642a5b9b61a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12733,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0260d0739b6f69ee3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0268805410e1565cd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12749,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3739917e15fe802", + "ami_id": "ami-0cf02969983d4304c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12765,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e8aa250fef09add", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0501ad0f1879c065c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12781,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065c0bd2832a70f9d", + "ami_id": "ami-05b4e7e304897c3bc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.f x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.f-amazon-ecs-optimized", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12797,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a8f19679a9ef48d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0392f17042b69e182", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12813,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdd773e19f335095", + "ami_id": "ami-07b1abc207b5bf50e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12829,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1debaf45857e9b2", + "ami_id": "ami-0f35533fd3be0df70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12845,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd22023929c71792", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "ami_id": "ami-03a0e4624521b6b7f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12861,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df908cbf2fb4855b", + "ami_id": "ami-0b73ce102ee2e5b5a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12877,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047669ec172edcfa6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0334fe548017b95fc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12893,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb636837b2167e1d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-09dd721a797640468", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12909,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce4743e4bcac7f7e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-003f6138d50a592b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12925,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0869415c8417ff302", + "ami_id": "ami-03bf9ce1ee81e994a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12941,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002105a5c70977e51", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-06bb391112266ca82", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12957,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03aefcb45bf124028", + "ami_id": "ami-05eb68e514c138ae6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12973,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c424edd98dbec996", + "ami_id": "ami-09ddc96bc3d38df8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12989,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba076ee2477bbf3c", + "ami_id": "ami-022b83877f7f904c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13005,15 +14463,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b264d2db52dc3a0", + "ami_id": "ami-059b46f0f0d17ce86", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13021,15 +14480,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c01b469230a0fc0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-05878feda8c8cf05b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13037,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b3dbb1c01439d89", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04f3fa3c93a5c1bc1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13053,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0ca2e780e21103c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-05756a37f79ebefe5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13069,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0d22d7344a2d33c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "ami_id": "ami-0b073ce083a1241d5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13085,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9e7ad4abf49df6b", + "ami_id": "ami-0f625f9bfb7303b20", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13101,15 +14565,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08222ba0572c64812", + "ami_id": "ami-0615a0c0121c2fa64", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13117,15 +14582,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010555e73bb5146b6", + "ami_id": "ami-0f4ab5bf84166373a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13133,15 +14599,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cd84842385987f2", + "ami_id": "ami-0beb9cdf3ec3d324e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13149,15 +14616,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0aac9c418afee0c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "ami_id": "ami-088b0f850c98fb893", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13165,15 +14633,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b620cf314bc9f477", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "ami_id": "ami-0fa0bf6e5fde20871", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13181,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ed82a3e8b31bc94", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-05b3083b83311bcc9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13197,15 +14667,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d80b2d648e14d16", + "ami_id": "ami-0e44b86b31521405a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13213,15 +14684,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7046e1d357b6b85", + "ami_id": "ami-0dcc11fdfb472d7d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13229,15 +14701,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfd0f227eabe017b", + "ami_id": "ami-024fdc61d5cf53669", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13245,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0de8218d49ba63bef", + "ami_id": "ami-0047bfdb16f1f6781", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13261,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0132196a6b5529202", + "ami_id": "ami-00ae2723e3c86c93e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13277,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0609ede7d87496b1c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "ami_id": "ami-0f170fcf9653bf11d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13293,15 +14769,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2bb46237ed296af", + "ami_id": "ami-04853d61326d07a0d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13309,15 +14786,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0146bc7577c722658", + "ami_id": "ami-099bad827242d58a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13325,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09df7bed19956d10b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "ami_id": "ami-0c6aef984502b8ede", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13341,15 +14820,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca757e0169c8b7d9", + "ami_id": "ami-00e646c3114068b16", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13357,15 +14837,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a2982c76905acef", + "ami_id": "ami-093f34f81f0490f71", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13373,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0923f4de6ef1d961d", + "ami_id": "ami-0b970016d0d9ff8f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13389,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab66964324813792", + "ami_id": "ami-0a5604325453d44e9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13405,15 +14888,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051fb9ba0789eff4f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0240730614164f057", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13421,15 +14905,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031921608fa6afddd", + "ami_id": "ami-0f230e7ef1a0b2702", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13437,31 +14922,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-dabdfb30", + "ami_id": "ami-062c95132f5843ff2", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", + "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e9d215663a4c007", + "ami_id": "ami-0e9b17c2a5411ea2f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13469,15 +14956,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06663ca27c0e2e306", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-079bed3f1ae367600", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13485,15 +14973,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0037244947840df1c", + "ami_id": "ami-0f73bc1ac26698b4a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13501,15 +14990,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a34938816496979f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-042499b6ce91629ca", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13517,15 +15007,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0815b72d6ae880103", + "ami_id": "ami-0cfa6ffdd3eae1106", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13533,15 +15024,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df286aadb218ff7e", + "ami_id": "ami-0dcd784d881aa1ad5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13549,15 +15041,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000acc9e1be48cb07", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "ami_id": "ami-019aa18d9f5a6a976", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13565,15 +15058,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da26f95cbfee36fc", + "ami_id": "ami-0a40ed7e422ec3f7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13581,15 +15075,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bba7275474fc9af", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "ami_id": "ami-0ca5663a4bb8e868f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13597,15 +15092,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ec60e1e81816f59", + "ami_id": "ami-0bd73cfe2202fc91a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13613,15 +15109,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021ef324b34fee0c6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0fe160f3f5d104db1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13629,15 +15126,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fc83b69e3d07c9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-0db3f8a2b93f010d3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220520 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13645,15 +15143,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b1186dac9226aac", + "ami_id": "ami-0b8f68267311ff2ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13661,15 +15160,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-846144f8", + "ami_id": "ami-0649de16c9cf07093", "architecture": "x86_64", - "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13677,15 +15177,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007d526cd3898e719", + "ami_id": "ami-07a47fb89d15f09ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13693,15 +15194,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0108ebda02138676e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d84ff23cc77ac9de", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13709,15 +15211,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065d37ce21ef5bed5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "ami_id": "ami-0ddcf0789365a65e5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13725,15 +15228,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0791c84a135845cef", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "ami_id": "ami-020a983642f4b5876", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13741,15 +15245,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a245b3d989f7b32", + "ami_id": "ami-03a2fd4501054710e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13757,15 +15262,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00100469ca2a34fa3", + "ami_id": "ami-05c6f231be1b842ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13773,15 +15279,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e1415e6cb9139dd", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "ami_id": "ami-03aefcb45bf124028", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13789,15 +15296,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c6d22d98f97471c", + "ami_id": "ami-07fcc5b181b50e822", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13805,15 +15313,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9729a673e46f18c", + "ami_id": "ami-00521dc43e51e9181", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13821,15 +15330,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a04fe606380cd34", + "ami_id": "ami-00c27030102473a29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13837,15 +15347,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a3a1a1d48eb6015", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-03f76db4801959b5b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13853,15 +15364,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1336e91e4fc4782", + "ami_id": "ami-07c17dda32e45bf9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13869,15 +15381,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059eb46bf4379f413", + "ami_id": "ami-080cdc1184ac6b4fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13885,15 +15398,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abff52ddf0906d8e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-064345363a9e10ef7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13901,15 +15415,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5604325453d44e9", + "ami_id": "ami-0f44fdc7a6d8636b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13917,15 +15432,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004b1c28144325af1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-0290cefd014c6efe7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13933,15 +15449,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ea037f5628240ad", + "ami_id": "ami-0c973ad6baa8cb1cf", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13949,15 +15466,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f3eb384ebc387b3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "ami_id": "ami-09965235741cea1a7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13965,15 +15483,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e28ff4e3f1776d86", + "ami_id": "ami-03e9710d43e23455c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13981,15 +15500,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0996cfb3acf118b24", + "ami_id": "ami-0fd83fbe170218bda", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13997,15 +15517,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b990c05b4d8358f9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0eb4239fe0f64fe58", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14013,15 +15534,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cbc7353fe0cb016", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "ami_id": "ami-060761d9129f18887", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14029,15 +15551,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f623f40714ad66a", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0a9e33e79895e93e1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14045,15 +15568,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03201e268e6830317", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", + "ami_id": "ami-093d4a6f7f6350149", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14061,15 +15585,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c2d587b92f4f3f2", + "ami_id": "ami-846144f8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14077,15 +15602,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f35e2da2976f9f71", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-024b5d42c60cae985", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14093,15 +15619,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f539b19cf465552", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "ami_id": "ami-0291e8e5d5bba3cee", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14109,15 +15636,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac5c7ab6f0eab7c8", + "ami_id": "ami-00ac44fc9dd15cc1d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14125,15 +15653,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3e5d95bf6fba196", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "ami_id": "ami-0b6d6bb36ea9de518", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14141,15 +15670,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078e078761b0e1f90", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", + "ami_id": "ami-0405ce18cc1d96fc4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14157,15 +15687,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e8c29fe2825ca96", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0eba082e3536a7b8d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14173,15 +15704,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b38043d286bd96dc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "ami_id": "ami-04438c6446ece5b32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14189,15 +15721,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0167d4afc8591fe51", + "ami_id": "ami-0fa00d20cc2fa3c81", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14205,15 +15738,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0353a293f5da1eda8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "ami_id": "ami-07bdbe7092756b552", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14221,15 +15755,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd73cfe2202fc91a", + "ami_id": "ami-0222e9cacf82c3605", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14237,15 +15772,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0795792e1d2bf202d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-09bbd9c06449a97b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14253,15 +15789,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0367b769648c3d41a", + "ami_id": "ami-05955776db5f2f840", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14269,15 +15806,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c143ce0a20041481", + "ami_id": "ami-0f2d859a7d82c4f40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14285,15 +15823,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093df4839e8df694e", + "ami_id": "ami-0f7753514e1db57e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14301,15 +15840,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a3e78b847c3af40", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-08cc10ecfd49a551d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14317,15 +15857,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e28f01392735c38d", + "ami_id": "ami-0f71e1253f7e998af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14333,15 +15874,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099bad827242d58a9", + "ami_id": "ami-08a3a1a1d48eb6015", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14349,15 +15891,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bff88a293999f8c", + "ami_id": "ami-0e6e18cc4952d4622", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14365,15 +15908,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037e8c289fe141585", + "ami_id": "ami-06399e09b860848f5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14381,15 +15925,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044842f550f1fb2b7", + "ami_id": "ami-05ab26c7c5e3ee40d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210623-x86_64-ebs", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14397,15 +15942,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3f70f0255af1d29", + "ami_id": "ami-09e1beca07dd0e734", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14413,15 +15959,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09072dd572d19b20b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "ami_id": "ami-0ba00a57f9a169b2a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14429,15 +15976,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ac22dd1478a13ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "ami_id": "ami-0c9c2fc5169a16290", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14445,15 +15993,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02549261833f78c40", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06cc3edba901a8022", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14461,15 +16010,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b272cd224458ea7d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ae34c1ad08b7c2ae", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14477,15 +16027,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c40420d7aba7c57e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-000a516706f289e52", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14493,15 +16044,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ffdfce4b6b1edab", + "ami_id": "ami-065564bc852e6f8b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14509,15 +16061,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0401f332a3a697116", + "ami_id": "ami-0b272cd224458ea7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14525,15 +16078,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059b46f0f0d17ce86", + "ami_id": "ami-014ae7f8ad6e16e24", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14541,15 +16095,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0855712a34b3f2bf5", + "ami_id": "ami-05436f7d28d68c83a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14557,15 +16112,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8baaccc62ee0a9f", + "ami_id": "ami-0f0b19a45f8e478fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14573,15 +16129,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063c40d4cff786d60", + "ami_id": "ami-0ed541c8906941712", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14589,15 +16146,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06be2545447320ae9", + "ami_id": "ami-09393c46bf411c8ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14605,15 +16163,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d47956b0ea595c7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "ami_id": "ami-054156cbd17db5df1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14621,15 +16180,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3e036f6cc1a5b74", + "ami_id": "ami-07edb61f012da2f68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14637,15 +16197,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e94ed750e0420ade", + "ami_id": "ami-0a0dbfe30685a020c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14653,15 +16214,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013e1d4bbdf263b6f", + "ami_id": "ami-0a34938816496979f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14669,15 +16231,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9d27eb102c9f32f", + "ami_id": "ami-00100469ca2a34fa3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14685,15 +16248,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055b5f9a90dfadea4", + "ami_id": "ami-04ac22dd1478a13ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14701,15 +16265,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d01c8832e8b0915b", + "ami_id": "ami-09bf8d691112d249e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14717,15 +16282,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c27030102473a29", + "ami_id": "ami-040aa971744f6cf23", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14733,15 +16299,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093f34f81f0490f71", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c7f7cc03d05d1ad8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14749,15 +16316,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d242941de637dea8", + "ami_id": "ami-00237a21ff6310ec6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14765,15 +16333,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004be38b70fc6688d", + "ami_id": "ami-0b817faa8dade18e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14781,15 +16350,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0fc8cb70df2eef4", + "ami_id": "ami-0f24a2f10d49196b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14797,15 +16367,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f170fcf9653bf11d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-0f35e2da2976f9f71", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14813,15 +16384,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0769cbdffa9a4c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-04d437326e0120355", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14829,15 +16401,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd22eecc347e5378", + "ami_id": "ami-0b4eb8642b96751a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14845,15 +16418,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09357455c83ec914d", + "ami_id": "ami-04f9ce82070df3b6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14861,15 +16435,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a46ae73211cef07", + "ami_id": "ami-0c245525afd552be8", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14877,15 +16452,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0545c5417d5a50bd9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0eb11f016d7d9e413", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14893,15 +16469,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0276cae19c50718d0", + "ami_id": "ami-00ed888cc436dd7c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14909,15 +16486,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01086f4a8bd6f847b", + "ami_id": "ami-0b68661b29b9e058c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14925,15 +16503,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0392f17042b69e182", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-0f7c96e0c0028c53e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14941,15 +16520,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d518a21f8d440e0", + "ami_id": "ami-02e1e98be0c632cfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14957,15 +16537,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa63422c3b137666", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220509 x86_64 ECS HVM GP2", + "ami_id": "ami-0fa5eac46d3cdd22d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14973,15 +16554,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ba46ee093104a5a", + "ami_id": "ami-00f4aafa990072233", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14989,15 +16571,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08137a0887d25b8bd", + "ami_id": "ami-078b3c7c73c5a2ff4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15005,15 +16588,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b89dd90d350f70e", + "ami_id": "ami-0d3f6080027b598fe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15021,15 +16605,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9d1088f02469569", + "ami_id": "ami-018d5e73c9309e0e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15037,15 +16622,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004a1c76ee8e91c7c", + "ami_id": "ami-050ab9d57a47e88a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15053,15 +16639,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0daf64747e25e552f", + "ami_id": "ami-02a25470102c81744", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15069,15 +16656,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe8765cd7065dc03", + "ami_id": "ami-04a04fe606380cd34", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15085,15 +16673,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd1daf5da8a9a903", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "ami_id": "ami-07207991a2e81a7ce", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15101,15 +16690,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dd721a797640468", + "ami_id": "ami-01b5a389f25cc42a1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15117,15 +16707,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0627e2913cf6756ed", + "ami_id": "ami-00f596fcbda0cebcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15133,15 +16724,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020a6bd1506702d71", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", + "ami_id": "ami-0daa2aaff2c8e3c74", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15149,15 +16741,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06399e09b860848f5", + "ami_id": "ami-0a4fb148cbdf5eea1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15165,15 +16758,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbc3b9e64a28c5d6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0a49d5c378c014760", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15181,15 +16775,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b970016d0d9ff8f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "ami_id": "ami-0b8cb6f04dd554018", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15197,15 +16792,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061176cfbb7257e43", + "ami_id": "ami-02d8afb867a2d5fc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15213,15 +16809,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e60d311f5713062d", + "ami_id": "ami-03615fd9ef545c196", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15229,15 +16826,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0766f4e6147ae6dff", + "ami_id": "ami-0bb1d00a6460dda73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15245,15 +16843,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d8afb867a2d5fc6", + "ami_id": "ami-0ef403694e9d156b7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15261,15 +16860,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05dfc2bb8127d9355", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "ami_id": "ami-06ea3fbe21f6e9500", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15277,15 +16877,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ac6aca5bd4003c5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-06d31bae124726404", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15293,15 +16894,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b5a389f25cc42a1", + "ami_id": "ami-01771b4e0938a69e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15309,15 +16911,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0928adf61391027d0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03af05ca012fd9ab5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15325,15 +16928,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0658045015db398b6", + "ami_id": "ami-058be37cd6ba929cd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15341,15 +16945,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09556485af3868247", + "ami_id": "ami-015a1b6cc11d63077", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15357,15 +16962,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065b344a81208c28c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "ami_id": "ami-0530e30eaddc202ce", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15373,15 +16979,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004bab50c38c626aa", + "ami_id": "ami-0ef5e578dfbce903c", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15389,15 +16996,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f35533fd3be0df70", + "ami_id": "ami-00278804efb76f101", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15405,15 +17013,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f313f671565f813", + "ami_id": "ami-06590f2c69395a8e1", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15421,15 +17030,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b8afc6ee0864cdc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "ami_id": "ami-0f1debaf45857e9b2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15437,15 +17047,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03aaaa45dffb52e0a", + "ami_id": "ami-091d0c5836273bca9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15453,15 +17064,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0844550712536a33b", + "ami_id": "ami-06b9c755c56caa177", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15469,15 +17081,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0244975dff958eb27", + "ami_id": "ami-0a3739917e15fe802", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15485,15 +17098,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009db3bbccf23215a", + "ami_id": "ami-0e930a76eb108a20c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15501,15 +17115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0100f9c0536060f4e", + "ami_id": "ami-0c2bc6692a369f61f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15517,15 +17132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e6476d77d9dfce2", + "ami_id": "ami-059eb46bf4379f413", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15533,15 +17149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b1abc207b5bf50e", + "ami_id": "ami-071e753ada6dd9342", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211209 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15549,6 +17166,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -15565,15 +17183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08995bc75ffd48b72", + "ami_id": "ami-04bd95d273327d4df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15581,31 +17200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d2ffabfbd38ccd28", + "ami_id": "ami-0231bfc951ec6b578", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", - "owner_id": "591542846629", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-001e0c18eb90b2568", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15613,15 +17217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae34c1ad08b7c2ae", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-04f3eb384ebc387b3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15629,15 +17234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0b84c32c6503d59", + "ami_id": "ami-05357ea4dad5e2cf4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15645,15 +17251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c90fc2d7dac7bf1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "ami_id": "ami-0f589a17ab9a89bec", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15661,15 +17268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5b69a05af2f0e23", + "ami_id": "ami-0a715b67a350cdf88", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15677,15 +17285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bb5da433d61c18a", + "ami_id": "ami-020a6bd1506702d71", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15693,15 +17302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0501ad0f1879c065c", + "ami_id": "ami-0a01ee19565d9edbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15709,15 +17319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0718c156add327ed6", + "ami_id": "ami-0252bac01daf23750", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15725,15 +17336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae85479bb0918b39", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-028dc84568dd7c888", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15741,15 +17353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b2a7e4ea6cbcaff", + "ami_id": "ami-08995bc75ffd48b72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15757,15 +17370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05afb293ec36831e0", + "ami_id": "ami-0a6906b923ba2b9ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15773,15 +17387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9c2fc5169a16290", + "ami_id": "ami-0c37058383d73ea7f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15789,15 +17404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0827de5a738b0659c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-0cb4d27739848cc7e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15805,15 +17421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-071ea2925c85924b8", + "ami_id": "ami-0f019930739558712", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15821,15 +17438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016f8f13f93b79237", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "ami_id": "ami-009db3bbccf23215a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15837,15 +17455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b21b19e561e2dc29", + "ami_id": "ami-08222ba0572c64812", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15853,15 +17472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0266fa02a666d034a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "ami_id": "ami-09ad21f130af0b5b1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15869,15 +17489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0290cefd014c6efe7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "ami_id": "ami-071ea2925c85924b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15885,15 +17506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098f71ec4edf502d3", + "ami_id": "ami-0c0769cbdffa9a4c1", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15901,15 +17523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05f9337bda8f7758a", + "ami_id": "ami-0cf89587378b734db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15917,15 +17540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d4fe232c67b81b8", + "ami_id": "ami-081a18108c841ed9e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15933,15 +17557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ea3fbe21f6e9500", + "ami_id": "ami-01bba7275474fc9af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15949,15 +17574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b3083b83311bcc9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-0d01c8832e8b0915b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15965,15 +17591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06994b593b83699d9", + "ami_id": "ami-0a47a96cbc11f4116", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15981,15 +17608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003cb73efe1eb03cc", + "ami_id": "ami-0146bc7577c722658", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15997,15 +17625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01813416d767d88db", + "ami_id": "ami-09df630cc4e99ce0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16013,15 +17642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f0675fbc62b5f03", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-0d0b84c32c6503d59", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16029,15 +17659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069c4f8ffeae03127", + "ami_id": "ami-08794ad3f2f72a83d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16045,15 +17676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c8e76033c0051b1", + "ami_id": "ami-0e88b1048a5b89e99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16061,15 +17693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed38fbf7a441cff9", + "ami_id": "ami-051d3754f2b9a8376", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16077,15 +17710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe163119b09f07be", + "ami_id": "ami-07b250f2f1f26c0a5", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20220509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16093,15 +17727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ad574b060e7bf70", + "ami_id": "ami-0e28ff4e3f1776d86", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16109,15 +17744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054156cbd17db5df1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-0431766b2a04d1a7d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16125,15 +17761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9f54284a39c79a0", + "ami_id": "ami-0ec7ce069c5354b3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16141,15 +17778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093e9d8ce33ea64f6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "ami_id": "ami-0153fd8c2692db1b7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16157,15 +17795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c967fd1658d16302", + "ami_id": "ami-062827b3401298389", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16173,15 +17812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bbd9c06449a97b8", + "ami_id": "ami-06227143764cbe5b6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190107 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190107-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16189,15 +17829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed541c8906941712", + "ami_id": "ami-0436520b1a44e0985", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16205,15 +17846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c2b121d2518d721", + "ami_id": "ami-091bf462afdb02c60", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -16221,15 +17863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d139487eea74515c", + "ami_id": "ami-018b35a1c6c2302c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -16237,15 +17880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c3bb4e378fe2d87", + "ami_id": "ami-064850f904eb8caf8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16253,15 +17897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fdd7696faf04663", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "ami_id": "ami-007bc187e1ec3a328", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16269,15 +17914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6e9ed7f22d7f234", + "ami_id": "ami-0cbcc25bfb4880bbf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16285,15 +17931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1081e8fbef477db", + "ami_id": "ami-09df7bed19956d10b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -16301,6 +17948,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json b/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json index 96511de1a8a6..e976a2eaa4b2 100644 --- a/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json +++ b/moto/ec2/resources/ecs/optimized_amis/ap-southeast-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-051302d017a0ac130", + "ami_id": "ami-0c3f9e016ceab4acd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0105b7aac0f6869b5", + "ami_id": "ami-08153fdecf21d0739", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0267e832116a2026a", + "ami_id": "ami-0aee62b855f2cd185", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a315da8e364fc29a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "ami_id": "ami-0529dcd9f4ceb7947", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e68e0916a0892801", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07bf5e890fb20aba3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0044630c39191fcfa", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0c569e2f405158077", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003fd4ef4d8ad8344", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", + "ami_id": "ami-0f5a67388fcdbb2b8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d13f9c89b7e3996", + "ami_id": "ami-0ebabf740582759bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b144cba076f356a5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20201130 arm64 ECS HVM GP2", + "ami_id": "ami-0345b2b25699aeae7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039241ced08653d56", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", + "ami_id": "ami-029517bdb38391983", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d8ced3e602b6883", + "ami_id": "ami-090a76bbacbf2bfc9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210929 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eedd28c226eee94d", + "ami_id": "ami-03949bcf45f10c434", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0154839e228a38d4e", + "ami_id": "ami-0ea59c7f17635229e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0718ecfca78311efa", + "ami_id": "ami-030ae4670412c0423", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0376e4ef14388d75f", + "ami_id": "ami-0c7b4a2e83736931b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05674eb0d9fe6c76b", + "ami_id": "ami-0a0385af66ea9eefe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030af038b980a8a92", + "ami_id": "ami-0048c570678906ec2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -269,15 +285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3174520e8d77f4c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", + "ami_id": "ami-0d770005758827471", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -285,15 +302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd3f4e306034aad8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", + "ami_id": "ami-00bcae5b31b05c62c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -301,15 +319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011358576f2c8a63d", + "ami_id": "ami-0846101844d3f9e27", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -317,15 +336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08267935ed9a33ced", + "ami_id": "ami-065e3f3561453ff25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -333,15 +353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08e788bfb8d4842e0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0150e7bec62267841", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -349,15 +370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff2b186abcc13471", + "ami_id": "ami-06b7750e083adf967", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -365,15 +387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098a2a7c7f360e109", + "ami_id": "ami-0a7c4f7f17d3eecbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -381,15 +404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f262bc46acca4efb", + "ami_id": "ami-0117d207ce580d87e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -397,15 +421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2c34e9db3caf634", + "ami_id": "ami-034aa8f81724dbef3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -413,15 +438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6bcded2527ba5b6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-011c11b950369417d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -429,15 +455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3f9e016ceab4acd", + "ami_id": "ami-03068105117c66246", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -445,15 +472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdf16bb10adcaaa1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", + "ami_id": "ami-05307a1f606f14a4a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -461,15 +489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbbabd20424b2a00", + "ami_id": "ami-0ab78361f1cee9a3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -477,15 +506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006aee1e166387fa8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0bec52d270afdcd9b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -493,15 +523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b141ff8507104345", + "ami_id": "ami-03a07f8d9064c3e53", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200108-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -509,15 +540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e2d8d2a2a6be608", + "ami_id": "ami-0ee4f5816644d49bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -525,15 +557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ffb472846333069", + "ami_id": "ami-01af9d7f7031bf136", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -541,15 +574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07871a281e88666aa", + "ami_id": "ami-0822986fd40c394dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -557,15 +591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2d4c67d843bea77", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-01d30061b430d1835", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220318 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -573,15 +608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0775ca431543b2151", + "ami_id": "ami-01fc595ab92f14b8e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -589,15 +625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d373d8f27b1af82b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-057bc6e5eb5937667", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -605,15 +642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6bfb77c1bcf4cbb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", + "ami_id": "ami-0bdc7b601b5149979", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -621,15 +659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00af44767c0b9f5c3", + "ami_id": "ami-0ec3d97a6e504a1d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -637,15 +676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fa5cdd5520c13e4", + "ami_id": "ami-0f9e60a4631b1e8a8", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -653,15 +693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fbc153eab6b4ed5", + "ami_id": "ami-0429cb46f69140446", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -669,15 +710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080c1cc5c78678da8", + "ami_id": "ami-0a676b7c3b9d251ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -685,15 +727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e2a63bbd0ea5c21", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", + "ami_id": "ami-007604c4c18ff8191", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -701,15 +744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094732052c326c50f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-002a0922db693756a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -717,15 +761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5f5652eef4d2198", + "ami_id": "ami-0cc525f2d79b2a108", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -733,15 +778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0938e96f513e5cfc9", + "ami_id": "ami-06b7d0fb4c1220c87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -749,15 +795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0981d7ad52b6423", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b55e0611ceceb164", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250224 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -765,15 +812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc266b89229709e1", + "ami_id": "ami-0d26d8af5f9d2c83f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -781,15 +829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c8b0bb80f88004d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "ami_id": "ami-0f0a2afc533b41c79", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -797,15 +846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03949bcf45f10c434", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00a9c0b1099de705a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -813,15 +863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8b3b6bef6ce8e93", + "ami_id": "ami-0e98497f334e3bbd2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -829,15 +880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006e00a7bde034800", + "ami_id": "ami-008d94099de93f738", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -845,15 +897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb6587cc0c19e3db", + "ami_id": "ami-0ab3afbf5dd641616", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -861,15 +914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00562875261d37295", + "ami_id": "ami-0d08f917c2b3ae456", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -877,15 +931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e98497f334e3bbd2", + "ami_id": "ami-004083b0e6d308856", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220831-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -893,15 +948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0370e2636edb8070b", + "ami_id": "ami-03f518964f6c2a4e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -909,15 +965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014c52988da6418e7", + "ami_id": "ami-00c1cd6cec96d8dc5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -925,15 +982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03255d6f9f0f172e9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "ami_id": "ami-07f4f9831e2db7575", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -941,15 +999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002a0922db693756a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 arm64 ECS HVM GP2", + "ami_id": "ami-0d590dc3cf08e3de5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -957,15 +1016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035ce2b968e065c5e", + "ami_id": "ami-0b99b6bd253734f51", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -973,15 +1033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0601b2c5607acfc57", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06a29a6add2947822", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -989,15 +1050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee19414096cda495", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", + "ami_id": "ami-0009eb1d746c85586", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1005,15 +1067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d2e51632d4fa5b", + "ami_id": "ami-0408190b11a73de67", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1021,15 +1084,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010e0f0c50c90af93", + "ami_id": "ami-0f4cde9b8d4f532d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1037,15 +1101,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039653e744edcc156", + "ami_id": "ami-0e12e345df7cdc477", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211013-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1053,15 +1118,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04fe9766210d064b3", + "ami_id": "ami-0295ca9d272beddcc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1069,15 +1135,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08153fdecf21d0739", + "ami_id": "ami-0599c39590f69d99d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230321-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1085,15 +1152,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-bc04d5de", + "ami_id": "ami-0606a713882833d8b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1101,15 +1169,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eeabffd952fdcae2", + "ami_id": "ami-0702b6b95f7216d59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1117,15 +1186,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01faf1fd99be4c480", + "ami_id": "ami-0daedcee81e64b07b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1133,15 +1203,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0567ab192a7a7b1cc", + "ami_id": "ami-0b4c5c3fbc42666db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1149,15 +1220,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d75ea9eb0a7b6c1", + "ami_id": "ami-02c73ee1100ce3e7a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1165,15 +1237,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e6e53353ad12584", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "ami_id": "ami-039241ced08653d56", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241017-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1181,15 +1254,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-010260d57de04eb16", + "ami_id": "ami-04763b69cdfe3a360", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1197,15 +1271,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ea3f94fcc2d2f0b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", + "ami_id": "ami-079dc29e06a361f15", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1213,15 +1288,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0212af66ebfc29864", + "ami_id": "ami-0998f8763d511b9c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1229,15 +1305,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab7b34c8f1e3882e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "ami_id": "ami-0c3d2cc0a8831c827", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1245,15 +1322,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faad3c6b4ab3eee6", + "ami_id": "ami-06e2d8d2a2a6be608", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1261,15 +1339,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb4b5d61d690865a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0c23f4270be44a9da", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1277,15 +1356,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c3085acb265baad", + "ami_id": "ami-0028a70abbf17e24c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1293,15 +1373,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055a14e47e7c2ca90", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "ami_id": "ami-0cf4754c30dd266d5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1309,15 +1390,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c17bb56a8d314e09", + "ami_id": "ami-0310b7b3566b52ecc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1325,15 +1407,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec4d63557717c7c9", + "ami_id": "ami-0bd66c2a458ccaeb5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1341,15 +1424,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2b8e543486a6ddf", + "ami_id": "ami-bc04d5de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.a x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn-ami-2018.03.a-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1357,15 +1441,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d26d8af5f9d2c83f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-0d81b8daf75739c0d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1373,15 +1458,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba85714f7a3f202c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "ami_id": "ami-06ef16be50516a1a4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1389,15 +1475,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023fb6bdfa463e6a0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05280d5689b29423b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1405,15 +1492,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a3ba2a1ff585edd", + "ami_id": "ami-0074573da5a8af0e6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1421,15 +1509,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbea8e1780e231da", + "ami_id": "ami-0bdce8da35f3b3241", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1437,15 +1526,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00472dd1b8758558a", + "ami_id": "ami-0c4fb89e38a885991", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1453,15 +1543,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c621ca32de56e7a", + "ami_id": "ami-0e31e55bf26b307ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1469,15 +1560,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089148f7fabfed089", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "ami_id": "ami-0e547e72a7e6140c0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1485,15 +1577,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036c2a8b25cac9aff", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", + "ami_id": "ami-038b138f4ac782a9b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1501,15 +1594,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0481619781e830899", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-058b1211350aeeff9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1517,15 +1611,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070ce54d95633765d", + "ami_id": "ami-0593d7e1431e9c0c2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1533,15 +1628,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d54e6214440d1f34", + "ami_id": "ami-09c68a3e24d2d692a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1549,15 +1645,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af94e5575170fd8a", + "ami_id": "ami-0d3585501f0a05feb", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1565,15 +1662,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08acf5fe7ee6ae359", + "ami_id": "ami-03c459b1b4740a344", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1581,15 +1679,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b5ee90865e2ca29", + "ami_id": "ami-08016d025c2c0bbf2", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1597,15 +1696,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a45c5a6e9ebfab56", + "ami_id": "ami-0b83c21e6f50944c7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1613,15 +1713,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba6df717ed766b7c", + "ami_id": "ami-04482e72bd64b37f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1629,15 +1730,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0180561e795dcecc6", + "ami_id": "ami-07dcc6b31e4683277", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1645,15 +1747,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a721a595fb482639", + "ami_id": "ami-046f9a4716a10bfa3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1661,15 +1764,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fc6d7ecd6009b49", + "ami_id": "ami-01a1fc28e14c6f5aa", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1677,15 +1781,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0279421890d4beee7", + "ami_id": "ami-04490644a5a2dc384", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1693,15 +1798,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c473930d59c46d9", + "ami_id": "ami-054f8915cc9b5f19c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1709,15 +1815,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e12e345df7cdc477", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "ami_id": "ami-0443f54b4d27184c1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1725,15 +1832,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03068105117c66246", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-0bcfafb04e7771ee0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1741,15 +1849,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cec0545d976021fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "ami_id": "ami-0cb4b5d61d690865a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1757,15 +1866,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f198e4bfc1509e6a", + "ami_id": "ami-0591aa8e7196be4e8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1773,15 +1883,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026a606808d698246", + "ami_id": "ami-0fbbabd20424b2a00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1789,15 +1900,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0906f7f9038002c81", + "ami_id": "ami-0cc25923e20d463eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1805,15 +1917,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0461e29314e674a80", + "ami_id": "ami-0d61b06dc8e184310", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1821,15 +1934,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e6d14c64f649627", + "ami_id": "ami-0ae02640a3cc52cc7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1837,15 +1951,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038ecd138b512cf3d", + "ami_id": "ami-04027e4a816532643", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200820-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1853,15 +1968,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec3d97a6e504a1d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-083a9223abd9f4c11", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1869,15 +1985,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c68a3e24d2d692a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 arm64 ECS HVM GP2", + "ami_id": "ami-0b296e50caaa70e0c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1885,15 +2002,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c38a7ac914741b7", + "ami_id": "ami-0f92910c6c643d2cb", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1901,15 +2019,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f952024ca2efb733", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ca8a3982d56fdb1d", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "name": "amzn-ami-2018.03.20200623-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -1917,15 +2036,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0222c5f51388e7693", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0bd3f4e306034aad8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240610 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -1933,15 +2053,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0591aa8e7196be4e8", + "ami_id": "ami-0c7dea114481e059d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1949,15 +2070,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07abebf506618ed08", + "ami_id": "ami-0439dfaca527d1527", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1965,15 +2087,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dcc6b31e4683277", + "ami_id": "ami-06004c3fd2e44693a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1981,15 +2104,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-090185eacedfbc241", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "ami_id": "ami-0b144cba076f356a5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20201130 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -1997,15 +2121,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5a6709233aa5776", + "ami_id": "ami-04a8745595e475d06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2013,15 +2138,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0904d4fd3855c03c9", + "ami_id": "ami-057bbb7a5b229f853", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2029,15 +2155,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0565715aee2d40c48", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "ami_id": "ami-0d54e6214440d1f34", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2045,15 +2172,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dca40bad9f1728d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "ami_id": "ami-01ef50bc140d4ffbb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2061,15 +2189,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015b77d48e6071bc6", + "ami_id": "ami-0ef40a6ba08c4b9b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2077,15 +2206,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0439dfaca527d1527", + "ami_id": "ami-091469e4fdf00e0ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2093,15 +2223,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e2cb49b9f04becc", + "ami_id": "ami-090185eacedfbc241", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2109,15 +2240,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04664860a1e1e2961", + "ami_id": "ami-0163c621eb8afc696", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2125,15 +2257,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f1b99b37f55b86a6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", + "ami_id": "ami-0e63ea5a1aa52a8a4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2141,15 +2274,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f92910c6c643d2cb", + "ami_id": "ami-0a81254a19a30da42", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2157,15 +2291,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc525f2d79b2a108", + "ami_id": "ami-0ebb73c7ce7e9723b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2173,15 +2308,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c486c092f8ae3050", + "ami_id": "ami-0edae1f47e88c618e", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2189,15 +2325,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d96e67bf8c9603c3", + "ami_id": "ami-0be5b06d97bf1ff13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2205,15 +2342,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061f60917a06a83a5", + "ami_id": "ami-0212af66ebfc29864", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2221,15 +2359,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f420f9f9b4d2380c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", + "ami_id": "ami-008773fba73ea6582", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2237,15 +2376,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff21b701d639bedb", + "ami_id": "ami-036c2a8b25cac9aff", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230314 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2253,15 +2393,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014933bfa29cf7492", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", + "ami_id": "ami-06bfc7338fd480733", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2269,15 +2410,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e12a888f63ae8cd", + "ami_id": "ami-0b8ccbfd80406d6d6", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2285,15 +2427,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b26dc46c2cdfbdf0", + "ami_id": "ami-0ce94067de30c22bf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2301,15 +2444,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a1d998121cea625", + "ami_id": "ami-0f83da25c30ad497b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2317,15 +2461,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e184dacee3e3f572", + "ami_id": "ami-0688c9f1a05407d9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2333,15 +2478,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-074227ba04685b4d9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-015a4e3277f92900e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2349,15 +2495,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0020ff5d19a60c0e5", + "ami_id": "ami-070f591cb1fe17b59", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2365,15 +2512,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6259f9eb69bb05f", + "ami_id": "ami-09c38a7ac914741b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn-ami-2018.03.20230428-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2381,15 +2529,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1f1569134e34315", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", + "ami_id": "ami-020b33aa29fe1ddde", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2397,15 +2546,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe741f189470879c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", + "ami_id": "ami-0e0d66bb9fd71bf90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2413,15 +2563,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015f798967de05028", + "ami_id": "ami-00cfa1a08bfc8be6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2429,15 +2580,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a67b42ae2d68c8b", + "ami_id": "ami-098a751cc6cf15918", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2445,15 +2597,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09926ba869f165af4", + "ami_id": "ami-08f401b203dd64fd0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2461,15 +2614,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c36c76f9deeceff", + "ami_id": "ami-0c682939547f2630a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2477,15 +2631,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a02d804a0db84447", + "ami_id": "ami-08a5625adc17685ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2493,15 +2648,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d590dc3cf08e3de5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "ami_id": "ami-04a30d85a55705515", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2509,15 +2665,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec12d393c6996280", + "ami_id": "ami-04fbc153eab6b4ed5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2525,15 +2682,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa99ac68a61f59ac", + "ami_id": "ami-0cb7373522c9dc737", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2541,15 +2699,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce3998eaa23540bb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-002c5d93a7d0975f6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2557,15 +2716,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0567ee2b97629bb19", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0d8349ec80b14381b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2573,15 +2733,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb25980183d9e54c", + "ami_id": "ami-06862a6ef1260bb02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2589,15 +2750,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd2d0de09fb247ba", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b0ee71be5c20df68", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2605,15 +2767,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01fc605d66bb2428e", + "ami_id": "ami-06834001b73e7db3b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2621,15 +2784,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0901566a3cb7472d2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "ami_id": "ami-079570a91de26949e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2637,15 +2801,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f55871a94f237053", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0d1496428ad6eebbc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2653,15 +2818,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c44abfb46912252", + "ami_id": "ami-0c1f0858882341f0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2669,15 +2835,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052d8f7fa09479333", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", + "ami_id": "ami-09beedd47899d6734", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.s x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", + "name": "amzn-ami-2018.03.s-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2685,15 +2852,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c68e59afbd57eaa", + "ami_id": "ami-0a9c3253d726d6951", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2701,15 +2869,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca38dc926708bb46", + "ami_id": "ami-0380648576ce41edb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2717,15 +2886,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0385af66ea9eefe", + "ami_id": "ami-06e2a11a62d338e99", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2733,15 +2903,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0388b2b2a56b8c257", + "ami_id": "ami-081848a2f4af47263", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2749,31 +2920,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef40a6ba08c4b9b7", + "ami_id": "ami-26bd1b44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-x86_64-ebs", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd9b17ca6f5cb8e4", + "ami_id": "ami-0e73a4c6d33ac8f2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2781,15 +2954,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011ce3fbe73731dfe", + "ami_id": "ami-0b61e7243abbc8ff1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2797,15 +2971,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0579b3efbc3a6c3e2", + "ami_id": "ami-0d9d6ae18824b2d31", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2813,15 +2988,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e63ea5a1aa52a8a4", + "ami_id": "ami-0523ffd1be8111018", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2829,15 +3005,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09be69f2b561f9c1a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", + "ami_id": "ami-073275899f79b61bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -2845,15 +3022,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e14619ff8da67b1f", + "ami_id": "ami-0be1854d34b9ba66f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -2861,15 +3039,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aaf4f75a696ec244", + "ami_id": "ami-0d373d8f27b1af82b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2877,15 +3056,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dbaa0e1351e64278", + "ami_id": "ami-063df8a11b98dec2a", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2893,15 +3073,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f168f9d443688b7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "ami_id": "ami-09497693770983ea8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2909,15 +3090,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077d913b87ddcd675", + "ami_id": "ami-0cb0f4d6c5e4fd142", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2925,15 +3107,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e8cf26f37eb24fa", + "ami_id": "ami-0a018f4812a6282b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2941,15 +3124,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0853664c97bc5c9f6", + "ami_id": "ami-033e64fdbcb71b6ac", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2957,15 +3141,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036d8bf94176b648a", + "ami_id": "ami-0e18747114eff8bce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2973,15 +3158,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041da001c6bb4dde6", + "ami_id": "ami-0c0d12a17dacb1fad", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -2989,15 +3175,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003a0dd4e32887c34", + "ami_id": "ami-0a635715459d8f174", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3005,15 +3192,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09f7b37f16e94ecfa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0b1dc4f99d36c3125", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3021,15 +3209,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adc12c5304aa2b32", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00788bf7867354795", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3037,15 +3226,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b91da9b4e8c9d698", + "ami_id": "ami-00fbb75f1f363d50e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3053,15 +3243,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b48eda7f92aadbe", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", + "ami_id": "ami-0d864659e647c4dd0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3069,15 +3260,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2da4b97a2052ae2", + "ami_id": "ami-02e7bf31756bd3eff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3085,15 +3277,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef2817d56b328f63", + "ami_id": "ami-0fd9b17ca6f5cb8e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3101,15 +3294,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021cc29da9b72defc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", + "ami_id": "ami-036de11384414e533", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3117,15 +3311,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000e68722fbbcb78f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "ami_id": "ami-052d8f7fa09479333", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221207 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3133,15 +3328,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f61efbda10aec28", + "ami_id": "ami-0c0413b91ede564ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3149,15 +3345,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0909d91c57f13ef3b", + "ami_id": "ami-026aba44c85401cc1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3165,15 +3362,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0508e25553325b00e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", + "ami_id": "ami-0dabdaa193a16a6eb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3181,15 +3379,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9c3253d726d6951", + "ami_id": "ami-0ff7f34fb56710362", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn-ami-2018.03.20210331-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3197,15 +3396,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f70e34a88bb99d29", + "ami_id": "ami-01c68e59afbd57eaa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3213,15 +3413,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eb6d90219be48bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0fe2d42d4fe061564", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3229,15 +3430,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab76f81369b03218", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", + "ami_id": "ami-0a721a595fb482639", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20210106-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3245,15 +3447,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1399b0664478524", + "ami_id": "ami-05d75ea9eb0a7b6c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3261,15 +3464,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bcfafb04e7771ee0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211013 arm64 ECS HVM GP2", + "ami_id": "ami-0909befe634e1f7f2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211013-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3277,15 +3481,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a401e195f9552e02", + "ami_id": "ami-02f881f759f3e94a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3293,15 +3498,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034aa8f81724dbef3", + "ami_id": "ami-0d68223af95689f61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3309,15 +3515,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1f0858882341f0f", + "ami_id": "ami-0666dd0a9eccbab7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3325,15 +3532,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0186cbed48110f4a2", + "ami_id": "ami-051b682e0d63cc816", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3341,15 +3549,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ddcd0ffb9fc0268e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", + "ami_id": "ami-08f15a7a443afa3a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3357,15 +3566,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9ebe6a08cbf16d8", + "ami_id": "ami-030cda3b9e30e616a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3373,15 +3583,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-002c5d93a7d0975f6", + "ami_id": "ami-084996e0db8aa7534", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3389,15 +3600,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d88bf33e58088cb", + "ami_id": "ami-0f5828c2418538c04", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3405,15 +3617,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0102c6cd34e74cabd", + "ami_id": "ami-01227e8a4557eaddf", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220209-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3421,15 +3634,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06dfe8e4b2f16ab6e", + "ami_id": "ami-0dc02f557d85de5e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3437,15 +3651,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bef757bca18281e", + "ami_id": "ami-089ae12b651614810", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3453,15 +3668,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013ed567742e90919", + "ami_id": "ami-0576dcb8297698065", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3469,15 +3685,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3a9308d8f475421", + "ami_id": "ami-061465fbd9b691c0a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3485,15 +3702,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3fb375a2d119022", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-0f29da09c6e98c1dc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3501,15 +3719,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0310be5230f55bb3d", + "ami_id": "ami-0dda4cb94b1f93a03", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3517,15 +3736,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c1cd6cec96d8dc5", + "ami_id": "ami-0a7936ea6d7d16c6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3533,15 +3753,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7b6bcd2b4f6d036", + "ami_id": "ami-0a1350ef174a463eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3549,15 +3770,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02948adc33e5dd36f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0ab31739e97771d06", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3565,15 +3787,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0489c5707f095efce", + "ami_id": "ami-08c5ccb10da9d9016", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3581,15 +3804,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040d5d3b63d2f772e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", + "ami_id": "ami-0adc350d7c7a2259f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3597,15 +3821,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff3fccbf0b0ec0d7", + "ami_id": "ami-0c5058003c511da15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3613,15 +3838,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04482e72bd64b37f6", + "ami_id": "ami-0186cbed48110f4a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3629,15 +3855,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d28e5e0f13248294", + "ami_id": "ami-0e2da4b97a2052ae2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3645,31 +3872,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015784ee292b9fb2c", + "ami_id": "ami-06cef3b9805e5ebb0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", + "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", + "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0fa92c1bc51f50c", + "ami_id": "ami-070ce54d95633765d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3677,15 +3906,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05280d5689b29423b", + "ami_id": "ami-031abc2f5568e7193", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3693,15 +3923,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09475847322e5566f", + "ami_id": "ami-03382d2e393df969e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3709,15 +3940,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f401b203dd64fd0", + "ami_id": "ami-064fb56796e4022e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3725,15 +3957,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4fb89e38a885991", + "ami_id": "ami-0f262bc46acca4efb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230705-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3741,15 +3974,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ace32fdb211c83e0", + "ami_id": "ami-0d5fa39efea457ed4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3757,15 +3991,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a7c9b9e8c2b2a73", + "ami_id": "ami-07a0f7834e9c7f81e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3773,15 +4008,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f2a73907327e3f5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", + "ami_id": "ami-03e55a57522b1a61e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3789,15 +4025,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fed6bb75d0a566fd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", + "ami_id": "ami-0bd859edf55058138", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3805,15 +4042,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b76e759367f1f508", + "ami_id": "ami-0d188fd4fde0157b0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3821,15 +4059,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01711df8fe87a6217", + "ami_id": "ami-0a45afc001cb21ab9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3837,15 +4076,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038b138f4ac782a9b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "ami_id": "ami-07ea3f94fcc2d2f0b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240712 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210504-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3853,15 +4093,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-082ae1ce203f1a615", + "ami_id": "ami-0c1b561b88a479085", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3869,15 +4110,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8166367bf411123", + "ami_id": "ami-0eedd28c226eee94d", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3885,15 +4127,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026aba44c85401cc1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "ami_id": "ami-02e2a63bbd0ea5c21", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3901,15 +4144,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04e92743242c894e9", + "ami_id": "ami-00ffb472846333069", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220822 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220822-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3917,15 +4161,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c54936b53c8b9e9", + "ami_id": "ami-08eb574e6215b89ed", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250206 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -3933,15 +4178,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0617c8dca39c37a18", + "ami_id": "ami-0a7274e4476f7fd2f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3949,15 +4195,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0188a9f94a88bf46f", + "ami_id": "ami-0fa41ecedf4bc5ffe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3965,15 +4212,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a86df5548ade48d3", + "ami_id": "ami-0f92aff469dc4b916", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", + "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -3981,15 +4229,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdc14ef7204bf63a", + "ami_id": "ami-0d41aa52bae3ac7ab", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -3997,15 +4246,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0473cbe1b4ef2b03f", + "ami_id": "ami-098c44a7c470246e4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4013,15 +4263,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aed88177c42bc09d", + "ami_id": "ami-09e4e50b92e8004dc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4029,15 +4280,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e497a3bb672e2f72", + "ami_id": "ami-03ab789a4dd3f1491", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4045,15 +4297,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0065ed47cc8232748", + "ami_id": "ami-0579b3efbc3a6c3e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4061,15 +4314,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0599c39590f69d99d", + "ami_id": "ami-0c3003dcf5b594a11", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4077,15 +4331,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070e0f3dc3974a9d4", + "ami_id": "ami-0f4f2969a204cc071", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4093,15 +4348,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d048379f632492f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "ami_id": "ami-0e184dacee3e3f572", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4109,15 +4365,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b83c21e6f50944c7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-029445b7d7fef3675", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4125,15 +4382,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe54906c146c485f", + "ami_id": "ami-097d2e51632d4fa5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4141,15 +4399,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-df49e9bd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", + "ami_id": "ami-0ae795b7dac3848da", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4157,15 +4416,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096d467b43b2344ba", + "ami_id": "ami-0ca887e91c744f203", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4173,15 +4433,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0606a713882833d8b", + "ami_id": "ami-05d13f9c89b7e3996", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4189,15 +4450,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae8e984e89fec3e2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-05144a8b97f5eca8f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4205,15 +4467,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d864659e647c4dd0", + "ami_id": "ami-05d62f8307958eeec", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220121 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4221,15 +4484,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0822986fd40c394dd", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231213 x86_64 ECS HVM GP2", + "ami_id": "ami-03b7c3f4bc4b8f1a9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231213-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4237,15 +4501,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b8ccbfd80406d6d6", + "ami_id": "ami-07326019d9101518a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240430 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4253,15 +4518,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aef0dc9506619ce5", + "ami_id": "ami-0805a006d50737fe5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4269,15 +4535,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a5625adc17685ba", + "ami_id": "ami-01f848e83272be8fb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4285,15 +4552,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03cd749b7d43f4fa4", + "ami_id": "ami-032770b8f9971faa7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4301,15 +4569,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04582df06ba958d0d", + "ami_id": "ami-038ecd138b512cf3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4317,15 +4586,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05307a1f606f14a4a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240424 arm64 ECS HVM EBS", + "ami_id": "ami-0baaf3e8e1bb3d9c9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240424-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4333,15 +4603,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d54894e353460d1a", + "ami_id": "ami-0279421890d4beee7", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4349,15 +4620,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098c44a7c470246e4", + "ami_id": "ami-0c62d0d0d3b8b17a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4365,15 +4637,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df538668970fc6c5", + "ami_id": "ami-09e2cb49b9f04becc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4381,15 +4654,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01c28ce901dccfb58", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "ami_id": "ami-05a55a4772f315410", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "name": "amzn-ami-2018.03.20210316-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4397,15 +4671,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041143299907d25ab", + "ami_id": "ami-0bcf0bf16fc564581", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4413,15 +4688,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0763dda72fbda96fd", + "ami_id": "ami-0c3dd83c879f0b3ba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4429,15 +4705,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0edbb0861bcf10b4a", + "ami_id": "ami-08ccadf1b9fa86c7b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4445,15 +4722,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ecac5dc97c76f51d", + "ami_id": "ami-0aa3c0fbbd8beb25c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4461,15 +4739,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a29a6add2947822", + "ami_id": "ami-0ebe91149e65b49df", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4477,15 +4756,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031c9a424ff292e23", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-003a0dd4e32887c34", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4493,15 +4773,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081fff8a891e16d4b", + "ami_id": "ami-0bc8c882015a04b15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4509,15 +4790,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c82085f22694c8c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00472dd1b8758558a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4525,15 +4807,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d65d5f5b5a16bbb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", + "ami_id": "ami-08268d90ae5dd8870", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4541,15 +4824,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa3c0fbbd8beb25c", + "ami_id": "ami-03a88663b6e6e9690", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220328-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4557,15 +4841,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c632715d1bda81a8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", + "ami_id": "ami-0aba71b4a7794e4a7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4573,15 +4858,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a635715459d8f174", + "ami_id": "ami-0044630c39191fcfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4589,15 +4875,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039894e835f6017fd", + "ami_id": "ami-078a6e2d6d2fe1a2a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4605,15 +4892,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018115e3fd00e6400", + "ami_id": "ami-0b05d2dd54e595d3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4621,15 +4909,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031abc2f5568e7193", + "ami_id": "ami-0b1fafc145aae4126", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240201 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4637,15 +4926,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fe9fab8c559477a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0f995f4e8a6876883", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4653,15 +4943,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9f3641320c22671", + "ami_id": "ami-0aa19e5f9f9df0dc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4669,15 +4960,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ef24a1290e4a19e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", + "ami_id": "ami-09d18529ac94c4da2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4685,15 +4977,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d30061b430d1835", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220318 arm64 ECS HVM GP2", + "ami_id": "ami-06f70363cf1c4a1fe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4701,15 +4994,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c20ebbb687fe789", + "ami_id": "ami-0849e5e45f332f49c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4717,15 +5011,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-094ab61b497cf6ffa", + "ami_id": "ami-04b5724c448b01a84", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4733,15 +5028,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-017fdbe5fed8fb4d4", + "ami_id": "ami-0b7b6bcd2b4f6d036", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4749,15 +5045,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06fb4590537b6cc65", + "ami_id": "ami-0105b7aac0f6869b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4765,15 +5062,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0746e14bea20c6c21", + "ami_id": "ami-0e874f2ef4a4be5f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4781,15 +5079,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0429cb46f69140446", + "ami_id": "ami-0cafd18f5dbd416ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4797,15 +5096,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7936ea6d7d16c6d", + "ami_id": "ami-0102c6cd34e74cabd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.l x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.l-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20220209-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4813,15 +5113,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e8b752754474f6f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0b356c2f9b6e8490d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4829,15 +5130,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08402b0c770d17452", + "ami_id": "ami-0938e96f513e5cfc9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4845,15 +5147,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01e930d961f5ea2af", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "ami_id": "ami-0af94e5575170fd8a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4861,15 +5164,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06615a2161eababbc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", + "ami_id": "ami-0af07149bec17f746", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", + "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -4877,15 +5181,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018a4d049162a80a6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0198873134b2413a6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4893,15 +5198,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1496428ad6eebbc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0af3725550d3f1c45", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4909,15 +5215,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e73a4c6d33ac8f2a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221115 x86_64 ECS HVM GP2", + "ami_id": "ami-05bd2d743f8018e40", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -4925,15 +5232,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02852397808ce075c", + "ami_id": "ami-00e6a4a4d0cb8ca0f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4941,15 +5249,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08715e80ab663bd74", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", + "ami_id": "ami-0906f7f9038002c81", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4957,15 +5266,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06862a6ef1260bb02", + "ami_id": "ami-0a7116cf32319633a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200115-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4973,15 +5283,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02446908683d78c79", + "ami_id": "ami-0049d87ef00c58acc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -4989,15 +5300,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03661636c5fa14fff", + "ami_id": "ami-014933bfa29cf7492", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5005,15 +5317,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ed77e2a1e126241", + "ami_id": "ami-0a91c91c7009a4da3", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5021,15 +5334,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fe8dff5a6726a01", + "ami_id": "ami-0d73c23df77e60195", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5037,15 +5351,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e31e55bf26b307ae", + "ami_id": "ami-00305344fe2890957", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5053,15 +5368,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc6cffeb5d53e93d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "ami_id": "ami-032d1759af9dcaad4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210819-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5069,15 +5385,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0f6eee4cc28ca2d", + "ami_id": "ami-051302d017a0ac130", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5085,15 +5402,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b2f8e6f3e0e4d7b9", + "ami_id": "ami-006046a5a90321bc7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5101,15 +5419,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0666dd0a9eccbab7d", + "ami_id": "ami-00e6e53353ad12584", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5117,15 +5436,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07555bd4523c38b15", + "ami_id": "ami-0dd1294c5a7395c06", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5133,15 +5453,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e72d45bc721aaa38", + "ami_id": "ami-02f2b3adff1366945", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5149,15 +5470,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016f6cf165ef55d02", + "ami_id": "ami-0fe26c45f7014800a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", + "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5165,15 +5487,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050b0ac5a44290959", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", + "ami_id": "ami-015784ee292b9fb2c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5181,15 +5504,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02dfc6ae084401bf5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", + "ami_id": "ami-08d21a0e8fe8c3581", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5197,15 +5521,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa19e5f9f9df0dc6", + "ami_id": "ami-016f6cf165ef55d02", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5213,15 +5538,1716 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-075d90a42045a2df9", + "ami_id": "ami-0065ed47cc8232748", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04b7041ca3cce39bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a8166367bf411123", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-077d913b87ddcd675", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-039653e744edcc156", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211013 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20211013-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06790c191abc0a962", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e1c8af5917e71a37", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01c28ce901dccfb58", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241108 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241108-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c7d26d1fbc4d4797", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fe88e52a9eed644b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-000e68722fbbcb78f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240802-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-006b32aa971617094", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08a68d4a1c6144609", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d1e33803b3832773", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ecac5dc97c76f51d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211209 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20211209-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0df2c2886f71f0661", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0310be5230f55bb3d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210219 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210219-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00287daa6a5f0610d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01fc605d66bb2428e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220209-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0901566a3cb7472d2", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230420 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a401e195f9552e02", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240328-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-026477f4b9c6f4f02", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f952024ca2efb733", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03813f2b90ae7f8f7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05222d845b5812e7f", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02600adc2460dc00d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fa4add6ae20faced", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200820 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20200820-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d5564ca7e0b414a9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f14c0ee29b954379", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250121 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0df538668970fc6c5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240131-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a5d07e2b337abadb", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-080c41549b805bb57", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-087f318c14ed09eda", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02d048379f632492f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230809 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230809-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f70e34a88bb99d29", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240409-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0bce6e7991fb2af03", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07555bd4523c38b15", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231211-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a79c7f154ddbd3db", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ce3998eaa23540bb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ad0ec0239add3bdd", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a315da8e364fc29a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230509-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-010260d57de04eb16", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230420-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09b5ee90865e2ca29", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230606-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0aa1063b7e3e2d5d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-039bb4c3a7946ce19", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-046fe830144007c17", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-09a0e36f24f17e212", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0f6016379e9b1cdc6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01609ad8ad8beae78", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02fa7dafa7cabc466", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-097d0c139fb514eac", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08fa5cdd5520c13e4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00047c67715f7e065", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0132ae67ec24b7363", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0930810cec02769af", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-05d4d52c00993475d", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200915 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20200915-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00afcf0acdb42a168", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0585e9d5c27a85c12", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0be7d6694879afe38", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d5a6709233aa5776", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-094ab61b497cf6ffa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240610 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240610-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-021d222fa29eb4f63", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02c44abfb46912252", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07a57c71eaa9a3c2d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-01d8443c7f6628efe", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ab61eef2d0f3a207", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0595ebc8ef6d512ff", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06fb4590537b6cc65", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240131-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c2d4c67d843bea77", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240305 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20240305-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0e497a3bb672e2f72", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240903-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0bce879287a231f7d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-004bc24942fd663f4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03909d40bdc07e74b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0461e29314e674a80", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-070abffab196b72c8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b9e711f7b9e8ac73", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0eea0cb463ec24dfc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06ef770416e43f9c9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-035ce2b968e065c5e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200706 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20200706-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00e4b147599c13588", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03260ececc6f592b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07aefd47db91d9d95", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0617c8dca39c37a18", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240515-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07522d7404f571eef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0fbe43e73c3f4037a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-023fb6bdfa463e6a0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0ca5787c77878a353", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07b2fe16a1b0c1bcc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08707d40bde2605e6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-058fc0f2acbacaa03", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-07b26aaba6048f2f6", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03f9a9874affbb05b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0a7bb4c6855535f10", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c679276a05ea3873", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04a67b42ae2d68c8b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-x86_64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-06d8f2a68469b0d41", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0c8ada30f792432b2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0faad3c6b4ab3eee6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240818-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-084361c6735de8541", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0da17ed69155c5e55", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0d54894e353460d1a", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230406-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5229,15 +7255,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c459b1b4740a344", + "ami_id": "ami-0a65289c578d176ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5245,15 +7272,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0009eb1d746c85586", + "ami_id": "ami-0f198e4bfc1509e6a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230731-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210331-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5261,15 +7289,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a06d4c151adbfe3", + "ami_id": "ami-0399be201c84b3c9c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20250206 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5277,15 +7306,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae795b7dac3848da", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230929 arm64 ECS HVM EBS", + "ami_id": "ami-089148f7fabfed089", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5293,15 +7323,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09b287b95d65484c4", + "ami_id": "ami-0f0ba4af21d1e1766", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5309,15 +7340,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d704efd46c049b84", + "ami_id": "ami-0108034eca419d0c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5325,15 +7357,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0faa3b0c59e28c5f0", + "ami_id": "ami-0977e48ad5de3c6e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5341,15 +7374,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030ae4670412c0423", + "ami_id": "ami-0007da1f883d066de", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5357,15 +7391,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b37cc4aeb68e4066", + "ami_id": "ami-00d477a09cfec3138", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250110 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5373,15 +7408,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fda48b6c27c921ad", + "ami_id": "ami-024138c155f92e4ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5389,15 +7425,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01227e8a4557eaddf", + "ami_id": "ami-0b6205f754041ac77", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240610-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5405,15 +7442,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063df8a11b98dec2a", + "ami_id": "ami-08c26730c8ee004fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -5421,15 +7459,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d3c3372e64ed5d0", + "ami_id": "ami-07d8ced3e602b6883", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210929 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-08be708be28ee834b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250102 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-02d28b401daf75e73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5437,15 +7510,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e01b7db2c79541ef", + "ami_id": "ami-0eed1c915ea891aca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5453,15 +7527,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5baf4928b76f45a", + "ami_id": "ami-0855faa1a71c65d99", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-03f168f9d443688b7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230406 arm64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-arm64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-093c11f8bc1d75d38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5469,15 +7578,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-011c11b950369417d", + "ami_id": "ami-0c6a4521b8a0e2b4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5485,15 +7595,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089c8b227a4123a81", + "ami_id": "ami-0f4f15ede48a466c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5501,15 +7612,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f29da09c6e98c1dc", + "ami_id": "ami-060a6ea1c1adc7ff9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5517,15 +7629,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af177ab7cb711a0e", + "ami_id": "ami-0359b4398b368203e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5533,15 +7646,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070abffab196b72c8", + "ami_id": "ami-0188a9f94a88bf46f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5549,15 +7663,101 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f15a7a443afa3a5", + "ami_id": "ami-0218d5edd3aa09be5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-026a606808d698246", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241001-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0567ee2b97629bb19", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230906 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn-ami-2018.03.20230906-amazon-ecs-optimized", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-00d916da9bd34628d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "hypervisor": "xen", + "image_type": "machine", + "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-04994d21a40280671", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "hypervisor": "xen", + "image_type": "machine", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "owner_id": "591542846629", + "platform": null, + "public": true, + "root_device_name": "/dev/xvda", + "root_device_type": "ebs", + "sriov": "simple", + "state": "available", + "tags": {}, + "virtualization_type": "hvm" + }, + { + "ami_id": "ami-0b755dd4c20bfba90", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5565,15 +7765,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b19c391fd91f2cc", + "ami_id": "ami-0d08e1f53930d73d4", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5581,15 +7782,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-095016ddc8e84b54e", + "ami_id": "ami-0c8c430ffb1f95f80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5597,15 +7799,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d21a0e8fe8c3581", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230731 arm64 ECS HVM EBS", + "ami_id": "ami-0f0d87256bd5dc772", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5613,15 +7816,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a48e6d2e033acbd2", + "ami_id": "ami-0c5f4fdb38490361d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250206 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5629,15 +7833,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bd63d56c53bdabb", + "ami_id": "ami-0160dbe336fe82e6c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5645,15 +7850,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051b1d01a8cd22b05", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", + "ami_id": "ami-0813498214e952bf6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5661,15 +7867,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2b38ed006da05c0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "ami_id": "ami-03d96de739ea269fb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5677,15 +7884,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ecd553b3f14c2d6", + "ami_id": "ami-0d0ffb7eee692dae4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5693,15 +7901,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029517bdb38391983", + "ami_id": "ami-0fed6bb75d0a566fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220831 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201130-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5709,15 +7918,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076b018d977b29241", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", + "ami_id": "ami-05143ad4578dfcd39", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5725,15 +7935,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9afce559a2ee58e", + "ami_id": "ami-0699fe0cf5a1459c8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5741,15 +7952,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0595ebc8ef6d512ff", + "ami_id": "ami-006e00a7bde034800", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5757,15 +7969,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1946a2d1b7bca83", + "ami_id": "ami-0a45c5a6e9ebfab56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5773,15 +7986,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0a2afc533b41c79", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240809 arm64 ECS HVM EBS", + "ami_id": "ami-0d03e0afc8a3a307d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5789,31 +8003,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bae761e4e9e3f0eb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", + "ami_id": "ami-810ddce3", + "architecture": "x86_64", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.05.17", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bff04facac18fec", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d28e5e0f13248294", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5821,15 +8037,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09dfe1d49bc8961b1", + "ami_id": "ami-0222c5f51388e7693", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5837,15 +8054,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ad58e57674b8039", + "ami_id": "ami-00e214ec81d4f9542", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250117 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5853,15 +8071,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c682939547f2630a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 arm64 ECS HVM GP2", + "ami_id": "ami-0d0981d7ad52b6423", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5869,15 +8088,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05143ad4578dfcd39", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-013405128923d2df3", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5885,15 +8105,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cafd18f5dbd416ed", + "ami_id": "ami-015b77d48e6071bc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5901,15 +8122,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b116632f17ae5047", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-08d31403aa8e81bb8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20210514 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210514-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5917,15 +8139,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bec52d270afdcd9b", + "ami_id": "ami-0b91da9b4e8c9d698", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5933,31 +8156,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-26bd1b44", + "ami_id": "ami-09319447e8a710f92", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.07.25", + "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029694eaf3b9de830", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "ami_id": "ami-0365ff623c659b63a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5965,15 +8190,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e6ed09bced6d3a4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c5de97299175eed0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250214 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -5981,15 +8207,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a967973b78992843", + "ami_id": "ami-0b9f3641320c22671", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220304-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -5997,15 +8224,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d66a98848c17c899", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "ami_id": "ami-03f42cd1cc5328d3a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6013,15 +8241,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-053d0f9f12656ea46", + "ami_id": "ami-0bad2a677a698c948", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6029,15 +8258,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06efe8098bb8344fc", + "ami_id": "ami-0242f4db2e8c8a270", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6045,15 +8275,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081764cbadced82c1", + "ami_id": "ami-04527d54fe7081e13", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6061,15 +8292,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08016d025c2c0bbf2", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230809 arm64 ECS HVM EBS", + "ami_id": "ami-080c1cc5c78678da8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20201125 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230809-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20201125-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6077,15 +8309,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041bc06f5f9fbebc7", + "ami_id": "ami-0763dda72fbda96fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6093,15 +8326,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-060a6ea1c1adc7ff9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241015 arm64 ECS HVM EBS", + "ami_id": "ami-0a2b3b9da5fc5ad3b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6109,15 +8343,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0131729fe2781f22c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "ami_id": "ami-01a72e35f035cefb4", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250110 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6125,15 +8360,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07154257caf4492a0", + "ami_id": "ami-03c22179c68f47520", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6141,15 +8377,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f990e4e7551b774", + "ami_id": "ami-05b48eda7f92aadbe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.g x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn-ami-2018.03.g-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6157,15 +8394,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0671e69698b98d27a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", + "ami_id": "ami-0c1399b0664478524", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6173,15 +8411,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047a941a94f470c4b", + "ami_id": "ami-06ad1afe3e2bae54b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6189,15 +8428,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0469fd63b251f2422", + "ami_id": "ami-0afc91f07aadfa1e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6205,15 +8445,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a8745595e475d06", + "ami_id": "ami-0b806f07f3fc56256", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6221,15 +8462,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f00517fa5307c85", + "ami_id": "ami-0ebccdf9cd56686dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6237,15 +8479,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0827caf35ab5fdd69", + "ami_id": "ami-09983a73b07775efe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.20191016 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn-ami-2018.03.20191016-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6253,15 +8496,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064db566f79006111", + "ami_id": "ami-041d16f0d31c412a7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6269,15 +8513,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae5eec3b2e3a4337", + "ami_id": "ami-07871a281e88666aa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6285,15 +8530,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed757f461e9bbe6c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "ami_id": "ami-00034e180f0cbd45b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6301,15 +8547,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064fb56796e4022e5", + "ami_id": "ami-06fe9fab8c559477a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6317,15 +8564,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0987a8ba29e26feff", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-0231377387c9cc369", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6333,15 +8581,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041d16f0d31c412a7", + "ami_id": "ami-04d3e61b01b8cbe54", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221207-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6349,15 +8598,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01aecd8c6822766b8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-04891895564cde854", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6365,15 +8615,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca5454c131d0eef9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-09040ef943d485f1d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6381,15 +8632,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006b32aa971617094", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 arm64 ECS HVM GP2", + "ami_id": "ami-068d394691951e174", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-arm64-ebs", + "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6397,15 +8649,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0150e7bec62267841", + "ami_id": "ami-0e3fb375a2d119022", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6413,15 +8666,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7d26d1fbc4d4797", + "ami_id": "ami-0e6a09a3631c38bfb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6429,15 +8683,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012d199634096da40", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", + "ami_id": "ami-076b018d977b29241", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240319 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6445,15 +8700,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d536ef709d07804", + "ami_id": "ami-099a864483eb679f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", + "name": "amzn-ami-2018.03.20211115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6461,15 +8717,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e18747114eff8bce", + "ami_id": "ami-09e3eb6763c59bc7a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190913 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190913-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6477,15 +8734,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd6d76a802f32a64", + "ami_id": "ami-0eba4085dba527f87", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6493,15 +8751,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052f5845e525f2a29", + "ami_id": "ami-0faa3b0c59e28c5f0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6509,15 +8768,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f92c3a342ac795e6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "ami_id": "ami-077d55e0d0a2608df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6525,15 +8785,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c73ee1100ce3e7a", + "ami_id": "ami-018115e3fd00e6400", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.i x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.i-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6541,15 +8802,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b4dc34e430b1edb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ed757f461e9bbe6c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6557,15 +8819,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d61a9c1c9939f73b", + "ami_id": "ami-07108d3d5e75c0c16", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6573,15 +8836,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fb62624e1ab3e2c", + "ami_id": "ami-03b19c391fd91f2cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20201130 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn-ami-2018.03.20201130-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6589,15 +8853,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01713b88d8837a481", + "ami_id": "ami-07ecd553b3f14c2d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240723 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6605,15 +8870,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0478ccfb194c4313c", + "ami_id": "ami-0a1f1569134e34315", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6621,15 +8887,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e81cd5367b3cbaed", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", + "ami_id": "ami-09d810d74766d7ba5", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -6637,15 +8904,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe012b905004ab15", + "ami_id": "ami-02222a138e83a41ea", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6653,15 +8921,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa4add6ae20faced", + "ami_id": "ami-0c5ee16f1b3492ee3", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200820 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200820-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6669,15 +8938,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c2b5fb4dfe2a964", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "ami_id": "ami-0162eca4352f49566", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6685,31 +8955,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-810ddce3", + "ami_id": "ami-02c632a1464aa71d6", "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2018.05.17", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052c4514c4c231ad4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220607 arm64 ECS HVM GP2", + "ami_id": "ami-041143299907d25ab", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220607-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6717,15 +8989,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e5a3910805eedd4c", + "ami_id": "ami-074227ba04685b4d9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6733,15 +9006,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0108034eca419d0c1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "ami_id": "ami-0b023ee8a9d089a30", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250129 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221118-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6749,15 +9023,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02555461a4046cdf2", + "ami_id": "ami-0ee52f766e2b19e09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6765,15 +9040,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-097d0c139fb514eac", + "ami_id": "ami-07054bb3bfd628caa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6781,15 +9057,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057bc6e5eb5937667", + "ami_id": "ami-0bae761e4e9e3f0eb", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241031 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6797,15 +9074,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cc5467f38b71ed2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-006aee1e166387fa8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6813,15 +9091,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f33a6f47c7a422dd", + "ami_id": "ami-059ed7bf7ce936231", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6829,15 +9108,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b3adcd9a6d3b154", + "ami_id": "ami-03cd749b7d43f4fa4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6845,15 +9125,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028bb3afb63a28447", + "ami_id": "ami-012ca3b72519d003f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6861,15 +9142,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07326019d9101518a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02446908683d78c79", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200603-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6877,15 +9159,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07fcafbb9f3a4f7db", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", + "ami_id": "ami-003fd4ef4d8ad8344", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6893,15 +9176,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04de619f62ed50f60", + "ami_id": "ami-06d61f9ce2def9dc2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6909,15 +9193,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe2d42d4fe061564", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 arm64 ECS HVM GP2", + "ami_id": "ami-03c7d7c89d96416bd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6925,15 +9210,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d4d52c00993475d", + "ami_id": "ami-0794912ffc3e960f1", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200915-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -6941,15 +9227,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b7750e083adf967", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240328 arm64 ECS HVM EBS", + "ami_id": "ami-0230dd25520bad94c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6957,15 +9244,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7116cf32319633a", + "ami_id": "ami-01713b88d8837a481", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6973,15 +9261,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab3afbf5dd641616", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221102 arm64 ECS HVM EBS", + "ami_id": "ami-06c473930d59c46d9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -6989,15 +9278,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c2963a1e04bd8a00", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", + "ami_id": "ami-0c9a0285fd5494025", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7005,15 +9295,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eea0cb463ec24dfc", + "ami_id": "ami-0bdc14ef7204bf63a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20221010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7021,15 +9312,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bad2a677a698c948", + "ami_id": "ami-09abc27e8324bf3f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7037,15 +9329,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02b0cd010b003709f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-04ce4696c8bc01c1e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7053,15 +9346,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a4a41ab1a407f3c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", + "ami_id": "ami-070e0f3dc3974a9d4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7069,15 +9363,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fed32696c5bc21f", + "ami_id": "ami-0af177ab7cb711a0e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7085,15 +9380,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004b732b79323a48e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-0b7a841e8b4d80122", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7101,15 +9397,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0160dbe336fe82e6c", + "ami_id": "ami-01dee8f614115c3b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7117,15 +9414,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055253b63aefcb8da", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", + "ami_id": "ami-0da70f1d8d7b04173", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7133,15 +9431,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069514de299b7b236", + "ami_id": "ami-0b37cc4aeb68e4066", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20200402-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7149,15 +9448,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028381026568cc920", + "ami_id": "ami-01a47aae3af30343c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191031-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7165,15 +9465,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-072f29292d13ff0d1", + "ami_id": "ami-05a8b4a00af9c953c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7181,15 +9482,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4e525d008ebef10", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-0e7a0ddef9234ba28", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7197,15 +9499,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d73c23df77e60195", + "ami_id": "ami-01c36c76f9deeceff", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231114 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240312-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7213,15 +9516,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0855faa1a71c65d99", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 arm64 ECS HVM GP2", + "ami_id": "ami-07c0cdb996e8c42ed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7229,15 +9533,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8c430ffb1f95f80", + "ami_id": "ami-064db566f79006111", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7245,15 +9550,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fbe43e73c3f4037a", + "ami_id": "ami-079fc82e262583e68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.20200928-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7261,15 +9567,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0be7c2ed36164ca", + "ami_id": "ami-068bfa72c3009b7dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7277,15 +9584,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a91c91c7009a4da3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04582df06ba958d0d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7293,15 +9601,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b863a2c146e74c57", + "ami_id": "ami-04f1b2dbba1365d82", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7309,15 +9618,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0365ff623c659b63a", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231114 arm64 ECS HVM GP2", + "ami_id": "ami-0f2b8e543486a6ddf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7325,15 +9635,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f3596e2f655f8c9", + "ami_id": "ami-0f9e7c9cc3c9082b2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7341,15 +9652,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00744d600c23b39eb", + "ami_id": "ami-07f252b1142b4207a", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7357,15 +9669,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d912f23aeb2b750", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", + "ami_id": "ami-06d3c3372e64ed5d0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7373,15 +9686,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e4a50d46cf4703ac", + "ami_id": "ami-069a63274eed7b117", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7389,15 +9703,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026477f4b9c6f4f02", + "ami_id": "ami-0e68e0916a0892801", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240809-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7405,15 +9720,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ade904371c05ee2d", + "ami_id": "ami-03a7c9b9e8c2b2a73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20201013-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7421,15 +9737,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0714f05664ec9d38b", + "ami_id": "ami-0259e486565a5ecf7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7437,15 +9754,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0937d4f473dc7efc6", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", + "ami_id": "ami-0ff2b186abcc13471", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230705 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230705-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7453,15 +9771,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03260ececc6f592b6", + "ami_id": "ami-04d6632c109ed64ea", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240802-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7469,15 +9788,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03e55a57522b1a61e", + "ami_id": "ami-0e1f2642e8ed2b983", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200218 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200218-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7485,15 +9805,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0672d43ed4b13b634", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c13ba026c809932c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7501,15 +9822,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087f318c14ed09eda", + "ami_id": "ami-0112bb4988eedc594", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7517,15 +9839,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d6632c109ed64ea", + "ami_id": "ami-0904d4fd3855c03c9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230530-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20240201-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7533,15 +9856,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0576dcb8297698065", + "ami_id": "ami-0b046fa9352d97082", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7549,15 +9873,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-045db6083869d17d8", + "ami_id": "ami-0c6adae7adbb718b5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7565,15 +9890,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9e7c9cc3c9082b2", + "ami_id": "ami-053d0f9f12656ea46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7581,15 +9907,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096c7e1d7b79d02ae", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "ami_id": "ami-09f7b37f16e94ecfa", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7597,15 +9924,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01aa08702d5b93c4c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220520 x86_64 ECS HVM GP2", + "ami_id": "ami-0eb6587cc0c19e3db", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221118 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7613,15 +9941,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d7bd03d7c26c178", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", + "ami_id": "ami-0058f41536b69ab64", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250129 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7629,15 +9958,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046f9a4716a10bfa3", + "ami_id": "ami-012bb964803d474e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190204 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7645,15 +9975,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fc1c0c6d787c534", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", + "ami_id": "ami-0b17417858c18da84", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7661,15 +9992,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d42cf253b2fc2fa", + "ami_id": "ami-0f33a6f47c7a422dd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -7677,15 +10009,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1c8af5917e71a37", + "ami_id": "ami-01a06d4c151adbfe3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.y x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240109 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.y-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240109-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7693,15 +10026,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a2afe68765e6248", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-021dd6b2aa017af16", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7709,15 +10043,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0daedcee81e64b07b", + "ami_id": "ami-04b32c55aead7c7eb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7725,15 +10060,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d1d818f19a85542", + "ami_id": "ami-05674eb0d9fe6c76b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7741,15 +10077,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029bf83e14803c25f", + "ami_id": "ami-0eec6203bad66a07d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7757,15 +10094,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008d94099de93f738", + "ami_id": "ami-01e930d961f5ea2af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7773,15 +10111,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f97a76a70d651d71", + "ami_id": "ami-07610e278b1ddf331", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7789,15 +10128,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030cda3b9e30e616a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09e4dabce7186ff6e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250129 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231219-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7805,15 +10145,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fa477d44c00d800", + "ami_id": "ami-0e14619ff8da67b1f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220421 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220421-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7821,15 +10162,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062b6d1642dfd80e4", + "ami_id": "ami-06fb1039d3ffd487c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241217 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7837,15 +10179,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0015b02807f3d82c6", + "ami_id": "ami-0f410a0cc5a881449", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7853,15 +10196,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-029445b7d7fef3675", + "ami_id": "ami-04c82085f22694c8c", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240625 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7869,15 +10213,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069cd3a1084df8089", + "ami_id": "ami-0d0be7c2ed36164ca", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7885,15 +10230,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0913e9e99f3958d22", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", + "ami_id": "ami-041bc06f5f9fbebc7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7901,15 +10247,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce714360ecb86a7b", + "ami_id": "ami-0d4f4489017746267", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7917,15 +10264,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b858b66187fd07eb", + "ami_id": "ami-0d96e67bf8c9603c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7933,15 +10281,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09319447e8a710f92", + "ami_id": "ami-0775ca431543b2151", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7949,15 +10298,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be2bc6ed44053ba9", + "ami_id": "ami-089c8b227a4123a81", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -7965,15 +10315,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05eed9f4669298905", + "ami_id": "ami-0a234184fa8fbfb15", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7981,15 +10332,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073275899f79b61bc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191212 x86_64 ECS HVM GP2", + "ami_id": "ami-02a4a41ab1a407f3c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241115 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191212-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -7997,15 +10349,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0122a3618e52b6418", + "ami_id": "ami-04cb708b4afbc2779", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", + "name": "amzn-ami-2018.03.20200708-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8013,15 +10366,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4f4489017746267", + "ami_id": "ami-0d704efd46c049b84", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200905-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8029,15 +10383,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084996e0db8aa7534", + "ami_id": "ami-04151a990d863261f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220509-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8045,15 +10400,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3b1a6f9e98148d3", + "ami_id": "ami-0ab7b34c8f1e3882e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8061,15 +10417,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7a0ddef9234ba28", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230720 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-efda148d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230720-arm64-ebs", + "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8077,15 +10434,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-096decb951cd8670b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", + "ami_id": "ami-07f990e4e7551b774", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8093,15 +10451,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093bd289ac98ef9b9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", + "ami_id": "ami-09d19aaa5edf132c5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20250117 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8109,15 +10468,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068d644ea02de3243", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-05c621ca32de56e7a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8125,15 +10485,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2b3b9da5fc5ad3b", + "ami_id": "ami-0e3b1a6f9e98148d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220411-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8141,15 +10502,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03ab789a4dd3f1491", + "ami_id": "ami-01d76a19afa1d1dfb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8157,15 +10519,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5d07e2b337abadb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "ami_id": "ami-06615a2161eababbc", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8173,15 +10536,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077d55e0d0a2608df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240409 arm64 ECS HVM EBS", + "ami_id": "ami-0c0777fc6d1e6ac88", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240409-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8189,15 +10553,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04ce4696c8bc01c1e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230530 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d45cc52972d7f389", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230530-arm64-ebs", + "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8205,15 +10570,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a55a4772f315410", + "ami_id": "ami-0084835ab09e8bf57", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210316-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8221,15 +10587,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0049d87ef00c58acc", + "ami_id": "ami-0a96da37cfa9923a4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190215-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8237,15 +10604,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8349ec80b14381b", + "ami_id": "ami-0ef2356d39d59165b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221115 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221115-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8253,15 +10621,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0052a24bec30ca418", + "ami_id": "ami-028381026568cc920", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190925-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191031-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8269,15 +10638,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d76a19afa1d1dfb", + "ami_id": "ami-09e6d14c64f649627", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8285,15 +10655,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b17417858c18da84", + "ami_id": "ami-0ee19414096cda495", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20211120 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241010 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211120-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8301,15 +10672,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e4e50b92e8004dc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", + "ami_id": "ami-0154839e228a38d4e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8317,15 +10689,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07bf5e890fb20aba3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", + "ami_id": "ami-0535149048e0f2576", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8333,15 +10706,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ef50bc140d4ffbb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06c56e8e3cbcacc16", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8349,15 +10723,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d81b8daf75739c0d", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0565715aee2d40c48", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8365,15 +10740,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da0ec372af784699", + "ami_id": "ami-05eed9f4669298905", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8381,15 +10757,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05357471aaf3a2be5", + "ami_id": "ami-0ff3fccbf0b0ec0d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8397,15 +10774,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0997b4e036f2c957c", + "ami_id": "ami-0310d0e01c1e033c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8413,15 +10791,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a65289c578d176ee", + "ami_id": "ami-056f882174e797371", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8429,15 +10808,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0028a70abbf17e24c", + "ami_id": "ami-058aaa8fc87243469", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211209-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8445,15 +10825,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d41aa52bae3ac7ab", + "ami_id": "ami-07fcafbb9f3a4f7db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.v x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210331-x86_64-ebs", + "name": "amzn-ami-2018.03.v-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8461,15 +10842,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059d3bd24d1941d98", + "ami_id": "ami-0ca5454c131d0eef9", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210413 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210413-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8477,15 +10859,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5828c2418538c04", + "ami_id": "ami-0fba8dad81d423fc5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8493,15 +10876,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cdf6bb38d116f1f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", + "ami_id": "ami-0fe54906c146c485f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240424-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8509,15 +10893,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-080c41549b805bb57", + "ami_id": "ami-0714f05664ec9d38b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240131 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240131-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8525,31 +10910,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06cef3b9805e5ebb0", + "ami_id": "ami-0324abeea28cc0d27", "architecture": "x86_64", - "description": "Microsoft Windows Server 2019 Full optimized for ECS and provided by Amazon", + "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2019-English-Full-ECS_Optimized-2019.05.10", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a0a389761973845", + "ami_id": "ami-0ce714360ecb86a7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8557,15 +10944,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea59c7f17635229e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230720 arm64 ECS HVM EBS", + "ami_id": "ami-0f625b79e81434e3a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250102 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8573,15 +10961,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b88c44b499b72f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", + "ami_id": "ami-0172567257289167b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250113 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8589,15 +10978,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a1fc28e14c6f5aa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240807 arm64 ECS HVM EBS", + "ami_id": "ami-0370e2636edb8070b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8605,15 +10995,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdce8da35f3b3241", + "ami_id": "ami-0702e1b9bce3a6cbf", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8621,15 +11012,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6a08b7a6dc8a02d", + "ami_id": "ami-059d3bd24d1941d98", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210413 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210413-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8637,15 +11029,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05144a8b97f5eca8f", + "ami_id": "ami-08e788bfb8d4842e0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240312 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240312-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8653,15 +11046,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078a6e2d6d2fe1a2a", + "ami_id": "ami-0c27819a91ff3740d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8669,15 +11063,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc02f557d85de5e3", + "ami_id": "ami-08c2b5fb4dfe2a964", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240802 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8685,15 +11080,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1dc4f99d36c3125", + "ami_id": "ami-06bd63d56c53bdabb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8701,15 +11097,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-056f882174e797371", + "ami_id": "ami-0b26dc46c2cdfbdf0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8717,15 +11114,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-065e3f3561453ff25", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-00744d600c23b39eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240305 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8733,15 +11131,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c26730c8ee004fa", + "ami_id": "ami-061f60917a06a83a5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.h x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.h-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20190925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8749,15 +11148,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f2011d0deea4967", + "ami_id": "ami-0ae8e984e89fec3e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240712-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8765,15 +11165,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a47aae3af30343c", + "ami_id": "ami-0469fd63b251f2422", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8781,15 +11182,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f2b3adff1366945", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210202 x86_64 ECS HVM GP2", + "ami_id": "ami-09a2afe68765e6248", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230606 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210202-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230606-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8797,15 +11199,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0585e9d5c27a85c12", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ae5eec3b2e3a4337", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8813,15 +11216,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0780a87842798df", + "ami_id": "ami-01faf1fd99be4c480", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8829,15 +11233,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e81a12939d2ccd48", + "ami_id": "ami-03fe8dff5a6726a01", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231024-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8845,15 +11250,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bd92f895a187e9c", + "ami_id": "ami-0c9ebe6a08cbf16d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8861,15 +11267,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be700ad5afd19999", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", + "ami_id": "ami-02852397808ce075c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231219-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8877,15 +11284,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f6acdaa858c5148", + "ami_id": "ami-0015b02807f3d82c6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8893,15 +11301,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0432fca19dd3ca234", + "ami_id": "ami-03bfc89e56174f5e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8909,15 +11318,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-efda148d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2017.09.l x86_64 ECS HVM GP2", + "ami_id": "ami-0c632715d1bda81a8", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240905 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2017.09.l-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8925,15 +11335,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0230dd25520bad94c", + "ami_id": "ami-02c8b0bb80f88004d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230214-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -8941,15 +11352,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b5515b589659c685", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", + "ami_id": "ami-0b92417400fe0b457", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8957,15 +11369,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06790c191abc0a962", + "ami_id": "ami-0a2b38ed006da05c0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -8973,15 +11386,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be1854d34b9ba66f", + "ami_id": "ami-0c2963a1e04bd8a00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221230 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2018.03.u x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221230-kernel-5.15-x86_64", + "name": "amzn-ami-2018.03.u-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -8989,15 +11403,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b9e711f7b9e8ac73", + "ami_id": "ami-09bef757bca18281e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9005,15 +11420,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c5ccb10da9d9016", + "ami_id": "ami-03bf93bf7b66772f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191031 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191031-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9021,15 +11437,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab61eef2d0f3a207", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0d5d8ce41fa9510ef", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210210-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9037,15 +11454,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa941a8803d77f58", + "ami_id": "ami-010e0f0c50c90af93", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230428 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200905-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9053,15 +11471,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccdac544dce31397", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "ami_id": "ami-05bff04facac18fec", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240712 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240712-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9069,15 +11488,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037bc2c139c7ae160", + "ami_id": "ami-0bc266b89229709e1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9085,15 +11505,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08459996337ee1b64", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ccdac544dce31397", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191014-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9101,15 +11522,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041954b81e4c2a83e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", + "ami_id": "ami-0909d91c57f13ef3b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230509 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9117,15 +11539,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a07f8d9064c3e53", + "ami_id": "ami-0fa941a8803d77f58", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn-ami-2018.03.20200905-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9133,15 +11556,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d96de739ea269fb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240515 arm64 ECS HVM GP2", + "ami_id": "ami-0adc12c5304aa2b32", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240604 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240515-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9149,15 +11573,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a8b4a00af9c953c", + "ami_id": "ami-0b8b3b6bef6ce8e93", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231211 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230912-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9165,15 +11590,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0669f31734acc9911", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220627 x86_64 ECS HVM GP2", + "ami_id": "ami-08cbba67a708a50eb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9181,15 +11607,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5d8ce41fa9510ef", + "ami_id": "ami-015f798967de05028", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9197,15 +11624,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff7f34fb56710362", + "ami_id": "ami-02948adc33e5dd36f", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210331 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210331-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9213,15 +11641,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bf84c4f94f6d7c3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-07d7bd03d7c26c178", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9229,15 +11658,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca887e91c744f203", + "ami_id": "ami-0aed88177c42bc09d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230509 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230509-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9245,15 +11675,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d68223af95689f61", + "ami_id": "ami-026a4597d91367103", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190603-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9261,15 +11692,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6b68880cc94cf09", + "ami_id": "ami-0489c5707f095efce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9277,15 +11709,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059ed7bf7ce936231", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", + "ami_id": "ami-0601b2c5607acfc57", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240319-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240821-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9293,15 +11726,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023588a20be64fd16", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", + "ami_id": "ami-0fe012b905004ab15", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", + "name": "amzn-ami-2018.03.20231103-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9309,15 +11743,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d03e0afc8a3a307d", + "ami_id": "ami-018a4d049162a80a6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220921 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9325,15 +11760,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0227a1ff885b62d9c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", + "ami_id": "ami-03924f91032cd4ef2", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", + "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9341,15 +11777,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7b4a2e83736931b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "ami_id": "ami-043b0c9bebe2eb7ff", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9357,15 +11794,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04745c907583096fa", + "ami_id": "ami-021c1e530ef890dd9", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9373,15 +11811,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0094c194b41635bb7", + "ami_id": "ami-0227a1ff885b62d9c", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220831 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220831-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9389,15 +11828,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0805a006d50737fe5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-013ed567742e90919", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240925-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9405,15 +11845,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006046a5a90321bc7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231219 x86_64 ECS HVM GP2", + "ami_id": "ami-039ec3a707bdad48b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231219-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9421,15 +11862,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c27819a91ff3740d", + "ami_id": "ami-06277f20cae6e35d2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9437,15 +11879,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d770005758827471", + "ami_id": "ami-0bc6cffeb5d53e93d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210623-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9453,15 +11896,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007604c4c18ff8191", + "ami_id": "ami-076e5e56d577556d7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9469,15 +11913,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04891895564cde854", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-00af44767c0b9f5c3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240207-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9485,15 +11930,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0231377387c9cc369", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-04664860a1e1e2961", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9501,15 +11947,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec88a2cdf398fcf6", + "ami_id": "ami-0e5f5652eef4d2198", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9517,15 +11964,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020b33aa29fe1ddde", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-081764cbadced82c1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9533,15 +11981,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0ee71be5c20df68", + "ami_id": "ami-0220f8e037744d79a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9549,15 +11998,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bb05bbef9bbc750", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08f2011d0deea4967", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.m x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", + "name": "amzn-ami-2018.03.m-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9565,15 +12015,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ef2356d39d59165b", + "ami_id": "ami-0f6d379c5cd61ff6f", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240802 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240802-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9581,15 +12032,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f70363cf1c4a1fe", + "ami_id": "ami-01a15e94946919145", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241003-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9597,15 +12049,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d08f917c2b3ae456", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240903 arm64 ECS HVM EBS", + "ami_id": "ami-0abf1b04f846837ea", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9613,15 +12066,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e0588d2b667383c", + "ami_id": "ami-09fed32696c5bc21f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9629,15 +12083,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01132d29dd53937bf", + "ami_id": "ami-0b5515b589659c685", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", + "name": "amzn-ami-2018.03.20221010-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9645,15 +12100,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d61f9ce2def9dc2", + "ami_id": "ami-026774739276565a9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240905-x86_64-ebs", + "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -9661,15 +12117,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a6407061c6f43c25", + "ami_id": "ami-0896a00db83b7a311", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9677,15 +12134,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e0d66bb9fd71bf90", + "ami_id": "ami-05704b6347778c9ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9693,15 +12151,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02fa7dafa7cabc466", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "ami_id": "ami-02f2a73907327e3f5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240227 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9709,15 +12168,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0242f4db2e8c8a270", + "ami_id": "ami-052f5845e525f2a29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9725,15 +12185,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0546b02686311ee45", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", + "ami_id": "ami-09e8b752754474f6f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9741,15 +12202,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cd29cd007b8e9d37", + "ami_id": "ami-0b4caef1470c18cd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9757,15 +12219,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3a132b2a4c91d72", + "ami_id": "ami-0271ba92f5ba45ad3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9773,15 +12236,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07f252b1142b4207a", + "ami_id": "ami-02c20ebbb687fe789", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240905 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240730 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240905-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9789,15 +12253,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ad1afe3e2bae54b", + "ami_id": "ami-098a2a7c7f360e109", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9805,15 +12270,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e874f2ef4a4be5f7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", + "ami_id": "ami-023588a20be64fd16", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220630 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190607-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220630-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9821,15 +12287,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0529dcd9f4ceb7947", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221207 arm64 ECS HVM EBS", + "ami_id": "ami-0bcc5d05d4e449e6c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221207-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9837,15 +12304,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0998f8763d511b9c8", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20231114 x86_64 ECS HVM GP2", + "ami_id": "ami-0f1b99b37f55b86a6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230530 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20231114-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230530-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9853,15 +12321,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0380648576ce41edb", + "ami_id": "ami-0ec4d63557717c7c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230530-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -9869,15 +12338,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058aaa8fc87243469", + "ami_id": "ami-01711df8fe87a6217", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190614 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211120-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20190614-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9885,15 +12355,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0026c454f0b0c7cfa", + "ami_id": "ami-01bf84c4f94f6d7c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240809-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9901,15 +12372,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03813f2b90ae7f8f7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240604 arm64 ECS HVM GP2", + "ami_id": "ami-0cd29cd007b8e9d37", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9917,15 +12389,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adc350d7c7a2259f", + "ami_id": "ami-0052a24bec30ca418", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191212 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191212-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20190925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9933,15 +12406,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079fc82e262583e68", + "ami_id": "ami-00c945ec14a881100", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200928-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9949,15 +12423,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c0cdb996e8c42ed", + "ami_id": "ami-00b88c44b499b72f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221213-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9965,15 +12440,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0324abeea28cc0d27", + "ami_id": "ami-09dfe1d49bc8961b1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9981,15 +12457,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebb73c7ce7e9723b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-02d65d5f5b5a16bbb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240818 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240818-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -9997,15 +12474,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d8f2a68469b0d41", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "ami_id": "ami-06b4dc34e430b1edb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10013,15 +12491,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-033e64fdbcb71b6ac", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230929 arm64 ECS HVM GP2", + "ami_id": "ami-09fb62624e1ab3e2c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230929-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20211103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10029,15 +12508,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0630e3e85d3d350c7", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", + "ami_id": "ami-08dca40bad9f1728d", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", + "name": "al2022-ami-ecs-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10045,15 +12525,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05bd2d743f8018e40", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240818 arm64 ECS HVM EBS", + "ami_id": "ami-0eb56ba55a70c02ed", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240818-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10061,15 +12542,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07aefd47db91d9d95", + "ami_id": "ami-0bb25980183d9e54c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221207 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221207-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10077,15 +12559,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0896a00db83b7a311", + "ami_id": "ami-06b2cfe823a82178a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10093,15 +12576,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ed4c853db0df3b5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", + "ami_id": "ami-0787224315e64bef1", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10109,15 +12593,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050376733552ed8f7", + "ami_id": "ami-0b2f8e6f3e0e4d7b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10125,15 +12610,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef16be50516a1a4", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 arm64 ECS HVM GP2", + "ami_id": "ami-0fc2489e23c074cbd", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10141,15 +12627,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a15e94946919145", + "ami_id": "ami-0c2c34e9db3caf634", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221025 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221025-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10157,15 +12644,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083a9223abd9f4c11", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230509 arm64 ECS HVM GP2", + "ami_id": "ami-062b6d1642dfd80e4", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240319 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230509-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240319-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10173,15 +12661,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a0f7834e9c7f81e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "ami_id": "ami-041954b81e4c2a83e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240528 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10189,15 +12678,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c071c9c7602d121b", + "ami_id": "ami-044828c2bd9fd9e24", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10205,15 +12695,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b7c3357435b36ff", + "ami_id": "ami-0131729fe2781f22c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10221,15 +12712,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0977e48ad5de3c6e3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "ami_id": "ami-0794810bb3b53683b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10237,15 +12729,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c569e2f405158077", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20221025 arm64 ECS HVM GP2", + "ami_id": "ami-0cdc1533d83e7ff85", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221025-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10253,15 +12746,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebabf740582759bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0c3174520e8d77f4c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240604 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10269,15 +12763,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-030501e417dc01a6d", + "ami_id": "ami-0ca9fbdb5e1459b96", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10285,15 +12780,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab31739e97771d06", + "ami_id": "ami-008d6019f015f03ca", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231211 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250121 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231211-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10301,15 +12797,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016dfbb93297168e3", + "ami_id": "ami-03d536ef709d07804", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220209 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220209-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10317,15 +12814,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036de11384414e533", + "ami_id": "ami-0f5baf4928b76f45a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240730-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10333,15 +12831,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d31403aa8e81bb8", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20210514 arm64 ECS HVM GP2", + "ami_id": "ami-0bc84eab1035a867a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10349,15 +12848,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e9a40bb70f1d213", + "ami_id": "ami-072f29292d13ff0d1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240312 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240312-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10365,15 +12865,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027cc8c87c00fdd80", + "ami_id": "ami-0c17bb56a8d314e09", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230731 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230731-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10381,15 +12882,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fbb75f1f363d50e", + "ami_id": "ami-029bf83e14803c25f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10397,15 +12899,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-015a4e3277f92900e", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07154257caf4492a0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10413,15 +12916,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca8a3982d56fdb1d", + "ami_id": "ami-0388b2b2a56b8c257", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200623 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200623-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10429,15 +12933,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c62d0d0d3b8b17a5", + "ami_id": "ami-0848ea48dc80d7179", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230301 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230301-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10445,15 +12950,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00047c67715f7e065", + "ami_id": "ami-00b27e624a2f4e021", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240821-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10461,15 +12967,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cfa1a08bfc8be6d", + "ami_id": "ami-0478b0a885c9da085", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10477,15 +12984,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a93f5eba27ad9aeb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", + "ami_id": "ami-06d912f23aeb2b750", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20241108 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210202-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241108-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10493,15 +13001,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02600adc2460dc00d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "ami_id": "ami-06bcb6027941ee611", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241017-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10509,15 +13018,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a68d4a1c6144609", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240712 arm64 ECS HVM GP2", + "ami_id": "ami-09d42cf253b2fc2fa", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240328 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240328-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10525,15 +13035,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b61e7243abbc8ff1", + "ami_id": "ami-0827caf35ab5fdd69", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240905 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230127 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240905-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10541,15 +13052,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0522f60dc9390f2d2", + "ami_id": "ami-0ba85714f7a3f202c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10557,15 +13069,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-089ae12b651614810", + "ami_id": "ami-0b858b66187fd07eb", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230809-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10573,15 +13086,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0092e55c70015d8c3", + "ami_id": "ami-0b116632f17ae5047", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10589,15 +13103,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04527d54fe7081e13", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", + "ami_id": "ami-0166979ff207a2f2b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10605,15 +13120,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0151b281197a8d2e0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06189bd01d5ced410", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", + "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10621,15 +13137,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0310b7b3566b52ecc", + "ami_id": "ami-00f815702af6b8889", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200915-x86_64-ebs", + "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -10637,15 +13154,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b7c3f4bc4b8f1a9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240723 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-046a07d53e468cf6a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240723-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191014-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10653,15 +13171,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06004c3fd2e44693a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230731 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06cdf6bb38d116f1f", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240709 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230731-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240709-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10669,15 +13188,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ccadf1b9fa86c7b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240409 arm64 ECS HVM GP2", + "ami_id": "ami-09bff7765887e9b84", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240409-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10685,15 +13205,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043b0c9bebe2eb7ff", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230406 arm64 ECS HVM EBS", + "ami_id": "ami-0015e288e8871864a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10701,15 +13222,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03382d2e393df969e", + "ami_id": "ami-07e8cf26f37eb24fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10717,15 +13239,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6016379e9b1cdc6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 arm64 ECS HVM GP2", + "ami_id": "ami-0acbb1f0ca626febf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10733,15 +13256,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-023fbf767e39718f6", + "ami_id": "ami-0c68c1ca07bfa6fbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10749,15 +13273,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b356c2f9b6e8490d", + "ami_id": "ami-0da8e6964fce41a86", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10765,15 +13290,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-059b30f3fd4cb5ce5", + "ami_id": "ami-0d86afc315341a6c5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10781,15 +13307,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c1b561b88a479085", + "ami_id": "ami-011ce3fbe73731dfe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190402 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190402-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10797,15 +13324,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f5a67388fcdbb2b8", + "ami_id": "ami-0b0fa92c1bc51f50c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221102 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221102-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10813,15 +13341,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b0903e89baae6f3", + "ami_id": "ami-0be2bc6ed44053ba9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240430-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10829,15 +13358,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da70f1d8d7b04173", + "ami_id": "ami-08402b0c770d17452", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231114-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10845,15 +13375,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0220f8e037744d79a", + "ami_id": "ami-0b9afce559a2ee58e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10861,15 +13392,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0777fc6d1e6ac88", + "ami_id": "ami-0ff6dd7a8777a8a12", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10877,15 +13409,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d560067503d723e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-09be69f2b561f9c1a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240702 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240702-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10893,15 +13426,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08bdaa01a29d62a75", + "ami_id": "ami-001e7bcdac51a9a7d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -10909,15 +13443,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09beedd47899d6734", + "ami_id": "ami-07abebf506618ed08", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.s x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.s-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10925,15 +13460,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06df93d77f517c4a7", + "ami_id": "ami-0b5bb9049e3dce7ec", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10941,15 +13477,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a9c0b1099de705a", + "ami_id": "ami-016941c4cd7fd9039", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240430 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240430-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10957,15 +13494,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042d7dcebc185f4f3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "ami_id": "ami-06c54936b53c8b9e9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221213 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10973,15 +13511,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0413b91ede564ca", + "ami_id": "ami-0d61a9c1c9939f73b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240909 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -10989,15 +13528,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ca5787c77878a353", + "ami_id": "ami-0eeabffd952fdcae2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240409 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240409-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11005,15 +13545,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0310d0e01c1e033c0", + "ami_id": "ami-0c071c9c7602d121b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241001 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210902-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241001-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11021,15 +13562,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-012bb964803d474e5", + "ami_id": "ami-0180561e795dcecc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211020 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231219 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211020-x86_64-ebs", + "name": "amzn-ami-2018.03.20231219-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11037,15 +13579,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042b7b137647c83f9", + "ami_id": "ami-035144d28537cfde5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11053,15 +13596,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-086ab21bc0e1a8bd9", + "ami_id": "ami-093bd289ac98ef9b9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20230301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11069,15 +13613,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abf1b04f846837ea", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200623 x86_64 ECS HVM GP2", + "ami_id": "ami-0aef0dc9506619ce5", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200623-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11085,15 +13630,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061465fbd9b691c0a", + "ami_id": "ami-01b0903e89baae6f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231213-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11101,15 +13647,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e2a11a62d338e99", + "ami_id": "ami-02555461a4046cdf2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201209 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201209-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11117,15 +13664,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0849e5e45f332f49c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230301 arm64 ECS HVM GP2", + "ami_id": "ami-0a20b1ffc3cb736b6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20250121 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230301-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11133,15 +13681,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6956572fc298e97", + "ami_id": "ami-06b36bc98da3f05e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11149,15 +13698,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c05f73a68a1eb21", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", + "ami_id": "ami-068d644ea02de3243", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11165,15 +13715,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab78361f1cee9a3e", + "ami_id": "ami-07c3085acb265baad", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231204 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231204-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11181,15 +13732,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cebf690d7b5c4184", + "ami_id": "ami-0d03a35621cf75f82", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250226 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11197,15 +13749,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00bcae5b31b05c62c", + "ami_id": "ami-0a0f6eee4cc28ca2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230809-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11213,15 +13766,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01de5b7d731c52fd9", + "ami_id": "ami-0b4d2da77937097e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220630 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220630-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11229,15 +13783,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0742473a492e3766a", + "ami_id": "ami-df49e9bd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.d x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", + "name": "amzn-ami-2018.03.d-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11245,15 +13800,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dda4cb94b1f93a03", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210519 x86_64 ECS HVM GP2", + "ami_id": "ami-063236dea8a41d3d1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210519-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11261,15 +13817,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0443f54b4d27184c1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240809 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0522f60dc9390f2d2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240903 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240809-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240903-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11277,15 +13834,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7c4f7f17d3eecbc", + "ami_id": "ami-0672d43ed4b13b634", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11293,15 +13851,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b05d2dd54e595d3d", + "ami_id": "ami-0937d4f473dc7efc6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241010 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241010-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20231024-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11309,15 +13868,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b36bc98da3f05e5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "ami_id": "ami-0508e25553325b00e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231219 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210802-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11325,15 +13885,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091469e4fdf00e0ab", + "ami_id": "ami-03f61efbda10aec28", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201013 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201013-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11341,15 +13902,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f9a9874affbb05b", + "ami_id": "ami-0987a8ba29e26feff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210514 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210514-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11357,15 +13919,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04cb708b4afbc2779", + "ami_id": "ami-027cc8c87c00fdd80", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200708 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200708-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20210301-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -11373,15 +13936,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd43114d721973ac", + "ami_id": "ami-0026c454f0b0c7cfa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11389,15 +13953,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4d2da77937097e0", + "ami_id": "ami-0ffa2ead4e5043195", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250129 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11405,15 +13970,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb7373522c9dc737", + "ami_id": "ami-0478ccfb194c4313c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240725-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11421,15 +13987,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bc84eab1035a867a", + "ami_id": "ami-0ec88a2cdf398fcf6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221230-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11437,15 +14004,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026390f6119b7d4b6", + "ami_id": "ami-0b76e759367f1f508", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200603 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200603-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220822-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11453,15 +14021,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1350ef174a463eb", + "ami_id": "ami-00c05f73a68a1eb21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231213 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231213-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11469,15 +14038,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebe91149e65b49df", + "ami_id": "ami-0376e4ef14388d75f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241115-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11485,15 +14055,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe26c45f7014800a", + "ami_id": "ami-08acf5fe7ee6ae359", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200205 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200205-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11501,15 +14072,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff6dd7a8777a8a12", + "ami_id": "ami-042fde5181291c3d6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240725-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200430-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11517,15 +14089,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046a07d53e468cf6a", + "ami_id": "ami-039894e835f6017fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191014 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20191014-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11533,15 +14106,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02c632a1464aa71d6", + "ami_id": "ami-08b7c3357435b36ff", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231024 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11549,15 +14123,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001bb05cf998464a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", + "ami_id": "ami-04ad58e57674b8039", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240709 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240709-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11565,15 +14140,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3dd83c879f0b3ba", + "ami_id": "ami-0481619781e830899", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240227 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240227-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11581,15 +14157,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4f2969a204cc071", + "ami_id": "ami-02541c11c8f08a1e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250113 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230530-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11597,15 +14174,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032770b8f9971faa7", + "ami_id": "ami-030501e417dc01a6d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240131 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240131-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11613,15 +14191,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cdc1533d83e7ff85", + "ami_id": "ami-04f869e6c7dc8b348", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230912 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230912-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11629,15 +14208,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03d081fc669d162b7", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", + "ami_id": "ami-0d58bbf76cd68f3df", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11645,15 +14225,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ee52f766e2b19e09", + "ami_id": "ami-0432fca19dd3ca234", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11661,15 +14242,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a234184fa8fbfb15", + "ami_id": "ami-0a6407061c6f43c25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240702 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231219 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240702-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231219-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11677,15 +14259,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a78320cd45fbb388", + "ami_id": "ami-0ba6df717ed766b7c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210609 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210609-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11693,15 +14276,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026a4597d91367103", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", + "ami_id": "ami-05af263575b8e73dd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250206 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11709,15 +14293,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05704b6347778c9ac", + "ami_id": "ami-028bb3afb63a28447", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240221 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220607-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240221-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11725,15 +14310,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0af07149bec17f746", + "ami_id": "ami-0f9f67ab3a88919de", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230929 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230929-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11741,15 +14327,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a018f4812a6282b9", + "ami_id": "ami-069cd3a1084df8089", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230705-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11757,15 +14344,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c56e8e3cbcacc16", + "ami_id": "ami-0020ff5d19a60c0e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20191031 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240610-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20191031-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11773,15 +14361,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09abc27e8324bf3f6", + "ami_id": "ami-0d9d4bdcd18bd80ee", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220607 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220607-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11789,15 +14378,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae02640a3cc52cc7", + "ami_id": "ami-0a02d804a0db84447", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240818 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240818-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11805,15 +14395,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b521d534c627839", + "ami_id": "ami-09a3ba2a1ff585edd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11821,15 +14412,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d45cc52972d7f389", + "ami_id": "ami-0e3a9308d8f475421", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230509-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-hvm-2.0.20210805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11837,15 +14429,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dc8eb7eafcd37e22", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", + "ami_id": "ami-055a14e47e7c2ca90", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11853,15 +14446,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0155e8660719f9425", + "ami_id": "ami-0cdf16bb10adcaaa1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11869,15 +14463,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a45afc001cb21ab9", + "ami_id": "ami-03efeb0dfaed20e7a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11885,15 +14480,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07522d7404f571eef", + "ami_id": "ami-09475847322e5566f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210428 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20190510 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210428-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20190510-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11901,15 +14497,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0112bb4988eedc594", + "ami_id": "ami-0f97a76a70d651d71", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.w x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.w-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11917,15 +14514,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09040ef943d485f1d", + "ami_id": "ami-085ee758e27361c0b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11933,15 +14531,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c7d7c89d96416bd", + "ami_id": "ami-0fb993b2809160fdc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250214 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230420-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -11949,15 +14548,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-026774739276565a9", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210413 x86_64 ECS HVM GP2", + "ami_id": "ami-01bb05bbef9bbc750", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240409 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210413-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240409-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11965,15 +14565,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c3003dcf5b594a11", + "ami_id": "ami-012d199634096da40", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210301 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210301-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11981,15 +14582,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0702b6b95f7216d59", + "ami_id": "ami-06f4217c3b49bb285", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240821-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -11997,15 +14599,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079570a91de26949e", + "ami_id": "ami-0a53f55dfbc2fe407", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230109 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20230109-kernel-5.15-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12013,15 +14616,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9a0285fd5494025", + "ami_id": "ami-0e81cd5367b3cbaed", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240528 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240312 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12029,15 +14633,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0408190b11a73de67", + "ami_id": "ami-023fbf767e39718f6", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220304 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220304-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12045,15 +14650,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da17ed69155c5e55", + "ami_id": "ami-059b30f3fd4cb5ce5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.n x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.n-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12061,31 +14667,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03b1333048cc0d1c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", + "ami_id": "ami-06d33f81ca8384556", + "architecture": "x86_64", + "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", + "name": "Windows_Server-2016-English-Full-ECS_Optimized-2019.03.07", "owner_id": "591542846629", - "platform": null, + "platform": "windows", "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051b682e0d63cc816", + "ami_id": "ami-03509af578f055e61", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.o x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.o-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12093,15 +14701,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068bfa72c3009b7dd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240305 x86_64 ECS HVM EBS", + "ami_id": "ami-0ab76f81369b03218", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230420 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12109,15 +14718,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e4b147599c13588", + "ami_id": "ami-086ab21bc0e1a8bd9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240709 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201028-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240709-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12125,15 +14735,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bdc7b601b5149979", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240312 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-041da001c6bb4dde6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20220304 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240312-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220304-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12141,15 +14752,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00afcf0acdb42a168", + "ami_id": "ami-095016ddc8e84b54e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200805 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240611-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200805-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12157,15 +14769,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04151a990d863261f", + "ami_id": "ami-0746e14bea20c6c21", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210504 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240328-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210504-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12173,15 +14786,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0259e486565a5ecf7", + "ami_id": "ami-0ca38dc926708bb46", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20231103 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240625-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231103-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12189,15 +14803,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df2c2886f71f0661", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240207 arm64 ECS HVM GP2", + "ami_id": "ami-0fd9c3bdecfb968e3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240207-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12205,15 +14820,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07610e278b1ddf331", + "ami_id": "ami-0e6956572fc298e97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20191114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230606 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20191114-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230606-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12221,15 +14837,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00788bf7867354795", + "ami_id": "ami-0d9c07780d5d4a0e6", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240820 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12237,15 +14854,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09983a73b07775efe", + "ami_id": "ami-069514de299b7b236", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.20191016 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240328 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20191016-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240328-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12253,15 +14871,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0166979ff207a2f2b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0122a3618e52b6418", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210202 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210202-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12269,15 +14888,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d61b06dc8e184310", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20231204 arm64 ECS HVM EBS", + "ami_id": "ami-06bd92f895a187e9c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240730 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231204-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240730-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12285,15 +14905,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-069a63274eed7b117", + "ami_id": "ami-0ef2817d56b328f63", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241001-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12301,15 +14922,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04763b69cdfe3a360", + "ami_id": "ami-03016f4af05fcb4fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240424 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240424-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12317,15 +14939,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a53f55dfbc2fe407", + "ami_id": "ami-011358576f2c8a63d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210802 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210802-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12333,15 +14956,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b26aaba6048f2f6", + "ami_id": "ami-0f9bf5981b1d41d92", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20201028 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20201028-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12349,15 +14973,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021dd6b2aa017af16", + "ami_id": "ami-03d560067503d723e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20221118-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12365,15 +14990,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0449ab80e8bc1bfce", + "ami_id": "ami-08a822c4f315be350", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12381,15 +15007,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d18529ac94c4da2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "ami_id": "ami-031c9a424ff292e23", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230705 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230705-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12397,15 +15024,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cf4754c30dd266d5", + "ami_id": "ami-08715e80ab663bd74", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240730 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240730-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12413,15 +15041,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070f591cb1fe17b59", + "ami_id": "ami-09acb528d1913ea2b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12429,15 +15058,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068d394691951e174", + "ami_id": "ami-0fd43114d721973ac", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20221230 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220318 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20221230-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220318-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12445,15 +15075,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0162eca4352f49566", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-082ae1ce203f1a615", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241003 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241003-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12461,15 +15092,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e4d076c154decec", + "ami_id": "ami-0e72d45bc721aaa38", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200218 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20200218-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12477,15 +15109,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0688c9f1a05407d9c", + "ami_id": "ami-00dbe4f51ece66e80", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240809 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240809-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12493,15 +15126,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0702e1b9bce3a6cbf", + "ami_id": "ami-04745c907583096fa", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230214 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn-ami-2018.03.20230214-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12509,15 +15143,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0535149048e0f2576", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240131 arm64 ECS HVM GP2", + "ami_id": "ami-02fc1c0c6d787c534", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240925 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240925-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12525,15 +15160,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06834001b73e7db3b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20201119 x86_64 ECS HVM GP2", + "ami_id": "ami-0151b281197a8d2e0", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230214 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20201119-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230214-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12541,15 +15177,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046fe830144007c17", + "ami_id": "ami-03f3596e2f655f8c9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200902 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241120 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200902-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12557,15 +15194,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b7041ca3cce39bc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0546b02686311ee45", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20221230 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221230-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12573,15 +15211,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032d1759af9dcaad4", + "ami_id": "ami-021cc29da9b72defc", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230509 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230509-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12589,15 +15228,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0593d7e1431e9c0c2", + "ami_id": "ami-0e036929158f7e85b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231024-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12605,15 +15245,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b7a841e8b4d80122", + "ami_id": "ami-08459996337ee1b64", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240725 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12621,15 +15262,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0da8e6964fce41a86", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240905 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08bdaa01a29d62a75", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240905 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240905-arm64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240905-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12637,15 +15279,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-076e5e56d577556d7", + "ami_id": "ami-04c74eb8ebd3fbae8", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230314 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230314-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12653,15 +15296,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0132ae67ec24b7363", + "ami_id": "ami-0e5a3910805eedd4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210210 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241001 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210210-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241001-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12669,15 +15313,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0198873134b2413a6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231211 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01132d29dd53937bf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200708 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231211-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200708-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12685,15 +15330,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063236dea8a41d3d1", + "ami_id": "ami-0be700ad5afd19999", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230214 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-arm64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20221213-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12701,15 +15347,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021c1e530ef890dd9", + "ami_id": "ami-00d88bf33e58088cb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240917 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI amzn-ami-2018.03.20210723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240917-kernel-6.1-x86_64", + "name": "amzn-ami-2018.03.20210723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -12717,15 +15364,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034503f160a6c5265", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0ace32fdb211c83e0", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20221010 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12733,15 +15381,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004bc24942fd663f4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230627 x86_64 ECS HVM EBS", + "ami_id": "ami-0ff21b701d639bedb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240221 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240221-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12749,15 +15398,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0271ba92f5ba45ad3", + "ami_id": "ami-081fff8a891e16d4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12765,15 +15415,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1e33803b3832773", + "ami_id": "ami-0b3a132b2a4c91d72", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20210316 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20210316-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12781,15 +15432,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb56ba55a70c02ed", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 x86_64 ECS HVM GP2", + "ami_id": "ami-0dc8eb7eafcd37e22", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240725 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240725-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12797,15 +15449,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0048c570678906ec2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06ed77e2a1e126241", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12813,15 +15466,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-054f8915cc9b5f19c", + "ami_id": "ami-05357471aaf3a2be5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20230420 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241115-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230420-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12829,15 +15483,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b7d0fb4c1220c87", + "ami_id": "ami-0473cbe1b4ef2b03f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240610 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240610-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12845,15 +15500,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07295f2c7ac4df687", + "ami_id": "ami-0e4a50d46cf4703ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240725-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12861,15 +15517,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a79c7f154ddbd3db", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241003 arm64 ECS HVM GP2", + "ami_id": "ami-0039ba64e4fec98e2", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241003-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12877,15 +15534,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce94067de30c22bf", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241120 x86_64 ECS HVM GP2", + "ami_id": "ami-0c6a08b7a6dc8a02d", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241023 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241023-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12893,15 +15551,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f881f759f3e94a3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240207 x86_64 ECS HVM GP2", + "ami_id": "ami-042b7b137647c83f9", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230127 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240207-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12909,15 +15568,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02205f31076c48284", + "ami_id": "ami-000388ac8cfb44847", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12925,15 +15585,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09200875b135e4648", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-03255d6f9f0f172e9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240312 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240312-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12941,15 +15602,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-044828c2bd9fd9e24", + "ami_id": "ami-0d66a98848c17c899", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240807-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12957,15 +15619,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02febe6ca15caa2db", + "ami_id": "ami-001bb05cf998464a3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241015 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -12973,15 +15636,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0427b8fc52565f8e0", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", + "ami_id": "ami-0b0265acbc4e5a100", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -12989,15 +15653,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a57c71eaa9a3c2d", + "ami_id": "ami-01ed4c853db0df3b5", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240723 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240802-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240723-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13005,15 +15670,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d9c07780d5d4a0e6", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231103 arm64 ECS HVM GP2", + "ami_id": "ami-099cd33326a0aa99e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231103-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13021,15 +15687,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08268d90ae5dd8870", + "ami_id": "ami-016dfbb93297168e3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230912 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20221118 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230912-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20221118-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13037,15 +15704,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f410a0cc5a881449", + "ami_id": "ami-0098e39f26d3deb70", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230530 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230530-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13053,15 +15721,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e547e72a7e6140c0", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240730 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0dbaa0e1351e64278", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240730-arm64-ebs", + "name": "amzn-ami-2018.03.20240319-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13069,15 +15738,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fc2489e23c074cbd", + "ami_id": "ami-00e9a40bb70f1d213", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20221207 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240815-x86_64-ebs", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221207-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13085,15 +15755,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d28b401daf75e73", + "ami_id": "ami-01aa08702d5b93c4c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241017 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241017-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13101,15 +15772,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081c84c11e8681d4e", + "ami_id": "ami-0bf99589b280f1455", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250129 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13117,31 +15789,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d33f81ca8384556", - "architecture": "x86_64", - "description": "Microsoft Windows Server 2016 Full optimized for ECS and provided by Amazon", + "ami_id": "ami-0a6bfb77c1bcf4cbb", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "Windows_Server-2016-English-Full-ECS_Optimized-2019.03.07", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", - "platform": "windows", + "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e6a4a4d0cb8ca0f", + "ami_id": "ami-0e01b7db2c79541ef", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13149,15 +15823,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bfc7338fd480733", + "ami_id": "ami-0e81a12939d2ccd48", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241001 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241001-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13165,15 +15840,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aee62b855f2cd185", + "ami_id": "ami-08fc1dff28bae4ab3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240207 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13181,15 +15857,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f6d379c5cd61ff6f", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240515 arm64 ECS HVM EBS", + "ami_id": "ami-0fda48b6c27c921ad", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240610 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20240610-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13197,15 +15874,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e33c8a9dce7c531", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", + "ami_id": "ami-09bf186b", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13213,15 +15891,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b32c55aead7c7eb", + "ami_id": "ami-075d90a42045a2df9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230420 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230420-x86_64-ebs", + "name": "amzn-ami-2018.03.20200115-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -13229,15 +15908,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032edebfa34883542", + "ami_id": "ami-0427b8fc52565f8e0", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13245,15 +15925,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9f67ab3a88919de", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", + "ami_id": "ami-040d5d3b63d2f772e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13261,15 +15942,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a0e36f24f17e212", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240925 arm64 ECS HVM GP2", + "ami_id": "ami-0b0780a87842798df", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240925-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13277,15 +15959,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cfd12e4ce6ed1a73", + "ami_id": "ami-0e6b68880cc94cf09", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200319 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200723-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13293,15 +15976,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d08e1f53930d73d4", + "ami_id": "ami-09b287b95d65484c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230127-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230906-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13309,15 +15993,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5fa39efea457ed4", + "ami_id": "ami-017fdbe5fed8fb4d4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20240109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13325,15 +16010,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afc91f07aadfa1e1", + "ami_id": "ami-040bd2e2325535b3d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13341,15 +16027,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc25923e20d463eb", + "ami_id": "ami-08a7336c7c132da3e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240424 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240424-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13357,15 +16044,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bce879287a231f7d", + "ami_id": "ami-0d1946a2d1b7bca83", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240528 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240528-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13373,15 +16061,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d0ffb7eee692dae4", + "ami_id": "ami-032edebfa34883542", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230929 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20211115 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230929-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-hvm-2.0.20211115-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13389,15 +16078,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c34ea15ea6b562ce", + "ami_id": "ami-0cec0545d976021fd", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240807 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240807-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13405,15 +16095,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016dc222f00c83038", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", + "ami_id": "ami-0d6f549dacb217d12", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13421,15 +16112,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e3eb6763c59bc7a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", + "ami_id": "ami-0f420f9f9b4d2380c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230912 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230109-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230912-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13437,15 +16129,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a96da37cfa9923a4", + "ami_id": "ami-014c52988da6418e7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190215 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190215-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13453,15 +16146,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fba8dad81d423fc5", + "ami_id": "ami-0cbcefc130c155362", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241003 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241003-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13469,15 +16163,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04f1b2dbba1365d82", + "ami_id": "ami-0742473a492e3766a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230314 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230314-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13485,15 +16180,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c7dea114481e059d", + "ami_id": "ami-030af038b980a8a92", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13501,15 +16197,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04490644a5a2dc384", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240328 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-055253b63aefcb8da", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230428 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240328-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230428-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13517,15 +16214,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7274e4476f7fd2f", + "ami_id": "ami-02febe6ca15caa2db", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210819 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20210819-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13533,15 +16231,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b4caef1470c18cd9", + "ami_id": "ami-0997b4e036f2c957c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231114 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240821 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231114-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240821-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13549,15 +16248,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bfc89e56174f5e7", + "ami_id": "ami-0008da0898d20673a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241217 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13565,15 +16265,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b1fafc145aae4126", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231211 x86_64 ECS HVM GP2", + "ami_id": "ami-01e12a888f63ae8cd", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20241115 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20231211-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241115-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13581,15 +16282,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058b1211350aeeff9", + "ami_id": "ami-026a55221ebd0a9b7", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240109 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250121 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240109-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13597,15 +16299,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f92aff469dc4b916", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200603 x86_64 ECS HVM GP2", + "ami_id": "ami-0a6bcded2527ba5b6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230929 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200603-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230929-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13613,15 +16316,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-079dc29e06a361f15", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "ami_id": "ami-051b1d01a8cd22b05", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230627 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20230627-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13629,15 +16333,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e54e066824cee41e", + "ami_id": "ami-0d0d5457f83226c5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250224 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220822-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13645,15 +16350,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0218d5edd3aa09be5", + "ami_id": "ami-094732052c326c50f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240227 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240604-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240227-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13661,15 +16367,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03efeb0dfaed20e7a", + "ami_id": "ami-05ddc30004485b11b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240515 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240515-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13677,15 +16384,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05d62f8307958eeec", + "ami_id": "ami-09200875b135e4648", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240319-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240610-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13693,15 +16401,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d3e61b01b8cbe54", + "ami_id": "ami-0da0ec372af784699", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240802-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240528-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13709,15 +16418,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aba71b4a7794e4a7", + "ami_id": "ami-08f6acdaa858c5148", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231103 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200820 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231103-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200820-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13725,15 +16435,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cbcefc130c155362", + "ami_id": "ami-047a941a94f470c4b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230929 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230929-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13741,15 +16452,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4cde9b8d4f532d6", + "ami_id": "ami-0517bb7f2d522f479", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250102 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13757,15 +16469,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d8336a39db6677e", + "ami_id": "ami-08cb2238a6247f78d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13773,15 +16486,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eed1c915ea891aca", + "ami_id": "ami-02dfc6ae084401bf5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20181112 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20220520 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20181112-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20220520-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13789,15 +16503,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0015e288e8871864a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 x86_64 ECS HVM GP2", + "ami_id": "ami-0cebf690d7b5c4184", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231024 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231024-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13805,15 +16520,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0d87256bd5dc772", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20231204 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0853664c97bc5c9f6", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240207 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231204-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240207-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13821,15 +16537,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000f8626e7e858a1c", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210210 x86_64 ECS HVM GP2", + "ami_id": "ami-034503f160a6c5265", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210210-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13837,15 +16554,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084361c6735de8541", + "ami_id": "ami-03fc6d7ecd6009b49", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20221102 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230627-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20221102-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13853,15 +16571,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00b27e624a2f4e021", + "ami_id": "ami-04eb6d90219be48bb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20231114 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240802 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231114-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240802-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13869,15 +16588,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04994d21a40280671", + "ami_id": "ami-0671e69698b98d27a", "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20230906 arm64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240909 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230906-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20240909-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13885,15 +16605,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c679276a05ea3873", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240818 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0094c194b41635bb7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230912 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240818-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230912-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13901,15 +16622,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046a8b5fa07812268", + "ami_id": "ami-0dbea8e1780e231da", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220822 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230720 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20220822-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230720-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13917,15 +16639,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ee0e3d95734bcaa", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", + "ami_id": "ami-0267e832116a2026a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241115 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13933,15 +16656,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c74eb8ebd3fbae8", + "ami_id": "ami-0155e8660719f9425", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231103 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20230606-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20231103-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13949,15 +16673,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0523ffd1be8111018", + "ami_id": "ami-091a4fdd4fe193feb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20250117 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240131-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -13965,15 +16690,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c7e19eb9ba8a811", + "ami_id": "ami-06ee0e3d95734bcaa", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220627 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240201 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220627-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240201-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13981,15 +16707,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cbba67a708a50eb", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-08267935ed9a33ced", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240610 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240610-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -13997,15 +16724,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d916da9bd34628d", + "ami_id": "ami-05fcfcc754aecbfda", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220509-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14013,15 +16741,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01dee8f614115c3b8", + "ami_id": "ami-0092e55c70015d8c3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2018.03.e x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220121-x86_64-ebs", + "name": "amzn-ami-2018.03.e-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14029,15 +16758,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c0d12a17dacb1fad", + "ami_id": "ami-03b1333048cc0d1c0", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240903 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230906 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240903-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230906-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14045,15 +16775,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013405128923d2df3", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241001 arm64 ECS HVM EBS", + "ami_id": "ami-0d5c1609190375855", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241213 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241001-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14061,15 +16792,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad0ec0239add3bdd", + "ami_id": "ami-02205f31076c48284", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210121 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210121-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20200723-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14077,15 +16809,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5564ca7e0b414a9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220411 x86_64 ECS HVM GP2", + "ami_id": "ami-0630e3e85d3d350c7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240723 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220411-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240723-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14093,15 +16826,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f995f4e8a6876883", - "architecture": "arm64", - "description": "Amazon Linux AMI 2022.0.20221230 arm64 ECS HVM EBS", + "ami_id": "ami-096d467b43b2344ba", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20190607 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20221230-kernel-5.15-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20190607-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14109,15 +16843,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ddc30004485b11b", + "ami_id": "ami-01aecd8c6822766b8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241108 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240409-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14125,15 +16860,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-042fde5181291c3d6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200430 x86_64 ECS HVM GP2", + "ami_id": "ami-0fe741f189470879c", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230321 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200430-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230321-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14141,15 +16877,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0787224315e64bef1", + "ami_id": "ami-0f6259f9eb69bb05f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230606 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230606-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14157,15 +16894,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00f815702af6b8889", + "ami_id": "ami-0449ab80e8bc1bfce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.j x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.j-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14173,15 +16911,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bf186b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.b x86_64 ECS HVM GP2", + "ami_id": "ami-016dc222f00c83038", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240109 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.b-amazon-ecs-optimized", + "name": "al2023-ami-ecs-hvm-2023.0.20240109-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14189,15 +16928,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001e7bcdac51a9a7d", + "ami_id": "ami-0a48e6d2e033acbd2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240725 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20230731 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230731-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14205,15 +16945,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d8443c7f6628efe", + "ami_id": "ami-08fa477d44c00d800", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230321 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230321-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14221,15 +16962,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fc1dff28bae4ab3", + "ami_id": "ami-004b732b79323a48e", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240201 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20231024 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240201-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20231024-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14237,15 +16979,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06277f20cae6e35d2", + "ami_id": "ami-0ade904371c05ee2d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230906 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20241010 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230906-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241010-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14253,15 +16996,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0699fe0cf5a1459c8", + "ami_id": "ami-0aaf4f75a696ec244", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240723 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240723-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14269,15 +17013,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e036929158f7e85b", + "ami_id": "ami-045db6083869d17d8", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240730 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20240611-x86_64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240730-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14285,15 +17030,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07b2fe16a1b0c1bcc", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-01d8336a39db6677e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20240725 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241023-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240725-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14301,15 +17047,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a676b7c3b9d251ae", + "ami_id": "ami-050376733552ed8f7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20230127 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-neuron-hvm-2022.0.20230127-kernel-5.15-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14317,15 +17064,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fcfcc754aecbfda", + "ami_id": "ami-013289749f5418f5b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240809-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14333,15 +17081,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c68c1ca07bfa6fbc", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230406 x86_64 ECS HVM EBS", + "ami_id": "ami-0d5794c24bd530d13", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20250224 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230406-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14349,15 +17098,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-004083b0e6d308856", + "ami_id": "ami-0d004189c5e109c8f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240221 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240221-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14365,15 +17115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b296e50caaa70e0c", + "ami_id": "ami-09926ba869f165af4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240815-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14381,15 +17132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099a864483eb679f2", - "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20211115 x86_64 ECS HVM GP2", + "ami_id": "ami-0edbb0861bcf10b4a", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230314 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20211115-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230314-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14397,15 +17149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d810d74766d7ba5", + "ami_id": "ami-0294f97a4b059caad", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210915 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20250224 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210915-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -14413,15 +17166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04a30d85a55705515", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241108 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-07295f2c7ac4df687", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241108-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241023-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14429,15 +17183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e1f2642e8ed2b983", + "ami_id": "ami-07ad56e596d2787af", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20210106 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250226 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20210106-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14445,15 +17200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021d222fa29eb4f63", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-02e4d076c154decec", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20230705 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240319-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20230705-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14461,15 +17217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03509af578f055e61", + "ami_id": "ami-0c4e525d008ebef10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20230720 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2.0.20240221 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20230720-kernel-6.1-x86_64", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240221-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14477,15 +17234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bf93bf7b66772f3", + "ami_id": "ami-03e6ed09bced6d3a4", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20240131 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20240131-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240920-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14493,15 +17251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c23f4270be44a9da", + "ami_id": "ami-096c7e1d7b79d02ae", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230127 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230127-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14509,15 +17268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f518964f6c2a4e4", + "ami_id": "ami-00889ad21b50fe113", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20241108-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14525,15 +17285,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a822c4f315be350", + "ami_id": "ami-036d8bf94176b648a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241003 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240809 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241003-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240809-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14541,15 +17302,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dabdaa193a16a6eb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240712 x86_64 ECS HVM GP2", + "ami_id": "ami-0ddcd0ffb9fc0268e", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240221 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240712-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240221-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14557,15 +17319,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dbe4f51ece66e80", + "ami_id": "ami-0fa99ac68a61f59ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20241017 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20240820 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20240820-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14573,15 +17336,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f0cb44fc87c2cf1", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", + "ami_id": "ami-04de619f62ed50f60", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20230428 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14589,15 +17353,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ef770416e43f9c9", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240815 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0834ed0e4c5045423", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240815-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14605,15 +17370,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093c11f8bc1d75d38", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240528 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-06df93d77f517c4a7", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20231103 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240528-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20231103-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14621,15 +17387,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a88663b6e6e9690", + "ami_id": "ami-02d1d818f19a85542", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240109 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230109 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240109-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230109-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14637,15 +17404,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06bcb6027941ee611", + "ami_id": "ami-08ef24a1290e4a19e", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240201 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241010 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240201-arm64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20241010-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14653,15 +17421,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02222a138e83a41ea", + "ami_id": "ami-0f55871a94f237053", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240625 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240319 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240625-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240319-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14669,15 +17438,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd1294c5a7395c06", + "ami_id": "ami-06efe8098bb8344fc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230214 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240611 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20230214-x86_64-ebs", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20240611-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14685,15 +17455,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8ada30f792432b2", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-050b0ac5a44290959", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240802 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240709-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240802-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14701,15 +17472,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f83da25c30ad497b", + "ami_id": "ami-0ec12d393c6996280", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241108 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241108-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240903-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14717,15 +17489,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d188fd4fde0157b0", + "ami_id": "ami-02a1d998121cea625", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240909-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20200108-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14733,15 +17506,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035144d28537cfde5", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20231213 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-06e0588d2b667383c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20211120 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20231213-arm64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20211120-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14749,15 +17523,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039bb4c3a7946ce19", + "ami_id": "ami-0a86df5548ade48d3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20190709 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200205 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20190709-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200205-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14765,15 +17540,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bd66c2a458ccaeb5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240409 x86_64 ECS HVM GP2", + "ami_id": "ami-00562875261d37295", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230627 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240409-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230627-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14781,15 +17557,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6205f754041ac77", + "ami_id": "ami-0749e9fa20827526b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20241023 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20250211 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241023-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14797,15 +17574,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb0f4d6c5e4fd142", + "ami_id": "ami-04eba9c5a8653c37b", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20241120 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14813,15 +17591,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08cb2238a6247f78d", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2022.0.20220630 x86_64 ECS HVM GP2", + "ami_id": "ami-096decb951cd8670b", + "architecture": "arm64", + "description": "Amazon Linux AMI 2022.0.20230127 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2022-ami-ecs-hvm-2022.0.20220630-x86_64-ebs", + "name": "al2022-ami-ecs-hvm-2022.0.20230127-kernel-5.15-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14829,15 +17608,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eba4085dba527f87", + "ami_id": "ami-0a78320cd45fbb388", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240903 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20240903-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14845,15 +17625,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03909d40bdc07e74b", + "ami_id": "ami-0f2b6f0a8af52fa80", "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20230406 Kernel 5.10 arm64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20241213 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230406-arm64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14861,15 +17642,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-020e17478ee31e7a8", + "ami_id": "ami-01cc5467f38b71ed2", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20210219 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20210219-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20240613-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14877,15 +17659,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058fc0f2acbacaa03", + "ami_id": "ami-03a0a389761973845", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230530 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20220627-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230530-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14893,15 +17676,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02e7bf31756bd3eff", + "ami_id": "ami-0a967973b78992843", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240920 Kernel 5.10 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230406 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240920-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230406-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14909,15 +17693,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039ec3a707bdad48b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241003 arm64 ECS HVM EBS", + "ami_id": "ami-06b3adcd9a6d3b154", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241003-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14925,15 +17710,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0478b0a885c9da085", + "ami_id": "ami-037bc2c139c7ae160", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240815 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230705 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240815-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20230705-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -14941,15 +17727,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05222d845b5812e7f", + "ami_id": "ami-01f7a3de05055e7e6", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20200319 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20200319-amazon-ecs-optimized", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14957,15 +17744,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00889ad21b50fe113", + "ami_id": "ami-06f00517fa5307c85", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240712 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2023.0.20231213 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240712-kernel-6.1-x86_64", + "name": "al2023-ami-ecs-hvm-2023.0.20231213-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14973,15 +17761,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01609ad8ad8beae78", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20220921 arm64 ECS HVM GP2", + "ami_id": "ami-0567ab192a7a7b1cc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20231204 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20220921-arm64-ebs", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20231204-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -14989,15 +17778,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04eba9c5a8653c37b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20241017 arm64 ECS HVM EBS", + "ami_id": "ami-0b141ff8507104345", + "architecture": "x86_64", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200108 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20241017-kernel-6.1-arm64", + "name": "amzn-ami-2018.03.20200108-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15005,15 +17795,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b92417400fe0b457", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240131 arm64 ECS HVM EBS", + "ami_id": "ami-029694eaf3b9de830", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20240604 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240131-kernel-6.1-arm64", + "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240604-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15021,15 +17812,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07108d3d5e75c0c16", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240709 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-00e33c8a9dce7c531", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20230606 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240709-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20230606-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15037,15 +17829,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06189bd01d5ced410", + "ami_id": "ami-0fd6d76a802f32a64", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220318 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240515 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220318-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240515-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15053,15 +17846,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-040bd2e2325535b3d", + "ami_id": "ami-042d7dcebc185f4f3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200928 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20240604 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200928-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240604-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15069,15 +17863,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5058003c511da15", + "ami_id": "ami-0c486c092f8ae3050", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.q x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20200430 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.q-amazon-ecs-optimized", + "name": "amzn-ami-2018.03.20200430-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15085,15 +17880,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c13ba026c809932c", - "architecture": "arm64", - "description": "Amazon Linux AMI 2.0.20240909 Kernel 5.10 arm64 ECS HVM GP2", + "ami_id": "ami-0cdc6d2a2631c9cac", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20250117 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20240909-arm64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15101,15 +17897,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d004189c5e109c8f", + "ami_id": "ami-04b521d534c627839", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230509 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20210916 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230509-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20210916-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15117,15 +17914,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fe88e52a9eed644b", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240201 arm64 ECS HVM EBS", + "ami_id": "ami-0f92c3a342ac795e6", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2023.0.20241031 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240201-kernel-6.1-arm64", + "name": "al2023-ami-ecs-hvm-2023.0.20241031-kernel-6.1-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15133,15 +17931,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08a7336c7c132da3e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240613 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-0913e9e99f3958d22", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20240611 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240613-x86_64-ebs", + "name": "amzn2-ami-ecs-hvm-2.0.20240611-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15149,15 +17948,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0834ed0e4c5045423", + "ami_id": "ami-03d081fc669d162b7", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20200813 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI amzn-ami-2018.03.20230627 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-hvm-2.0.20200813-x86_64-ebs", + "name": "amzn-ami-2018.03.20230627-amazon-ecs-optimized", "owner_id": "591542846629", "platform": null, "public": true, @@ -15165,15 +17965,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d58bbf76cd68f3df", - "architecture": "arm64", - "description": "Amazon Linux AMI 2023.0.20240917 arm64 ECS HVM EBS", + "ami_id": "ami-02b0cd010b003709f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2.0.20241017 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-hvm-2023.0.20240917-kernel-6.1-arm64", + "name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241017-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15181,15 +17982,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03924f91032cd4ef2", + "ami_id": "ami-0b228e766354eee7d", "architecture": "x86_64", - "description": "Amazon Linux AMI amzn-ami-2018.03.20220627 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20241213 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.20220627-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15197,15 +17999,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f0ba4af21d1e1766", + "ami_id": "ami-04fe9766210d064b3", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.p x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20230428 Kernel 5.10 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-2018.03.p-amazon-ecs-optimized", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230428-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15213,15 +18016,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09bff7765887e9b84", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230906 x86_64 ECS HVM GP2", + "ami_id": "ami-0cd2d0de09fb247ba", + "architecture": "arm64", + "description": "Amazon Linux AMI 2.0.20230109 Kernel 5.10 arm64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-inf-hvm-2.0.20230906-x86_64-ebs", + "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15229,15 +18033,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-008773fba73ea6582", + "ami_id": "ami-0cfd12e4ce6ed1a73", "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20240305 x86_64 ECS HVM GP2", + "description": "Amazon Linux AMI 2.0.20200723 x86_64 ECS HVM GP2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-gpu-hvm-2.0.20240305-x86_64-ebs", + "name": "amzn2-ami-ecs-gpu-hvm-2.0.20200723-x86_64-ebs", "owner_id": "591542846629", "platform": null, "public": true, @@ -15245,15 +18050,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0813498214e952bf6", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2.0.20230809 Kernel 5.10 x86_64 ECS HVM GP2", + "ami_id": "ami-03f0cb44fc87c2cf1", + "architecture": "arm64", + "description": "Amazon Linux AMI 2023.0.20240305 arm64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230809-x86_64-ebs", + "name": "al2023-ami-ecs-hvm-2023.0.20240305-kernel-6.1-arm64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15261,15 +18067,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f7a3de05055e7e6", + "ami_id": "ami-0c34ea15ea6b562ce", "architecture": "x86_64", - "description": "Amazon Linux AMI 2023.0.20240625 x86_64 ECS HVM EBS", + "description": "Amazon Linux AMI 2022.0.20221102 x86_64 ECS HVM EBS", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-ecs-neuron-hvm-2023.0.20240625-kernel-6.1-x86_64", + "name": "al2022-ami-ecs-neuron-hvm-2022.0.20221102-kernel-5.15-x86_64", "owner_id": "591542846629", "platform": null, "public": true, @@ -15277,6 +18084,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ssm/resources/ecs/optimized_amis/af-south-1.json b/moto/ssm/resources/ecs/optimized_amis/af-south-1.json index 6a76da356330..87468fe53f99 100644 --- a/moto/ssm/resources/ecs/optimized_amis/af-south-1.json +++ b/moto/ssm/resources/ecs/optimized_amis/af-south-1.json @@ -508,6 +508,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231106.0-x86_64-ebs" } }, + "ami-056e1289273873a4d": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-056e1289273873a4d", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-056e1289273873a4d" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-05b16141a2340905e": { "Value": { "ecs_agent_version": "1.51.0", @@ -3592,13 +3628,49 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-056e1289273873a4d", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-056e1289273873a4d" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "recommended": { "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-043c838d620496a1f", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-056e1289273873a4d", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -3610,13 +3682,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-043c838d620496a1f" + "Value": "ami-056e1289273873a4d" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -5862,6 +5934,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0a4c7e790847d5f41": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a4c7e790847d5f41", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a4c7e790847d5f41" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0a50c4e5f02b9b8ee": { "Value": { "ecs_agent_version": "1.88.0", @@ -5934,6 +6042,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240124.0-x86_64-ebs" } }, + "ami-0a76f02d766b5d1d2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a76f02d766b5d1d2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a76f02d766b5d1d2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ab2581386c089832": { "Value": { "ecs_agent_version": "1.88.0", @@ -6798,6 +6942,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220218.1-x86_64-ebs" } }, + "ami-0de25677910e52d6c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0de25677910e52d6c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0de25677910e52d6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e14e8792c6d27d39": { "Value": { "ecs_agent_version": "1.82.2", @@ -7302,6 +7482,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230515.0-x86_64-ebs" } }, + "ami-0fb4ebdaa701342aa": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb4ebdaa701342aa", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb4ebdaa701342aa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ffe17afccc1760c0": { "Value": { "ecs_agent_version": "1.89.2", @@ -12362,6 +12578,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb4ebdaa701342aa", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb4ebdaa701342aa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a76f02d766b5d1d2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a76f02d766b5d1d2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0de25677910e52d6c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0de25677910e52d6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a4c7e790847d5f41", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a4c7e790847d5f41" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-0026276d84d76af2a": { "Value": { @@ -12867,6 +13227,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230320.0-arm64-ebs" } }, + "ami-035458f34823e63f4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-035458f34823e63f4", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-035458f34823e63f4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-037aa18eab7e316dd": { "Value": { "ecs_agent_version": "1.86.0", @@ -13443,6 +13839,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230320.0-arm64-ebs" } }, + "ami-06d8de44813fc029f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06d8de44813fc029f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06d8de44813fc029f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0711a0380403490fe": { "Value": { "ecs_agent_version": "1.86.2", @@ -13479,6 +13911,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-arm64-ebs" } }, + "ami-07221d8a7caa72b34": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07221d8a7caa72b34", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07221d8a7caa72b34" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-072cb95f0532671b4": { "Value": { "ecs_agent_version": "1.81.0", @@ -14487,6 +14955,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "ami-0c340e916a708f47c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c340e916a708f47c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c340e916a708f47c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0c47d5b2f673d5612": { "Value": { "ecs_agent_version": "1.82.0", @@ -17907,31 +18411,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-035458f34823e63f4", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-035458f34823e63f4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07221d8a7caa72b34", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07221d8a7caa72b34" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c340e916a708f47c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c340e916a708f47c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06d8de44813fc029f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06d8de44813fc029f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0bf6d6df7dea28cd1", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-06d8de44813fc029f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0bf6d6df7dea28cd1" + "Value": "ami-06d8de44813fc029f" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -17940,7 +18588,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -18053,6 +18701,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230906.0-x86_64-ebs" } }, + "ami-00d640a53674e00a8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00d640a53674e00a8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00d640a53674e00a8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-012cf121c3246ee9d": { "Value": { "ecs_agent_version": "1.89.2", @@ -18557,6 +19241,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240318.0-x86_64-ebs" } }, + "ami-02e839393cf2c097f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e839393cf2c097f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e839393cf2c097f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0357d25275fc49315": { "Value": { "ecs_agent_version": "1.89.3", @@ -20069,6 +20789,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0b06d8a55363a3b6d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b06d8a55363a3b6d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b06d8a55363a3b6d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b66ca41ee1e6118e": { "Value": { "ecs_agent_version": "1.83.0", @@ -20969,6 +21725,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0e8f86ca6722137e7": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e8f86ca6722137e7", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e8f86ca6722137e7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0ec601723c4e4a6a7": { "Value": { "ecs_agent_version": "1.80.0", @@ -26677,31 +27469,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b06d8a55363a3b6d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b06d8a55363a3b6d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00d640a53674e00a8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00d640a53674e00a8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e839393cf2c097f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e839393cf2c097f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e8f86ca6722137e7", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e8f86ca6722137e7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f3f692b137230d7f", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0e8f86ca6722137e7", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f3f692b137230d7f" + "Value": "ami-0e8f86ca6722137e7" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -26710,7 +27646,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -26823,6 +27759,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-01c9b0aba308b0daa": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c9b0aba308b0daa", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c9b0aba308b0daa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-01fa3d8eed4aef6cd": { "Value": { "ecs_agent_version": "1.82.2", @@ -27219,6 +28191,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-06971ee22cc53a16b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06971ee22cc53a16b", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06971ee22cc53a16b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-06ad3ed6cc7b92ddb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06ad3ed6cc7b92ddb", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06ad3ed6cc7b92ddb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06b37a2af8cf7a3d2": { "Value": { "ecs_agent_version": "1.87.0", @@ -27471,6 +28515,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-x86_64-ebs" } }, + "ami-094b06db47abf28cc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-094b06db47abf28cc", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-094b06db47abf28cc" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09624ab0803217e3d": { "Value": { "ecs_agent_version": "1.81.1", @@ -30027,31 +31107,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06ad3ed6cc7b92ddb", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06ad3ed6cc7b92ddb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-094b06db47abf28cc", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-094b06db47abf28cc" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06971ee22cc53a16b", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06971ee22cc53a16b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c9b0aba308b0daa", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c9b0aba308b0daa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b6f28d32ec95a49e", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-01c9b0aba308b0daa", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b6f28d32ec95a49e" + "Value": "ami-01c9b0aba308b0daa" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -30060,7 +31284,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -30461,6 +31685,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230307.0-x86_64-ebs" } }, + "ami-02e71b28c7453e0a0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e71b28c7453e0a0", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e71b28c7453e0a0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-03038f8d9f9f52dca": { "Value": { "ecs_agent_version": "1.82.2", @@ -31505,6 +32765,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-092e056cb7abb4b11": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-092e056cb7abb4b11", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-092e056cb7abb4b11" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-095f94a3b9264334d": { "Value": { "ecs_agent_version": "1.77.0", @@ -31865,6 +33161,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-x86_64-ebs" } }, + "ami-0b79f73a886a534b6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b79f73a886a534b6", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b79f73a886a534b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0ba83f98397ce7dce": { "Value": { "ecs_agent_version": "1.82.0", @@ -32549,6 +33881,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230612.0-x86_64-ebs" } }, + "ami-0e682c0db207fad21": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e682c0db207fad21", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e682c0db207fad21" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ecdb6cf8cefb1395": { "Value": { "ecs_agent_version": "1.85.2", @@ -35609,6 +36977,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e682c0db207fad21", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e682c0db207fad21" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-092e056cb7abb4b11", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-092e056cb7abb4b11" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e71b28c7453e0a0", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e71b28c7453e0a0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b79f73a886a534b6", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b79f73a886a534b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-00012e6b74f4e436b": { "Value": { @@ -36978,6 +38490,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-arm64-ebs" } }, + "ami-07180a5732dbe2e6f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07180a5732dbe2e6f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07180a5732dbe2e6f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0740e4216370dc0ce": { "Value": { "ecs_agent_version": "1.82.0", @@ -37194,6 +38742,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230612.0-arm64-ebs" } }, + "ami-085b6134ed3346d22": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-085b6134ed3346d22", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-085b6134ed3346d22" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-08c1c269d8a6d7822": { "Value": { "ecs_agent_version": "1.68.1", @@ -37590,6 +39174,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-arm64-ebs" } }, + "ami-0a8070c97b170c17d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a8070c97b170c17d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a8070c97b170c17d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0b82714e2f3ab3f21": { "Value": { "ecs_agent_version": "1.87.0", @@ -37734,6 +39354,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-arm64-ebs" } }, + "ami-0cc926d2960139062": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc926d2960139062", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc926d2960139062" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0ccb9cafb7a559070": { "Value": { "ecs_agent_version": "1.85.1", @@ -41082,31 +42738,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07180a5732dbe2e6f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07180a5732dbe2e6f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a8070c97b170c17d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a8070c97b170c17d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-085b6134ed3346d22", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-085b6134ed3346d22" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc926d2960139062", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc926d2960139062" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ece152aaefc82ab0", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0cc926d2960139062", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ece152aaefc82ab0" + "Value": "ami-0cc926d2960139062" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -41115,7 +42915,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -41408,6 +43208,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-01f8c333814e9b9f1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f8c333814e9b9f1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f8c333814e9b9f1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-01fb0d1e8cf465bcd": { "Value": { "ecs_agent_version": "1.86.3", @@ -41588,6 +43424,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-03468c21378562de6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03468c21378562de6", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03468c21378562de6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0352a291bfb199370": { "Value": { "ecs_agent_version": "1.86.3", @@ -42524,6 +44396,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0b737ffb686a36b9e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b737ffb686a36b9e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b737ffb686a36b9e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c7338877eaa34273": { "Value": { "ecs_agent_version": "1.82.3", @@ -42596,6 +44504,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-x86_64-ebs" } }, + "ami-0d871a653109a8a8e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d871a653109a8a8e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d871a653109a8a8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0dc5df49ee1ef0f6d": { "Value": { "ecs_agent_version": "1.85.3", @@ -44216,31 +46160,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b737ffb686a36b9e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b737ffb686a36b9e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d871a653109a8a8e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d871a653109a8a8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f8c333814e9b9f1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f8c333814e9b9f1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03468c21378562de6", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03468c21378562de6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-006e5c0d92a90a012", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-03468c21378562de6", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-006e5c0d92a90a012" + "Value": "ami-03468c21378562de6" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -44249,7 +46337,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -45226,6 +47314,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-098a69123e70cede2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098a69123e70cede2", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098a69123e70cede2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-09c7ac1c64ad19b8a": { "Value": { "ecs_agent_version": "1.86.2", @@ -45334,6 +47458,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-x86_64-ebs" } }, + "ami-0a83d3e64124f4251": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a83d3e64124f4251", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a83d3e64124f4251" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0a98639157501357f": { "Value": { "ecs_agent_version": "1.87.0", @@ -45586,6 +47746,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" } }, + "ami-0e4a5e3415982a6c9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e4a5e3415982a6c9", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e4a5e3415982a6c9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e5e6a60d7328ed5b": { "Value": { "ecs_agent_version": "1.84.0", @@ -45730,6 +47926,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0efc32e4177d1e813": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0efc32e4177d1e813", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0efc32e4177d1e813" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f8f39634b928767e": { "Value": { "ecs_agent_version": "1.89.2", @@ -47350,31 +49582,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a83d3e64124f4251", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a83d3e64124f4251" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e4a5e3415982a6c9", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e4a5e3415982a6c9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0efc32e4177d1e813", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0efc32e4177d1e813" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098a69123e70cede2", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098a69123e70cede2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0456ded237017a6cd", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-098a69123e70cede2", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0456ded237017a6cd" + "Value": "ami-098a69123e70cede2" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -47383,35 +49759,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-062a59a4fc108c371", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b79f73a886a534b6", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-062a59a4fc108c371" + "Value": "ami-0b79f73a886a534b6" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -47420,35 +49796,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0afcd55f003d322b7", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0a4c7e790847d5f41", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0afcd55f003d322b7" + "Value": "ami-0a4c7e790847d5f41" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -47457,7 +49833,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -51176,6 +53552,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03405ad6dbdb5ad25", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03405ad6dbdb5ad25" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-038da6bfd4f22626e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-038da6bfd4f22626e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f686fd5c681de0bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f686fd5c681de0bb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0027f10d35ec6a33a": { "Value": { "ecs_agent_version": "1.82.3", @@ -51500,6 +53984,78 @@ "Value": "al2023-ami-minimal-2023.3.20240219.0-kernel-6.1-x86_64" } }, + "ami-03405ad6dbdb5ad25": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03405ad6dbdb5ad25", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03405ad6dbdb5ad25" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "ami-038da6bfd4f22626e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-038da6bfd4f22626e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-038da6bfd4f22626e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-043bc29dad370b393": { "Value": { "ecs_agent_version": "1.86.0", @@ -53516,6 +56072,42 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-0f686fd5c681de0bb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f686fd5c681de0bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f686fd5c681de0bb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0fac6d885958b68ae": { "Value": { "ecs_agent_version": "1.89.3", @@ -55929,6 +58521,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c29ca1b73ad0acf9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c29ca1b73ad0acf9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-069ffe9e97205eeb8", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-069ffe9e97205eeb8" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0308638d473cac4d0", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0308638d473cac4d0" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-004c82041e5d88b75": { "Value": { "ecs_agent_version": "1.87.0", @@ -56397,6 +59097,42 @@ "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" } }, + "ami-0308638d473cac4d0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0308638d473cac4d0", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0308638d473cac4d0" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0341d0efea1d25f3a": { "Value": { "ecs_agent_version": "1.82.0", @@ -56973,6 +59709,42 @@ "Value": "al2023-ami-minimal-2023.1.20230912.0-kernel-6.1-arm64" } }, + "ami-069ffe9e97205eeb8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-069ffe9e97205eeb8", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-069ffe9e97205eeb8" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-06a5bea0833e7b76b": { "Value": { "ecs_agent_version": "1.71.1", @@ -57729,6 +60501,42 @@ "Value": "al2023-ami-minimal-2023.2.20230920.1-kernel-6.1-arm64" } }, + "ami-0c29ca1b73ad0acf9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c29ca1b73ad0acf9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c29ca1b73ad0acf9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-0c635ae065e4fcce0": { "Value": { "ecs_agent_version": "1.89.3", @@ -58307,29 +61115,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ef98c1a9c41a4a9d", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-0308638d473cac4d0", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ef98c1a9c41a4a9d" + "Value": "ami-0308638d473cac4d0" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -58338,7 +61146,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c581dd1bb33f1df6", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c581dd1bb33f1df6" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-0c581dd1bb33f1df6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c581dd1bb33f1df6", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c581dd1bb33f1df6" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c581dd1bb33f1df6", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c581dd1bb33f1df6" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -59819,6 +62737,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f18e58e257f0f75", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f18e58e257f0f75" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bfb830bd9e60efdd", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bfb830bd9e60efdd" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082644041b26b165d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082644041b26b165d" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0048e3d89ffc88f05": { "Value": { "ecs_agent_version": "1.87.0", @@ -59999,6 +63025,42 @@ "Value": "al2023-ami-minimal-2023.4.20240401.1-kernel-6.1-x86_64" } }, + "ami-01f18e58e257f0f75": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f18e58e257f0f75", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f18e58e257f0f75" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-021c3b5f4d2d84a70": { "Value": { "ecs_agent_version": "1.82.0", @@ -60719,6 +63781,42 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-x86_64" } }, + "ami-082644041b26b165d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082644041b26b165d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082644041b26b165d" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-08956837ec84d5f8a": { "Value": { "ecs_agent_version": "1.85.1", @@ -61079,6 +64177,42 @@ "Value": "al2023-ami-minimal-2023.5.20240903.0-kernel-6.1-x86_64" } }, + "ami-0bfb830bd9e60efdd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bfb830bd9e60efdd", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bfb830bd9e60efdd" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0ca9c0a540ad33dc0": { "Value": { "ecs_agent_version": "1.89.2", @@ -61297,29 +64431,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b00bd8392c765b2b", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-082644041b26b165d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b00bd8392c765b2b" + "Value": "ami-082644041b26b165d" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -61328,35 +64462,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0fac6d885958b68ae", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0f686fd5c681de0bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0fac6d885958b68ae" + "Value": "ami-0f686fd5c681de0bb" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -61365,7 +64499,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } } diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json b/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json index bd37e339c69c..50337c7e5c57 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-east-1.json @@ -184,6 +184,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20230807.0-x86_64-ebs" } }, + "ami-01cda42836b3aa423": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-01cda42836b3aa423", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-01cda42836b3aa423" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-01f8e3b146a5a43de": { "Value": { "ecs_agent_version": "1.51.0", @@ -3872,6 +3908,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-01cda42836b3aa423", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-01cda42836b3aa423" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.n-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.25.3", @@ -4156,9 +4228,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-0072e4cf363f65ab6", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-01cda42836b3aa423", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4170,13 +4242,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-0072e4cf363f65ab6" + "Value": "ami-01cda42836b3aa423" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -5342,6 +5414,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-0491aa54d2186d575": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0491aa54d2186d575", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0491aa54d2186d575" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-04988098b7c74c633": { "Value": { "ecs_agent_version": "1.59.0", @@ -5450,6 +5558,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-05108c90eb62a1771": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05108c90eb62a1771", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05108c90eb62a1771" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-05383ea897f4fc1db": { "Value": { "ecs_agent_version": "1.62.2", @@ -6674,6 +6818,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211223.0-x86_64-ebs" } }, + "ami-0a8c5f3a25ca96136": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a8c5f3a25ca96136", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a8c5f3a25ca96136" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ab9b99eef01865f4": { "Value": { "ecs_agent_version": "1.69.0", @@ -7070,6 +7250,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230906.0-x86_64-ebs" } }, + "ami-0c423a22a6a50511d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c423a22a6a50511d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c423a22a6a50511d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0c845021a6d6b284a": { "Value": { "ecs_agent_version": "1.82.4", @@ -13426,6 +13642,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a8c5f3a25ca96136", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a8c5f3a25ca96136" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0491aa54d2186d575", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0491aa54d2186d575" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05108c90eb62a1771", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05108c90eb62a1771" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c423a22a6a50511d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c423a22a6a50511d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-002da2de2109e44de": { "Value": { @@ -14111,6 +14471,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-arm64-ebs" } }, + "ami-025615be903a12e6b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-025615be903a12e6b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-025615be903a12e6b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-02809fe6fcc23ea4b": { "Value": { "ecs_agent_version": "1.87.0", @@ -14327,6 +14723,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-arm64-ebs" } }, + "ami-03f15852c50f91131": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03f15852c50f91131", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03f15852c50f91131" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-04024c9cf9a23345e": { "Value": { "ecs_agent_version": "1.59.0", @@ -15443,6 +15875,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-arm64-ebs" } }, + "ami-097d4041da10f316c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-097d4041da10f316c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-097d4041da10f316c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-09820e61f4cae6c52": { "Value": { "ecs_agent_version": "1.61.1", @@ -15695,6 +16163,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231101.0-arm64-ebs" } }, + "ami-0aac5cd663896aeee": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0aac5cd663896aeee", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0aac5cd663896aeee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0ab70f8bd0c501ce1": { "Value": { "ecs_agent_version": "1.83.0", @@ -21431,31 +21935,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0aac5cd663896aeee", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0aac5cd663896aeee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-025615be903a12e6b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-025615be903a12e6b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-097d4041da10f316c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-097d4041da10f316c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03f15852c50f91131", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03f15852c50f91131" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0fdfad2de56506738", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-03f15852c50f91131", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0fdfad2de56506738" + "Value": "ami-03f15852c50f91131" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -21464,7 +22112,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -22009,6 +22657,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-x86_64-ebs" } }, + "ami-0329368c3bf715b96": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0329368c3bf715b96", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0329368c3bf715b96" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-03494bb6f22f3ad0f": { "Value": { "ecs_agent_version": "1.86.3", @@ -23953,6 +24637,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0ad06756f8b6eaa68": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ad06756f8b6eaa68", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ad06756f8b6eaa68" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0af811c48f7172abc": { "Value": { "ecs_agent_version": "1.81.0", @@ -25177,6 +25897,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-0fb5726455c8d3509": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb5726455c8d3509", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb5726455c8d3509" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0ff8e6ffb20521380": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff8e6ffb20521380", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff8e6ffb20521380" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "amzn2-ami-ecs-gpu-hvm-2.0.20190402-x86_64-ebs": { "Value": { "ecs_agent_version": "1.27.0", @@ -30705,31 +31497,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0329368c3bf715b96", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0329368c3bf715b96" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ad06756f8b6eaa68", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ad06756f8b6eaa68" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb5726455c8d3509", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb5726455c8d3509" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff8e6ffb20521380", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff8e6ffb20521380" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-02b39a9e38e14c1f4", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0ff8e6ffb20521380", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-02b39a9e38e14c1f4" + "Value": "ami-0ff8e6ffb20521380" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -30738,7 +31674,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -30995,6 +31931,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-00e9c1677b7b1fab1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00e9c1677b7b1fab1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00e9c1677b7b1fab1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-014d7efd6547d9a60": { "Value": { "ecs_agent_version": "1.67.1", @@ -31859,6 +32831,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-05e6fe8029d7e37ae": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05e6fe8029d7e37ae", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05e6fe8029d7e37ae" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-05ea802245fed00b5": { "Value": { "ecs_agent_version": "1.65.0", @@ -33335,6 +34343,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220805.0-x86_64-ebs" } }, + "ami-0a9d8c3d666c420b6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a9d8c3d666c420b6", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a9d8c3d666c420b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ac136d8c4372fa65": { "Value": { "ecs_agent_version": "1.58.0", @@ -33659,6 +34703,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220426.0-x86_64-ebs" } }, + "ami-0bf82190073a786f5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bf82190073a786f5", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bf82190073a786f5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0c04bba9865209c8e": { "Value": { "ecs_agent_version": "1.89.2", @@ -38507,31 +39587,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00e9c1677b7b1fab1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00e9c1677b7b1fab1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05e6fe8029d7e37ae", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05e6fe8029d7e37ae" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a9d8c3d666c420b6", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a9d8c3d666c420b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bf82190073a786f5", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bf82190073a786f5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-09a950877ed428072", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0bf82190073a786f5", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-09a950877ed428072" + "Value": "ami-0bf82190073a786f5" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -38540,7 +39764,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -39985,6 +41209,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230530.0-x86_64-ebs" } }, + "ami-084577859c26b5cad": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-084577859c26b5cad", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-084577859c26b5cad" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-085ef01704303cfcc": { "Value": { "ecs_agent_version": "1.89.1", @@ -40345,6 +41605,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-0a1259537874f1f55": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a1259537874f1f55", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a1259537874f1f55" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0a1616ec2b1d78d5e": { "Value": { "ecs_agent_version": "1.82.4", @@ -40453,6 +41749,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230404.1-x86_64-ebs" } }, + "ami-0a82ab2518a9d6466": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a82ab2518a9d6466", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a82ab2518a9d6466" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0aedfb3373162f8d4": { "Value": { "ecs_agent_version": "1.83.0", @@ -41137,6 +42469,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230307.0-x86_64-ebs" } }, + "ami-0ec7793082081e3ef": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec7793082081e3ef", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec7793082081e3ef" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0f396e61e1f4cfb25": { "Value": { "ecs_agent_version": "1.82.0", @@ -44089,6 +45457,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-084577859c26b5cad", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-084577859c26b5cad" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a1259537874f1f55", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a1259537874f1f55" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a82ab2518a9d6466", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a82ab2518a9d6466" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec7793082081e3ef", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec7793082081e3ef" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-0003c72ecaa96aa7c": { "Value": { @@ -44270,6 +45782,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-017b607a724c70d41": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-017b607a724c70d41", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-017b607a724c70d41" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-019faff7c0f940098": { "Value": { "ecs_agent_version": "1.82.4", @@ -44810,6 +46358,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-arm64-ebs" } }, + "ami-04c39d53819d0b392": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04c39d53819d0b392", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04c39d53819d0b392" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-04cccbade3cc5e684": { "Value": { "ecs_agent_version": "1.79.1", @@ -45350,6 +46934,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230307.0-arm64-ebs" } }, + "ami-08f641e17abf90bdd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08f641e17abf90bdd", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08f641e17abf90bdd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-08fb36308230a9bce": { "Value": { "ecs_agent_version": "1.89.3", @@ -46106,6 +47726,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-arm64-ebs" } }, + "ami-0ba100e9131ba5dc5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ba100e9131ba5dc5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ba100e9131ba5dc5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0ba19f1616d60c3c7": { "Value": { "ecs_agent_version": "1.88.0", @@ -49634,31 +51290,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04c39d53819d0b392", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04c39d53819d0b392" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ba100e9131ba5dc5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ba100e9131ba5dc5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08f641e17abf90bdd", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08f641e17abf90bdd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-017b607a724c70d41", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-017b607a724c70d41" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-08fb36308230a9bce", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-017b607a724c70d41", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-08fb36308230a9bce" + "Value": "ami-017b607a724c70d41" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -49667,7 +51467,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -49888,6 +51688,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-016035e8f1e7f6475": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-016035e8f1e7f6475", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-016035e8f1e7f6475" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-019d711afefaafa97": { "Value": { "ecs_agent_version": "1.82.0", @@ -50068,6 +51904,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-031c3d8d9ec8da6e8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-031c3d8d9ec8da6e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-031c3d8d9ec8da6e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-03cf5d326fa9f79aa": { "Value": { "ecs_agent_version": "1.88.0", @@ -50320,6 +52192,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-05a50bf30a602b3e8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05a50bf30a602b3e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05a50bf30a602b3e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-05d393f57e39c5e25": { "Value": { "ecs_agent_version": "1.83.0", @@ -50428,6 +52336,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-06cee516d88304860": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06cee516d88304860", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06cee516d88304860" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-075648075a899ac63": { "Value": { "ecs_agent_version": "1.88.0", @@ -52768,31 +54712,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-031c3d8d9ec8da6e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-031c3d8d9ec8da6e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-016035e8f1e7f6475", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-016035e8f1e7f6475" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06cee516d88304860", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06cee516d88304860" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05a50bf30a602b3e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05a50bf30a602b3e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0db55c2cf6c6f3770", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-05a50bf30a602b3e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0db55c2cf6c6f3770" + "Value": "ami-05a50bf30a602b3e8" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -52801,7 +54889,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -53058,6 +55146,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0358687604e160891": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0358687604e160891", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0358687604e160891" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-03e319b6c5ddf8ad9": { "Value": { "ecs_agent_version": "1.86.0", @@ -53850,6 +55974,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0ab5b96612446fcfe": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ab5b96612446fcfe", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ab5b96612446fcfe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0afbcae2ce9de2797": { "Value": { "ecs_agent_version": "1.85.1", @@ -53922,6 +56082,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0b962740176e2f247": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b962740176e2f247", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b962740176e2f247" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b9f34c8b03c52df3": { "Value": { "ecs_agent_version": "1.87.1", @@ -54210,6 +56406,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" } }, + "ami-0e99e4ac1f6f546de": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e99e4ac1f6f546de", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e99e4ac1f6f546de" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f527454bb13225fc": { "Value": { "ecs_agent_version": "1.89.3", @@ -55902,31 +58134,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b962740176e2f247", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b962740176e2f247" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ab5b96612446fcfe", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ab5b96612446fcfe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e99e4ac1f6f546de", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e99e4ac1f6f546de" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0358687604e160891", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0358687604e160891" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f527454bb13225fc", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0358687604e160891", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f527454bb13225fc" + "Value": "ami-0358687604e160891" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -55935,35 +58311,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f77766733c83fb8f", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0ec7793082081e3ef", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f77766733c83fb8f" + "Value": "ami-0ec7793082081e3ef" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -55972,35 +58348,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-00be37238356aa075", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0c423a22a6a50511d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-00be37238356aa075" + "Value": "ami-0c423a22a6a50511d" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -56009,7 +58385,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -60232,6 +62608,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06d7820eb946070ac", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06d7820eb946070ac" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6b286a1785b50be", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6b286a1785b50be" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-093ebe8df646cb25e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-093ebe8df646cb25e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0003a62076aa0c9ed": { "Value": { "ecs_agent_version": "1.73.0", @@ -61168,6 +63652,42 @@ "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" } }, + "ami-06d7820eb946070ac": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06d7820eb946070ac", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06d7820eb946070ac" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0717a0f0d864a1e3a": { "Value": { "ecs_agent_version": "1.85.1", @@ -61420,6 +63940,42 @@ "Value": "al2023-ami-minimal-2023.1.20230825.0-kernel-6.1-x86_64" } }, + "ami-093ebe8df646cb25e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-093ebe8df646cb25e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-093ebe8df646cb25e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-096044727939d5ce2": { "Value": { "ecs_agent_version": "1.82.4", @@ -62104,6 +64660,42 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-0c6b286a1785b50be": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6b286a1785b50be", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6b286a1785b50be" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0c6ca8d7defe5ebd7": { "Value": { "ecs_agent_version": "1.79.2", @@ -64985,6 +67577,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0656f5f467148fdf4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0656f5f467148fdf4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08918544646537f64", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08918544646537f64" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07474a17d0d1905dc", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07474a17d0d1905dc" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0015127c7a6c9e398": { "Value": { "ecs_agent_version": "1.89.2", @@ -66101,6 +68801,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-arm64" } }, + "ami-0656f5f467148fdf4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0656f5f467148fdf4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0656f5f467148fdf4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-06af94c11c0d3e455": { "Value": { "ecs_agent_version": "1.82.3", @@ -66173,6 +68909,42 @@ "Value": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-arm64" } }, + "ami-07474a17d0d1905dc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07474a17d0d1905dc", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07474a17d0d1905dc" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-075106a821ebb3f1c": { "Value": { "ecs_agent_version": "1.89.2", @@ -66353,6 +69125,42 @@ "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-arm64" } }, + "ami-08918544646537f64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08918544646537f64", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08918544646537f64" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-08d13f6de91bb2386": { "Value": { "ecs_agent_version": "1.86.0", @@ -67363,29 +70171,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b89a7b8b47f3522a", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-07474a17d0d1905dc", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b89a7b8b47f3522a" + "Value": "ami-07474a17d0d1905dc" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -67394,7 +70202,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02f84ff17c5da08cc", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02f84ff17c5da08cc" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-02f84ff17c5da08cc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02f84ff17c5da08cc", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02f84ff17c5da08cc" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02f84ff17c5da08cc", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02f84ff17c5da08cc" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -69775,6 +72693,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05702f3e9e66e4a83", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05702f3e9e66e4a83" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5fe83224b49b5ca", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5fe83224b49b5ca" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057fe54e8b3c6baa4", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057fe54e8b3c6baa4" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-002803fed899f0c35": { "Value": { "ecs_agent_version": "1.85.1", @@ -70819,6 +73845,78 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-05702f3e9e66e4a83": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05702f3e9e66e4a83", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05702f3e9e66e4a83" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "ami-057fe54e8b3c6baa4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057fe54e8b3c6baa4", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057fe54e8b3c6baa4" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-058c836210c2dd4f2": { "Value": { "ecs_agent_version": "1.87.0", @@ -71791,6 +74889,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-0d5fe83224b49b5ca": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5fe83224b49b5ca", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5fe83224b49b5ca" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0d73c06e2b3d14023": { "Value": { "ecs_agent_version": "1.82.3", @@ -72153,29 +75287,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-011405d85cc6028e6", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-057fe54e8b3c6baa4", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-011405d85cc6028e6" + "Value": "ami-057fe54e8b3c6baa4" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -72184,35 +75318,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0cf606008cb5a369d", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-093ebe8df646cb25e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0cf606008cb5a369d" + "Value": "ami-093ebe8df646cb25e" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -72221,7 +75355,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } } diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json index 6295aeee920b..4907aa0b9399 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-1.json @@ -1156,6 +1156,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20211222.0-x86_64-ebs" } }, + "ami-0dce80ca0967ce623": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0dce80ca0967ce623", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0dce80ca0967ce623" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-0e1c92cee08df5b3b": { "Value": { "ecs_agent_version": "1.51.0", @@ -3900,6 +3936,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0dce80ca0967ce623", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0dce80ca0967ce623" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.a-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.18.0", @@ -4576,9 +4648,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-0e1c92cee08df5b3b", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-0dce80ca0967ce623", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4590,13 +4662,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-0e1c92cee08df5b3b" + "Value": "ami-0dce80ca0967ce623" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -5402,6 +5474,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-034d80ad4d8330b48": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-034d80ad4d8330b48", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-034d80ad4d8330b48" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-036b72d308fc0682d": { "Value": { "ecs_agent_version": "1.85.2", @@ -5474,6 +5582,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-03c384ee0033046b4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03c384ee0033046b4", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03c384ee0033046b4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-03e153964328957a8": { "Value": { "ecs_agent_version": "1.61.0", @@ -7850,6 +7994,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "ami-0ed719a3283b1b8b6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ed719a3283b1b8b6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ed719a3283b1b8b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0eed46c7eaecb7b58": { "Value": { "ecs_agent_version": "1.79.1", @@ -8210,6 +8390,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0fb5ea8ed71349dcf": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb5ea8ed71349dcf", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb5ea8ed71349dcf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0fb820b9ae6b8a4dd": { "Value": { "ecs_agent_version": "1.84.0", @@ -14070,6 +14286,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03c384ee0033046b4", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03c384ee0033046b4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb5ea8ed71349dcf", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb5ea8ed71349dcf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ed719a3283b1b8b6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ed719a3283b1b8b6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-034d80ad4d8330b48", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-034d80ad4d8330b48" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-000f45a90a4044e1f": { "Value": { @@ -14323,6 +14683,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220805.0-arm64-ebs" } }, + "ami-018b541acbf116a85": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-018b541acbf116a85", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-018b541acbf116a85" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-01dca23eec4c8dc45": { "Value": { "ecs_agent_version": "1.88.0", @@ -14683,6 +15079,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240306.2-arm64-ebs" } }, + "ami-033b2ecc02f49d4d6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-033b2ecc02f49d4d6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-033b2ecc02f49d4d6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-03908683ce69a9791": { "Value": { "ecs_agent_version": "1.86.2", @@ -15763,6 +16195,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" } }, + "ami-070928a0ea2cca929": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-070928a0ea2cca929", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-070928a0ea2cca929" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-070a0dadf84210633": { "Value": { "ecs_agent_version": "1.74.1", @@ -16411,6 +16879,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230504.1-arm64-ebs" } }, + "ami-09f0383e8149148c2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09f0383e8149148c2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09f0383e8149148c2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-09f43ca191c371485": { "Value": { "ecs_agent_version": "1.66.2", @@ -23279,31 +23783,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09f0383e8149148c2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09f0383e8149148c2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-070928a0ea2cca929", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-070928a0ea2cca929" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-018b541acbf116a85", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-018b541acbf116a85" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-033b2ecc02f49d4d6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-033b2ecc02f49d4d6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0a09139a9d1dd49bf", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-033b2ecc02f49d4d6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0a09139a9d1dd49bf" + "Value": "ami-033b2ecc02f49d4d6" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -23312,7 +23960,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -25081,6 +25729,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211103.0-x86_64-ebs" } }, + "ami-071793c15d07b0b2b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-071793c15d07b0b2b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-071793c15d07b0b2b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-075a465239dedd54d": { "Value": { "ecs_agent_version": "1.82.0", @@ -25369,6 +26053,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-x86_64-ebs" } }, + "ami-08ff6e20289df821d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08ff6e20289df821d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08ff6e20289df821d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0924d58c4e052575d": { "Value": { "ecs_agent_version": "1.77.0", @@ -26017,6 +26737,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-0b3e9f9644b0b684b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b3e9f9644b0b684b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b3e9f9644b0b684b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b4793e87f9ca8769": { "Value": { "ecs_agent_version": "1.83.0", @@ -26953,6 +27709,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220316.0-x86_64-ebs" } }, + "ami-0f9058649c12307d0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9058649c12307d0", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9058649c12307d0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0fd2a3a98f50b4740": { "Value": { "ecs_agent_version": "1.88.0", @@ -32721,31 +33513,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9058649c12307d0", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9058649c12307d0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b3e9f9644b0b684b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b3e9f9644b0b684b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-071793c15d07b0b2b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-071793c15d07b0b2b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08ff6e20289df821d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08ff6e20289df821d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e4cc739f9006e747", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-08ff6e20289df821d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e4cc739f9006e747" + "Value": "ami-08ff6e20289df821d" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -32754,7 +33690,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -34019,6 +34955,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-06641e665cfa00e62": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06641e665cfa00e62", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06641e665cfa00e62" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06790f427f8a781bb": { "Value": { "ecs_agent_version": "1.61.0", @@ -34091,6 +35063,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-068ddbef06e0e5d0f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-068ddbef06e0e5d0f", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-068ddbef06e0e5d0f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-069659b87d8e5e9c4": { "Value": { "ecs_agent_version": "1.65.1", @@ -34163,6 +35171,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220606.1-x86_64-ebs" } }, + "ami-06af2836669f050d9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06af2836669f050d9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06af2836669f050d9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06d3e049dd930fad7": { "Value": { "ecs_agent_version": "1.77.0", @@ -34451,6 +35495,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211223.0-x86_64-ebs" } }, + "ami-07864337e7a80c504": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07864337e7a80c504", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07864337e7a80c504" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-07937c3a993978715": { "Value": { "ecs_agent_version": "1.57.0", @@ -41223,31 +42303,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06af2836669f050d9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06af2836669f050d9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06641e665cfa00e62", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06641e665cfa00e62" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07864337e7a80c504", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07864337e7a80c504" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-068ddbef06e0e5d0f", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-068ddbef06e0e5d0f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0168f9134cb96e399", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-068ddbef06e0e5d0f", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0168f9134cb96e399" + "Value": "ami-068ddbef06e0e5d0f" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -41256,7 +42480,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -43601,6 +44825,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-0ca7fab7b651d4c65": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ca7fab7b651d4c65", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ca7fab7b651d4c65" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0cfb47194b0752293": { "Value": { "ecs_agent_version": "1.86.3", @@ -43781,6 +45041,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-x86_64-ebs" } }, + "ami-0df1291a4189796e8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0df1291a4189796e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0df1291a4189796e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0df997e8ed0f79566": { "Value": { "ecs_agent_version": "1.79.1", @@ -43817,6 +45113,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231116.0-x86_64-ebs" } }, + "ami-0e415a09c8d08e2a3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e415a09c8d08e2a3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e415a09c8d08e2a3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ea8be7cdf2c2f02f": { "Value": { "ecs_agent_version": "1.74.1", @@ -44033,6 +45365,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0fdaeee4d1d9d5a83": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fdaeee4d1d9d5a83", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fdaeee4d1d9d5a83" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs": { "Value": { "ecs_agent_version": "1.68.0", @@ -46805,6 +48173,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0df1291a4189796e8", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0df1291a4189796e8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e415a09c8d08e2a3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e415a09c8d08e2a3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ca7fab7b651d4c65", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ca7fab7b651d4c65" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fdaeee4d1d9d5a83", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fdaeee4d1d9d5a83" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-002491bf297a7838d": { "Value": { @@ -47778,6 +49290,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-arm64-ebs" } }, + "ami-0681e2fe559bb4f3f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0681e2fe559bb4f3f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0681e2fe559bb4f3f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-06835586e21c19dea": { "Value": { "ecs_agent_version": "1.79.1", @@ -48102,6 +49650,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230906.0-arm64-ebs" } }, + "ami-0807c44196cefedca": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0807c44196cefedca", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0807c44196cefedca" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0830b2f458c922c25": { "Value": { "ecs_agent_version": "1.89.2", @@ -48246,6 +49830,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-08cd8dd0be658ad70": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08cd8dd0be658ad70", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08cd8dd0be658ad70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-08e97cfa3e0eeb58a": { "Value": { "ecs_agent_version": "1.81.0", @@ -49542,6 +51162,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-arm64-ebs" } }, + "ami-0fd887c1c82174a76": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fd887c1c82174a76", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fd887c1c82174a76" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0fed4209ed5cc03ca": { "Value": { "ecs_agent_version": "1.74.1", @@ -52350,31 +54006,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0807c44196cefedca", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0807c44196cefedca" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08cd8dd0be658ad70", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08cd8dd0be658ad70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fd887c1c82174a76", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fd887c1c82174a76" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0681e2fe559bb4f3f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0681e2fe559bb4f3f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c833d2f94e193dd5", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0681e2fe559bb4f3f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c833d2f94e193dd5" + "Value": "ami-0681e2fe559bb4f3f" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -52383,7 +54183,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -52568,6 +54368,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0066013aebadb9420": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0066013aebadb9420", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0066013aebadb9420" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0075096e2859693cc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0075096e2859693cc", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0075096e2859693cc" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-008bd8c850925e558": { "Value": { "ecs_agent_version": "1.89.3", @@ -53180,6 +55052,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-05416558a20b248c0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05416558a20b248c0", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05416558a20b248c0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-057160ce2b1e2388e": { "Value": { "ecs_agent_version": "1.88.0", @@ -53324,6 +55232,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" } }, + "ami-060ec39b77d728799": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060ec39b77d728799", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060ec39b77d728799" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0639d0f1e9d4f38d6": { "Value": { "ecs_agent_version": "1.89.2", @@ -55484,31 +57428,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0075096e2859693cc", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0075096e2859693cc" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060ec39b77d728799", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060ec39b77d728799" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0066013aebadb9420", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0066013aebadb9420" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05416558a20b248c0", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05416558a20b248c0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-008bd8c850925e558", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-05416558a20b248c0", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-008bd8c850925e558" + "Value": "ami-05416558a20b248c0" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -55517,7 +57605,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -56854,6 +58942,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0bd91163b93a73fe1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bd91163b93a73fe1", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bd91163b93a73fe1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c09def73ce08a205": { "Value": { "ecs_agent_version": "1.83.0", @@ -56890,6 +59014,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-x86_64-ebs" } }, + "ami-0c82489c30e04140d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c82489c30e04140d", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c82489c30e04140d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0d15066b7869438ea": { "Value": { "ecs_agent_version": "1.86.3", @@ -56962,6 +59122,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0e094b2eaee7079ee": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e094b2eaee7079ee", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e094b2eaee7079ee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "ami-0e964ad1036d88610": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e964ad1036d88610", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e964ad1036d88610" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ea4c84455ccddbd8": { "Value": { "ecs_agent_version": "1.89.3", @@ -58618,31 +60850,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e964ad1036d88610", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e964ad1036d88610" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bd91163b93a73fe1", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bd91163b93a73fe1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c82489c30e04140d", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c82489c30e04140d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e094b2eaee7079ee", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e094b2eaee7079ee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-01cffef88bfdf9d6b", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0e094b2eaee7079ee", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-01cffef88bfdf9d6b" + "Value": "ami-0e094b2eaee7079ee" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58651,35 +61027,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c6c393117fdd547a", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0fdaeee4d1d9d5a83", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c6c393117fdd547a" + "Value": "ami-0fdaeee4d1d9d5a83" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58688,35 +61064,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ed2c92404a0bc5e1", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-034d80ad4d8330b48", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ed2c92404a0bc5e1" + "Value": "ami-034d80ad4d8330b48" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58725,7 +61101,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -63020,6 +65396,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c0ca60dcad8fe10c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c0ca60dcad8fe10c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0625d8cd0cb4f11c6", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0625d8cd0cb4f11c6" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0426fed36770173b1", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0426fed36770173b1" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0013f7c005123f191": { "Value": { "ecs_agent_version": "1.72.0", @@ -63452,6 +65936,42 @@ "Value": "al2023-ami-minimal-2023.5.20240624.0-kernel-6.1-x86_64" } }, + "ami-0426fed36770173b1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0426fed36770173b1", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0426fed36770173b1" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-04779564410203fb2": { "Value": { "ecs_agent_version": "1.85.1", @@ -63668,6 +66188,42 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-0625d8cd0cb4f11c6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0625d8cd0cb4f11c6", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0625d8cd0cb4f11c6" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0626449a4905bf95f": { "Value": { "ecs_agent_version": "1.86.2", @@ -64640,6 +67196,42 @@ "Value": "al2023-ami-minimal-2023.3.20240205.2-kernel-6.1-x86_64" } }, + "ami-0c0ca60dcad8fe10c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c0ca60dcad8fe10c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c0ca60dcad8fe10c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0c596642496cf4062": { "Value": { "ecs_agent_version": "1.82.4", @@ -67773,6 +70365,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b1ddf3b2ec659a5d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b1ddf3b2ec659a5d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb00550ddcf8a6e4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb00550ddcf8a6e4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb2b610c14ab19bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb2b610c14ab19bb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0005baddcf7bd41fb": { "Value": { "ecs_agent_version": "1.79.1", @@ -69501,6 +72201,42 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-arm64" } }, + "ami-0b1ddf3b2ec659a5d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b1ddf3b2ec659a5d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b1ddf3b2ec659a5d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-0be9dece64be2bcda": { "Value": { "ecs_agent_version": "1.82.3", @@ -70077,6 +72813,78 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-arm64" } }, + "ami-0fb00550ddcf8a6e4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb00550ddcf8a6e4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb00550ddcf8a6e4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "ami-0fb2b610c14ab19bb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb2b610c14ab19bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb2b610c14ab19bb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0fc252555aaf8c280": { "Value": { "ecs_agent_version": "1.87.0", @@ -70151,29 +72959,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f4ee1b850968cdf0", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-0fb2b610c14ab19bb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f4ee1b850968cdf0" + "Value": "ami-0fb2b610c14ab19bb" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -70182,7 +72990,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02aaec7dafb9b601d", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02aaec7dafb9b601d" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-02aaec7dafb9b601d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02aaec7dafb9b601d", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02aaec7dafb9b601d" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02aaec7dafb9b601d", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02aaec7dafb9b601d" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -72563,6 +75481,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b8289c36ad476831", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b8289c36ad476831" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-036df9fd27c75b5dc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-036df9fd27c75b5dc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0130d211d0ff6e112", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0130d211d0ff6e112" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-004d2a2ebfb8d5766": { "Value": { "ecs_agent_version": "1.82.3", @@ -72671,6 +75697,42 @@ "Value": "al2023-ami-minimal-2023.4.20240429.0-kernel-6.1-x86_64" } }, + "ami-0130d211d0ff6e112": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0130d211d0ff6e112", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0130d211d0ff6e112" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-01450d8adc0a0114c": { "Value": { "ecs_agent_version": "1.81.0", @@ -72923,6 +75985,42 @@ "Value": "al2023-ami-minimal-2023.2.20231113.0-kernel-6.1-x86_64" } }, + "ami-036df9fd27c75b5dc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-036df9fd27c75b5dc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-036df9fd27c75b5dc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-03a6b26261da781ef": { "Value": { "ecs_agent_version": "1.89.2", @@ -74471,6 +77569,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-0b8289c36ad476831": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b8289c36ad476831", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b8289c36ad476831" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0b91177238fc9c1b4": { "Value": { "ecs_agent_version": "1.71.1", @@ -74941,29 +78075,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-051faaeb38e8fec2e", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0130d211d0ff6e112", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-051faaeb38e8fec2e" + "Value": "ami-0130d211d0ff6e112" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -74972,35 +78106,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-029678e4f0fddbf9b", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0426fed36770173b1", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-029678e4f0fddbf9b" + "Value": "ami-0426fed36770173b1" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -75009,7 +78143,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json index 6fe076d02fef..4078bc46e89a 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-2.json @@ -1300,6 +1300,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20221209.1-x86_64-ebs" } }, + "ami-0ee37c188ec07ce43": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0ee37c188ec07ce43", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0ee37c188ec07ce43" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-0fcb83f0fb0b8c2bc": { "Value": { "ecs_agent_version": "1.51.0", @@ -3900,6 +3936,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0ee37c188ec07ce43", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0ee37c188ec07ce43" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.a-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.18.0", @@ -4576,9 +4648,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-01ce7f6cf5757395c", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-0ee37c188ec07ce43", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4590,13 +4662,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-01ce7f6cf5757395c" + "Value": "ami-0ee37c188ec07ce43" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -4970,6 +5042,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230727.0-x86_64-ebs" } }, + "ami-01a4c1cd33e8b9f46": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01a4c1cd33e8b9f46", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01a4c1cd33e8b9f46" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-01bba9f96447a3f1e": { "Value": { "ecs_agent_version": "1.73.1", @@ -6446,6 +6554,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-087055f575426504f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-087055f575426504f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-087055f575426504f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0876082315a821e64": { "Value": { "ecs_agent_version": "1.81.0", @@ -6986,6 +7130,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0b48055dcba2ee63d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b48055dcba2ee63d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b48055dcba2ee63d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b6478f40c3646e97": { "Value": { "ecs_agent_version": "1.61.1", @@ -7994,6 +8174,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211201.0-x86_64-ebs" } }, + "ami-0edde3c148312cc1e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0edde3c148312cc1e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0edde3c148312cc1e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0ee1e6441a504c048": { "Value": { "ecs_agent_version": "1.61.1", @@ -14070,6 +14286,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-087055f575426504f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-087055f575426504f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b48055dcba2ee63d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b48055dcba2ee63d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01a4c1cd33e8b9f46", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01a4c1cd33e8b9f46" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0edde3c148312cc1e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0edde3c148312cc1e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-000bf73c4703e6d58": { "Value": { @@ -14215,6 +14575,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-00c11ec4f012ef482": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00c11ec4f012ef482", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00c11ec4f012ef482" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-00ce88fdce1ab8b96": { "Value": { "ecs_agent_version": "1.87.0", @@ -14323,6 +14719,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230320.0-arm64-ebs" } }, + "ami-01f01b081f5faa0c6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f01b081f5faa0c6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f01b081f5faa0c6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-023ff7cf495300fad": { "Value": { "ecs_agent_version": "1.61.1", @@ -16627,6 +17059,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-arm64-ebs" } }, + "ami-0b513ed1149e2a91f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b513ed1149e2a91f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b513ed1149e2a91f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0bd3acaf56e72a1a3": { "Value": { "ecs_agent_version": "1.73.1", @@ -16735,6 +17203,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-arm64-ebs" } }, + "ami-0c15208dc9794aeed": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c15208dc9794aeed", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c15208dc9794aeed" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0c76a3e229599c58e": { "Value": { "ecs_agent_version": "1.77.0", @@ -22075,31 +22579,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f01b081f5faa0c6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f01b081f5faa0c6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c15208dc9794aeed", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c15208dc9794aeed" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b513ed1149e2a91f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b513ed1149e2a91f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00c11ec4f012ef482", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00c11ec4f012ef482" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-05982968c6f778e3d", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-00c11ec4f012ef482", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-05982968c6f778e3d" + "Value": "ami-00c11ec4f012ef482" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -22108,7 +22756,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -23265,6 +23913,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-040005b24c20952f8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-040005b24c20952f8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-040005b24c20952f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-040b6d21887b8ae13": { "Value": { "ecs_agent_version": "1.61.1", @@ -24201,6 +24885,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211103.0-x86_64-ebs" } }, + "ami-08027590ac90c1099": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08027590ac90c1099", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08027590ac90c1099" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-082f730d7bff4153c": { "Value": { "ecs_agent_version": "1.87.1", @@ -25497,6 +26217,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220426.0-x86_64-ebs" } }, + "ami-0ef5ac86853bfa5aa": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ef5ac86853bfa5aa", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ef5ac86853bfa5aa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0f0915becb5515be9": { "Value": { "ecs_agent_version": "1.82.0", @@ -25569,6 +26325,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-0f4c902d649a41b90": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4c902d649a41b90", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4c902d649a41b90" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f59e1eb4bcee106f": { "Value": { "ecs_agent_version": "1.79.2", @@ -31517,31 +32309,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4c902d649a41b90", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4c902d649a41b90" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-040005b24c20952f8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-040005b24c20952f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08027590ac90c1099", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08027590ac90c1099" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ef5ac86853bfa5aa", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ef5ac86853bfa5aa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-04c63808a1706615d", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0ef5ac86853bfa5aa", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-04c63808a1706615d" + "Value": "ami-0ef5ac86853bfa5aa" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -31550,7 +32486,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -31807,6 +32743,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220316.0-x86_64-ebs" } }, + "ami-01e3ae81f27a1b2c1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01e3ae81f27a1b2c1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01e3ae81f27a1b2c1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-01fb3f9ccc5590b17": { "Value": { "ecs_agent_version": "1.86.3", @@ -33247,6 +34219,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240329.0-x86_64-ebs" } }, + "ami-082858172697df226": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082858172697df226", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082858172697df226" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-08378ec5d8c4db82f": { "Value": { "ecs_agent_version": "1.75.3", @@ -33319,6 +34327,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220805.0-x86_64-ebs" } }, + "ami-089a9dc9110c407a9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-089a9dc9110c407a9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-089a9dc9110c407a9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-091e84ba394940306": { "Value": { "ecs_agent_version": "1.87.0", @@ -34903,6 +35947,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230418.0-x86_64-ebs" } }, + "ami-0f047e9568014d355": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f047e9568014d355", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f047e9568014d355" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f05304fb13c6de25": { "Value": { "ecs_agent_version": "1.69.0", @@ -39403,31 +40483,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01e3ae81f27a1b2c1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01e3ae81f27a1b2c1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-089a9dc9110c407a9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-089a9dc9110c407a9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f047e9568014d355", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f047e9568014d355" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082858172697df226", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082858172697df226" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-07118d5f4e074c90d", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-082858172697df226", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-07118d5f4e074c90d" + "Value": "ami-082858172697df226" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -39436,7 +40660,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -39801,6 +41025,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-x86_64-ebs" } }, + "ami-025a934c237cd85e0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-025a934c237cd85e0", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-025a934c237cd85e0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-025d7dd37e29aebc5": { "Value": { "ecs_agent_version": "1.81.0", @@ -41421,6 +42681,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0bb7bf06d7a0d9c70": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb7bf06d7a0d9c70", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb7bf06d7a0d9c70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0bbbbfb3892f9d840": { "Value": { "ecs_agent_version": "1.87.0", @@ -41637,6 +42933,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0cc4b07d525b8f403": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc4b07d525b8f403", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc4b07d525b8f403" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0cc72047d6c475dca": { "Value": { "ecs_agent_version": "1.79.2", @@ -41997,6 +43329,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-x86_64-ebs" } }, + "ami-0ec3dc60f305297da": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec3dc60f305297da", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec3dc60f305297da" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ef005dc5202e5973": { "Value": { "ecs_agent_version": "1.86.0", @@ -44985,6 +46353,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec3dc60f305297da", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec3dc60f305297da" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-025a934c237cd85e0", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-025a934c237cd85e0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb7bf06d7a0d9c70", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb7bf06d7a0d9c70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc4b07d525b8f403", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc4b07d525b8f403" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-004a6c62ad4fb47df": { "Value": { @@ -45274,6 +46786,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-arm64-ebs" } }, + "ami-0123f674773d98056": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0123f674773d98056", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0123f674773d98056" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0148c65f66bf9fa8f": { "Value": { "ecs_agent_version": "1.87.0", @@ -46066,6 +47614,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-051693f2371877f9f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-051693f2371877f9f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-051693f2371877f9f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0517120187120ac46": { "Value": { "ecs_agent_version": "1.84.0", @@ -46498,6 +48082,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240124.0-arm64-ebs" } }, + "ami-08510d8662b59e2a2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08510d8662b59e2a2", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08510d8662b59e2a2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-088210f6f874bb799": { "Value": { "ecs_agent_version": "1.88.0", @@ -47182,6 +48802,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230320.0-arm64-ebs" } }, + "ami-0c473c628d7a26117": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c473c628d7a26117", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c473c628d7a26117" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0c84ed713e9bffb7b": { "Value": { "ecs_agent_version": "1.79.1", @@ -50530,31 +52186,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0123f674773d98056", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0123f674773d98056" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-051693f2371877f9f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-051693f2371877f9f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08510d8662b59e2a2", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08510d8662b59e2a2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c473c628d7a26117", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c473c628d7a26117" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-07605090d9b8ecc69", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0c473c628d7a26117", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-07605090d9b8ecc69" + "Value": "ami-0c473c628d7a26117" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -50563,11 +52363,47 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, "gpu": { + "ami-00009ddeaefda61b0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00009ddeaefda61b0", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00009ddeaefda61b0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-000e1d83c088af87f": { "Value": { "ecs_agent_version": "1.89.3", @@ -50820,6 +52656,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-02581968211de6eed": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02581968211de6eed", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02581968211de6eed" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-02d454663323381eb": { "Value": { "ecs_agent_version": "1.86.2", @@ -51216,6 +53088,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-051d8ad4455a5d935": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-051d8ad4455a5d935", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-051d8ad4455a5d935" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-05606d4eb5d5db9cd": { "Value": { "ecs_agent_version": "1.87.0", @@ -51648,6 +53556,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-0a42f7a55f7c58fc1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a42f7a55f7c58fc1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a42f7a55f7c58fc1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0a759885b0391b3c8": { "Value": { "ecs_agent_version": "1.85.1", @@ -53664,31 +55608,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00009ddeaefda61b0", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00009ddeaefda61b0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-051d8ad4455a5d935", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-051d8ad4455a5d935" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02581968211de6eed", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02581968211de6eed" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a42f7a55f7c58fc1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a42f7a55f7c58fc1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0593efb39f66ecead", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0a42f7a55f7c58fc1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0593efb39f66ecead" + "Value": "ami-0a42f7a55f7c58fc1" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -53697,7 +55785,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -53810,6 +55898,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0114ca1fe55bc6c4a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0114ca1fe55bc6c4a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0114ca1fe55bc6c4a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0150f03e460d187e4": { "Value": { "ecs_agent_version": "1.85.0", @@ -54062,6 +56186,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-03efa67c9118ea65e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03efa67c9118ea65e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03efa67c9118ea65e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-04103215a328d239f": { "Value": { "ecs_agent_version": "1.89.2", @@ -54674,6 +56834,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-086fef114e9be3854": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-086fef114e9be3854", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-086fef114e9be3854" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-08fb7650927f5263d": { "Value": { "ecs_agent_version": "1.86.2", @@ -54746,6 +56942,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240306.2-x86_64-ebs" } }, + "ami-095be40d424203306": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-095be40d424203306", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-095be40d424203306" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09a7ac4e512dabce6": { "Value": { "ecs_agent_version": "1.87.1", @@ -56798,31 +59030,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03efa67c9118ea65e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03efa67c9118ea65e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-095be40d424203306", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-095be40d424203306" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-086fef114e9be3854", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-086fef114e9be3854" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0114ca1fe55bc6c4a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0114ca1fe55bc6c4a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0436d5b211861b50f", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0114ca1fe55bc6c4a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0436d5b211861b50f" + "Value": "ami-0114ca1fe55bc6c4a" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -56831,35 +59207,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e31565d23e9841d7", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0cc4b07d525b8f403", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e31565d23e9841d7" + "Value": "ami-0cc4b07d525b8f403" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -56868,35 +59244,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e4aef5d56b9de73b", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0edde3c148312cc1e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e4aef5d56b9de73b" + "Value": "ami-0edde3c148312cc1e" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -56905,7 +59281,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -61200,6 +63576,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-026f184a38ed0bf8b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-026f184a38ed0bf8b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03b237179c9d2d86d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03b237179c9d2d86d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0368bbef085a523c5", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0368bbef085a523c5" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-000ac8f82a24f167c": { "Value": { "ecs_agent_version": "1.81.0", @@ -61704,6 +64188,42 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-x86_64" } }, + "ami-026f184a38ed0bf8b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-026f184a38ed0bf8b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-026f184a38ed0bf8b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0272dd3f3717f4093": { "Value": { "ecs_agent_version": "1.75.0", @@ -61884,6 +64404,42 @@ "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" } }, + "ami-0368bbef085a523c5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0368bbef085a523c5", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0368bbef085a523c5" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-037f4ea2c49b086dc": { "Value": { "ecs_agent_version": "1.70.1", @@ -61956,6 +64512,42 @@ "Value": "al2023-ami-minimal-2023.5.20240819.0-kernel-6.1-x86_64" } }, + "ami-03b237179c9d2d86d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03b237179c9d2d86d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03b237179c9d2d86d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-03c5b9244fa53f611": { "Value": { "ecs_agent_version": "1.78.0", @@ -65953,6 +68545,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0971515760d668a5d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0971515760d668a5d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e1dddb678b465c3", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e1dddb678b465c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ccbcf5cfb84153c3", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ccbcf5cfb84153c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-00fd59451ffa03da2": { "Value": { "ecs_agent_version": "1.84.0", @@ -66313,6 +69013,42 @@ "Value": "al2023-ami-minimal-2023.1.20230912.0-kernel-6.1-arm64" } }, + "ami-02e1dddb678b465c3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02e1dddb678b465c3", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02e1dddb678b465c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-02f5ecb79b4f0f73e": { "Value": { "ecs_agent_version": "1.82.3", @@ -67393,6 +70129,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-arm64" } }, + "ami-0971515760d668a5d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0971515760d668a5d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0971515760d668a5d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-097437c514ccc7175": { "Value": { "ecs_agent_version": "1.85.1", @@ -67861,6 +70633,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-arm64" } }, + "ami-0ccbcf5cfb84153c3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ccbcf5cfb84153c3", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ccbcf5cfb84153c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0cd93a174119875d8": { "Value": { "ecs_agent_version": "1.89.2", @@ -68331,29 +71139,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-045d480ebaa65340f", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-0ccbcf5cfb84153c3", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-045d480ebaa65340f" + "Value": "ami-0ccbcf5cfb84153c3" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -68362,7 +71170,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057a97ff89830afd4", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057a97ff89830afd4" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-057a97ff89830afd4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057a97ff89830afd4", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057a97ff89830afd4" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057a97ff89830afd4", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057a97ff89830afd4" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -70743,6 +73661,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e085a4f3a994e005", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e085a4f3a994e005" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-093542f8f51334925", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-093542f8f51334925" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-039b79f3a43305877", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-039b79f3a43305877" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-008e6f847e223ccc7": { "Value": { "ecs_agent_version": "1.82.0", @@ -71283,6 +74309,42 @@ "Value": "al2023-ami-minimal-2023.5.20241001.1-kernel-6.1-x86_64" } }, + "ami-039b79f3a43305877": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-039b79f3a43305877", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-039b79f3a43305877" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-03a6424a10dc1bcbc": { "Value": { "ecs_agent_version": "1.80.0", @@ -72255,6 +75317,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-093542f8f51334925": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-093542f8f51334925", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-093542f8f51334925" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-09c4a89c0fc27962c": { "Value": { "ecs_agent_version": "1.80.0", @@ -72867,6 +75965,42 @@ "Value": "al2023-ami-minimal-2023.0.20230329.0-kernel-6.1-x86_64" } }, + "ami-0e085a4f3a994e005": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e085a4f3a994e005", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e085a4f3a994e005" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0e3edd2a6647b39c1": { "Value": { "ecs_agent_version": "1.87.1", @@ -73121,29 +76255,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c4d383fdaa0317e9", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-039b79f3a43305877", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c4d383fdaa0317e9" + "Value": "ami-039b79f3a43305877" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -73152,35 +76286,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-06d1eb4619c8dcd8e", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0368bbef085a523c5", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-06d1eb4619c8dcd8e" + "Value": "ami-0368bbef085a523c5" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -73189,7 +76323,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json index e14abf71f3dc..9ab846df5490 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-northeast-3.json @@ -364,6 +364,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "ami-04ccae374e91435c3": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-04ccae374e91435c3", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-04ccae374e91435c3" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-05006b56ea0701668": { "Value": { "ecs_agent_version": "1.51.0", @@ -3172,13 +3208,49 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-04ccae374e91435c3", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-04ccae374e91435c3" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "recommended": { "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-027e1a2b0f6e2737b", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-04ccae374e91435c3", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -3190,13 +3262,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-027e1a2b0f6e2737b" + "Value": "ami-04ccae374e91435c3" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -3678,6 +3750,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240329.0-x86_64-ebs" } }, + "ami-01b6da9c1e72407c8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01b6da9c1e72407c8", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01b6da9c1e72407c8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-01f016960b7e60ba8": { "Value": { "ecs_agent_version": "1.86.2", @@ -4794,6 +4902,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-06edf350208500144": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06edf350208500144", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06edf350208500144" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-070b888e01dfe9d57": { "Value": { "ecs_agent_version": "1.89.2", @@ -5010,6 +5154,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-08167607b6b77ae8e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08167607b6b77ae8e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08167607b6b77ae8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0841b9979c3f2994b": { "Value": { "ecs_agent_version": "1.61.1", @@ -5370,6 +5550,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-09c1052d72d89c77f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09c1052d72d89c77f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09c1052d72d89c77f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09ce8fd7d2dca9a34": { "Value": { "ecs_agent_version": "1.60.0", @@ -11522,6 +11738,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06edf350208500144", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06edf350208500144" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01b6da9c1e72407c8", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01b6da9c1e72407c8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09c1052d72d89c77f", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09c1052d72d89c77f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08167607b6b77ae8e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08167607b6b77ae8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-00159988c440fff70": { "Value": { @@ -12567,6 +12927,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-arm64-ebs" } }, + "ami-06457bcb8f0a20955": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06457bcb8f0a20955", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06457bcb8f0a20955" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-065aa5f1e9cc5abee": { "Value": { "ecs_agent_version": "1.79.2", @@ -12747,6 +13143,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "ami-0702922c7e23fdd25": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0702922c7e23fdd25", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0702922c7e23fdd25" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-073cb32a01f337095": { "Value": { "ecs_agent_version": "1.81.1", @@ -12927,6 +13359,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-arm64-ebs" } }, + "ami-07efeffd4c050118d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07efeffd4c050118d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07efeffd4c050118d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-07f08e7b66b08ab04": { "Value": { "ecs_agent_version": "1.69.0", @@ -13287,6 +13755,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230221.0-arm64-ebs" } }, + "ami-095f9523b1fc03e3c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-095f9523b1fc03e3c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-095f9523b1fc03e3c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-09735cbf0f2bb9da4": { "Value": { "ecs_agent_version": "1.86.0", @@ -17859,31 +18363,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06457bcb8f0a20955", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06457bcb8f0a20955" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0702922c7e23fdd25", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0702922c7e23fdd25" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07efeffd4c050118d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07efeffd4c050118d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-095f9523b1fc03e3c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-095f9523b1fc03e3c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-06f8078589ca9f378", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-095f9523b1fc03e3c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-06f8078589ca9f378" + "Value": "ami-095f9523b1fc03e3c" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -17892,11 +18540,47 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, "gpu": { + "ami-000cc4b2643195b02": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-000cc4b2643195b02", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-000cc4b2643195b02" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-003dab56a8b39ebeb": { "Value": { "ecs_agent_version": "1.79.2", @@ -18365,6 +19049,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-028aca57d926d7470": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-028aca57d926d7470", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-028aca57d926d7470" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-029a953f5ff70fdb3": { "Value": { "ecs_agent_version": "1.87.1", @@ -19481,6 +20201,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-078b52d06b492e791": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-078b52d06b492e791", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-078b52d06b492e791" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-07d2aa5cf65a9ebe3": { "Value": { "ecs_agent_version": "1.86.0", @@ -20021,6 +20777,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240903.0-x86_64-ebs" } }, + "ami-09e50cea8cfc0c56b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09e50cea8cfc0c56b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09e50cea8cfc0c56b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09f21ee289eeddda6": { "Value": { "ecs_agent_version": "1.68.1", @@ -25025,31 +25817,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-028aca57d926d7470", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-028aca57d926d7470" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-078b52d06b492e791", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-078b52d06b492e791" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09e50cea8cfc0c56b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09e50cea8cfc0c56b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-000cc4b2643195b02", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-000cc4b2643195b02" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b7e31279878df771", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-000cc4b2643195b02", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b7e31279878df771" + "Value": "ami-000cc4b2643195b02" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -25058,7 +25994,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -25819,6 +26755,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-x86_64-ebs" } }, + "ami-08aed18ef77abcc53": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08aed18ef77abcc53", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08aed18ef77abcc53" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-08b85586766d0a73b": { "Value": { "ecs_agent_version": "1.86.3", @@ -25963,6 +26935,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-096eb592dbbdaf6b0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-096eb592dbbdaf6b0", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-096eb592dbbdaf6b0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-09c9fd82f2795975f": { "Value": { "ecs_agent_version": "1.85.1", @@ -26107,6 +27115,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0a856c6c5ec2ef331": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a856c6c5ec2ef331", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a856c6c5ec2ef331" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0a92df733488a7ac9": { "Value": { "ecs_agent_version": "1.82.1", @@ -26503,6 +27547,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" } }, + "ami-0d710c0a69a6f1145": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d710c0a69a6f1145", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d710c0a69a6f1145" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0dd802d3ae673f2bb": { "Value": { "ecs_agent_version": "1.89.2", @@ -28375,31 +29455,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d710c0a69a6f1145", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d710c0a69a6f1145" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08aed18ef77abcc53", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08aed18ef77abcc53" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a856c6c5ec2ef331", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a856c6c5ec2ef331" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-096eb592dbbdaf6b0", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-096eb592dbbdaf6b0" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-09039f94bdb185d68", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-096eb592dbbdaf6b0", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-09039f94bdb185d68" + "Value": "ami-096eb592dbbdaf6b0" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -28408,7 +29632,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -29925,6 +31149,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240306.2-x86_64-ebs" } }, + "ami-083097df9f9c6db6f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-083097df9f9c6db6f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-083097df9f9c6db6f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-08865ac7bba54aa0a": { "Value": { "ecs_agent_version": "1.82.4", @@ -29961,6 +31221,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-x86_64-ebs" } }, + "ami-08927996ee961b0f5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08927996ee961b0f5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08927996ee961b0f5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-08b199251dbaaad1a": { "Value": { "ecs_agent_version": "1.87.1", @@ -30069,6 +31365,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240109.0-x86_64-ebs" } }, + "ami-09a376c3e72e3ab67": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09a376c3e72e3ab67", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09a376c3e72e3ab67" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09a443701f13bd411": { "Value": { "ecs_agent_version": "1.85.2", @@ -31185,6 +32517,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-x86_64-ebs" } }, + "ami-0fc5767d96ec0c04e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fc5767d96ec0c04e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fc5767d96ec0c04e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs": { "Value": { "ecs_agent_version": "1.68.0", @@ -33957,6 +35325,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09a376c3e72e3ab67", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09a376c3e72e3ab67" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08927996ee961b0f5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08927996ee961b0f5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-083097df9f9c6db6f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-083097df9f9c6db6f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fc5767d96ec0c04e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fc5767d96ec0c04e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-000bae64827cd15d2": { "Value": { @@ -34570,6 +36082,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240521.0-arm64-ebs" } }, + "ami-0373a4c0bb70cce91": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0373a4c0bb70cce91", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0373a4c0bb70cce91" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-038ee4e8a5d14a208": { "Value": { "ecs_agent_version": "1.81.0", @@ -35182,6 +36730,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-arm64-ebs" } }, + "ami-068b40ea66fb225f8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-068b40ea66fb225f8", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-068b40ea66fb225f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-06be0bd867d989290": { "Value": { "ecs_agent_version": "1.86.0", @@ -36694,6 +38278,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-arm64-ebs" } }, + "ami-0f9ad8eee9446aa00": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9ad8eee9446aa00", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9ad8eee9446aa00" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, + "ami-0feac5b83034fa647": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0feac5b83034fa647", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0feac5b83034fa647" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0fecf02b49b74961c": { "Value": { "ecs_agent_version": "1.79.0", @@ -39502,31 +41158,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0feac5b83034fa647", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0feac5b83034fa647" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0373a4c0bb70cce91", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0373a4c0bb70cce91" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-068b40ea66fb225f8", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-068b40ea66fb225f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9ad8eee9446aa00", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9ad8eee9446aa00" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-035711e7402cb97e4", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0f9ad8eee9446aa00", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-035711e7402cb97e4" + "Value": "ami-0f9ad8eee9446aa00" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -39535,7 +41335,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -39720,6 +41520,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-00495edbe84028f36": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00495edbe84028f36", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00495edbe84028f36" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0118cebbc86bede57": { "Value": { "ecs_agent_version": "1.86.0", @@ -40080,6 +41916,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-02b572497e20bc1bd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02b572497e20bc1bd", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02b572497e20bc1bd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-031608502424a157c": { "Value": { "ecs_agent_version": "1.87.1", @@ -40332,6 +42204,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240521.0-x86_64-ebs" } }, + "ami-05dd9c8f6c3a0e30d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05dd9c8f6c3a0e30d", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05dd9c8f6c3a0e30d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-05e14d5097e010576": { "Value": { "ecs_agent_version": "1.85.2", @@ -41016,6 +42924,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0f24f7382ae068a97": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f24f7382ae068a97", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f24f7382ae068a97" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f5713e3c3184a9fe": { "Value": { "ecs_agent_version": "1.88.0", @@ -42636,31 +44580,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f24f7382ae068a97", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f24f7382ae068a97" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00495edbe84028f36", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00495edbe84028f36" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05dd9c8f6c3a0e30d", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05dd9c8f6c3a0e30d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02b572497e20bc1bd", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02b572497e20bc1bd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c82690231da47cef", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-02b572497e20bc1bd", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c82690231da47cef" + "Value": "ami-02b572497e20bc1bd" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -42669,7 +44757,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -43034,6 +45122,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0459507c8478f3be3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0459507c8478f3be3", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0459507c8478f3be3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-04db0146235717dba": { "Value": { "ecs_agent_version": "1.83.0", @@ -43178,6 +45302,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-x86_64-ebs" } }, + "ami-060833e607721ee5d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060833e607721ee5d", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060833e607721ee5d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "ami-061155ee5480dec56": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-061155ee5480dec56", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-061155ee5480dec56" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-065fe663ff8abca70": { "Value": { "ecs_agent_version": "1.89.2", @@ -43610,6 +45806,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-0b631bb782cfa77f9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b631bb782cfa77f9", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b631bb782cfa77f9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0be29026e25faf381": { "Value": { "ecs_agent_version": "1.86.0", @@ -45770,31 +48002,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b631bb782cfa77f9", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b631bb782cfa77f9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0459507c8478f3be3", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0459507c8478f3be3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-061155ee5480dec56", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-061155ee5480dec56" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060833e607721ee5d", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060833e607721ee5d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-02cb83896bf786ddc", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-060833e607721ee5d", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-02cb83896bf786ddc" + "Value": "ami-060833e607721ee5d" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -45803,35 +48179,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-037a326f3a20c85c2", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0fc5767d96ec0c04e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-037a326f3a20c85c2" + "Value": "ami-0fc5767d96ec0c04e" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -45840,35 +48216,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-03f932639eaca8193", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-08167607b6b77ae8e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-03f932639eaca8193" + "Value": "ami-08167607b6b77ae8e" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -45877,7 +48253,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -49702,6 +52078,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be69251287db4d1c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be69251287db4d1c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02786e3906f7f5a80", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02786e3906f7f5a80" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02312a0c358049736", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02312a0c358049736" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0007dab776c0a0470": { "Value": { "ecs_agent_version": "1.75.0", @@ -50026,6 +52510,42 @@ "Value": "al2023-ami-minimal-2023.5.20240903.0-kernel-6.1-x86_64" } }, + "ami-02312a0c358049736": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02312a0c358049736", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02312a0c358049736" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-024e75d2a28f27922": { "Value": { "ecs_agent_version": "1.74.1", @@ -50098,6 +52618,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" } }, + "ami-02786e3906f7f5a80": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02786e3906f7f5a80", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02786e3906f7f5a80" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-02d9f09933da6d0ec": { "Value": { "ecs_agent_version": "1.81.0", @@ -51610,6 +54166,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-0be69251287db4d1c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be69251287db4d1c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be69251287db4d1c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0c6c75d37f94f3b4e": { "Value": { "ecs_agent_version": "1.84.0", @@ -54455,6 +57047,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08824cfe8a552c759", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08824cfe8a552c759" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0da9206a8d1de2273", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0da9206a8d1de2273" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cd65e4164d6ed769", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cd65e4164d6ed769" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0091dce6e4e921a5b": { "Value": { "ecs_agent_version": "1.79.0", @@ -55715,6 +58415,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-arm64" } }, + "ami-08824cfe8a552c759": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08824cfe8a552c759", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08824cfe8a552c759" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-089d985517c535e33": { "Value": { "ecs_agent_version": "1.71.1", @@ -56471,6 +59207,42 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "ami-0cd65e4164d6ed769": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cd65e4164d6ed769", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cd65e4164d6ed769" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0d21450627e843aa4": { "Value": { "ecs_agent_version": "1.85.0", @@ -56579,6 +59351,42 @@ "Value": "al2023-ami-minimal-2023.4.20240319.1-kernel-6.1-arm64" } }, + "ami-0da9206a8d1de2273": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0da9206a8d1de2273", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0da9206a8d1de2273" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-0dc5d028d0249b6a5": { "Value": { "ecs_agent_version": "1.82.0", @@ -56833,29 +59641,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0cbf25697ee7e325d", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-0cd65e4164d6ed769", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0cbf25697ee7e325d" + "Value": "ami-0cd65e4164d6ed769" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -56864,7 +59672,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-020cf601989f84e53", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-020cf601989f84e53" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-020cf601989f84e53": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-020cf601989f84e53", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-020cf601989f84e53" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-020cf601989f84e53", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-020cf601989f84e53" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -58345,6 +61263,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09135035f69576834", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09135035f69576834" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a2c6b66731f188b6", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a2c6b66731f188b6" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-008a01dea75b4129a", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-008a01dea75b4129a" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0000a105fd9808d4e": { "Value": { "ecs_agent_version": "1.89.1", @@ -58417,6 +61443,42 @@ "Value": "al2023-ami-minimal-2023.5.20240819.0-kernel-6.1-x86_64" } }, + "ami-008a01dea75b4129a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-008a01dea75b4129a", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-008a01dea75b4129a" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-00ad48e441fc44fa4": { "Value": { "ecs_agent_version": "1.82.0", @@ -59137,6 +62199,42 @@ "Value": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-x86_64" } }, + "ami-09135035f69576834": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09135035f69576834", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09135035f69576834" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-09848c7890848f4a6": { "Value": { "ecs_agent_version": "1.82.3", @@ -59281,6 +62379,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" } }, + "ami-0a2c6b66731f188b6": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a2c6b66731f188b6", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a2c6b66731f188b6" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0a3e915406b9f2f22": { "Value": { "ecs_agent_version": "1.85.2", @@ -59823,29 +62957,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e6d4dcd9e3743f4f", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-008a01dea75b4129a", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e6d4dcd9e3743f4f" + "Value": "ami-008a01dea75b4129a" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -59854,35 +62988,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0cdd96e03a7520b91", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-02312a0c358049736", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0cdd96e03a7520b91" + "Value": "ami-02312a0c358049736" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -59891,7 +63025,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } } diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json b/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json index 8eeb03e80dc5..75c28b83619a 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-south-1.json @@ -292,6 +292,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20230306.1-x86_64-ebs" } }, + "ami-0298e0c0441cb5c66": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0298e0c0441cb5c66", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0298e0c0441cb5c66" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-03a86bf5c0d3e8f21": { "Value": { "ecs_agent_version": "1.51.0", @@ -3900,6 +3936,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0298e0c0441cb5c66", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0298e0c0441cb5c66" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.a-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.18.0", @@ -4576,9 +4648,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-0d6373f38d4b78dad", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-0298e0c0441cb5c66", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4590,13 +4662,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-0d6373f38d4b78dad" + "Value": "ami-0298e0c0441cb5c66" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -7094,6 +7166,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-x86_64-ebs" } }, + "ami-0afe7d8347f17aa64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0afe7d8347f17aa64", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0afe7d8347f17aa64" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0b0d1aa5234e7ca33": { "Value": { "ecs_agent_version": "1.86.2", @@ -7166,6 +7274,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0b7514ad4a4fb45da": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7514ad4a4fb45da", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7514ad4a4fb45da" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0bb19f0a62c9ba776": { "Value": { "ecs_agent_version": "1.80.0", @@ -8030,6 +8174,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-0ec76a47f870c0bcb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec76a47f870c0bcb", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec76a47f870c0bcb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ee33c69338608ad8": { "Value": { "ecs_agent_version": "1.88.0", @@ -8246,6 +8426,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220606.1-x86_64-ebs" } }, + "ami-0fba866e13a3cf285": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fba866e13a3cf285", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fba866e13a3cf285" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0fdc7ef990b70e8fd": { "Value": { "ecs_agent_version": "1.80.0", @@ -14070,6 +14286,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec76a47f870c0bcb", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec76a47f870c0bcb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fba866e13a3cf285", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fba866e13a3cf285" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7514ad4a4fb45da", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7514ad4a4fb45da" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0afe7d8347f17aa64", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0afe7d8347f17aa64" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-000a531d595cda3a9": { "Value": { @@ -16015,6 +16375,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-arm64-ebs" } }, + "ami-08a3ba19b29318364": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08a3ba19b29318364", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08a3ba19b29318364" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-097313abf4c78cc3b": { "Value": { "ecs_agent_version": "1.74.1", @@ -16087,6 +16483,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-arm64-ebs" } }, + "ami-098d8f17d34b0d209": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098d8f17d34b0d209", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098d8f17d34b0d209" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-09d57061c96c876f8": { "Value": { "ecs_agent_version": "1.85.2", @@ -16519,6 +16951,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230515.0-arm64-ebs" } }, + "ami-0b147df026a13882d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b147df026a13882d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b147df026a13882d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0b51c19e9fe84d2e1": { "Value": { "ecs_agent_version": "1.82.0", @@ -16591,6 +17059,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230418.0-arm64-ebs" } }, + "ami-0b6657640a764c91d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b6657640a764c91d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b6657640a764c91d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0b9251412e5c8e67d": { "Value": { "ecs_agent_version": "1.86.3", @@ -23279,31 +23783,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098d8f17d34b0d209", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098d8f17d34b0d209" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08a3ba19b29318364", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08a3ba19b29318364" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b6657640a764c91d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b6657640a764c91d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b147df026a13882d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b147df026a13882d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e057253047e68f18", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b147df026a13882d", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e057253047e68f18" + "Value": "ami-0b147df026a13882d" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -23312,7 +23960,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -23677,6 +24325,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-023b60501dadc7f23": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-023b60501dadc7f23", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-023b60501dadc7f23" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-024b649b2bd976c3a": { "Value": { "ecs_agent_version": "1.79.2", @@ -25765,6 +26449,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-x86_64-ebs" } }, + "ami-0bb7bb768b8578f04": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb7bb768b8578f04", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb7bb768b8578f04" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0bbd058c4f753adc6": { "Value": { "ecs_agent_version": "1.76.0", @@ -25909,6 +26629,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230727.0-x86_64-ebs" } }, + "ami-0c48c07e7ea185bb9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c48c07e7ea185bb9", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c48c07e7ea185bb9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c4bf640c95e4c802": { "Value": { "ecs_agent_version": "1.89.2", @@ -26017,6 +26773,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0c6fb4841abda7bde": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6fb4841abda7bde", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6fb4841abda7bde" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0c79253ca9931586d": { "Value": { "ecs_agent_version": "1.88.0", @@ -32721,31 +33513,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c48c07e7ea185bb9", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c48c07e7ea185bb9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-023b60501dadc7f23", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-023b60501dadc7f23" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb7bb768b8578f04", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb7bb768b8578f04" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6fb4841abda7bde", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6fb4841abda7bde" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ecd0bea2b84ff1c4", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0c6fb4841abda7bde", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ecd0bea2b84ff1c4" + "Value": "ami-0c6fb4841abda7bde" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -32754,7 +33690,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -32831,6 +33767,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" } }, + "ami-00403569d16a7d04c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00403569d16a7d04c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00403569d16a7d04c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0080447f7c14d3c3d": { "Value": { "ecs_agent_version": "1.69.0", @@ -33875,6 +34847,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240521.0-x86_64-ebs" } }, + "ami-062495999fce2fb79": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-062495999fce2fb79", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-062495999fce2fb79" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06591f6572adcac54": { "Value": { "ecs_agent_version": "1.57.0", @@ -34019,6 +35027,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231101.0-x86_64-ebs" } }, + "ami-06c9e88b3820b991d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06c9e88b3820b991d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06c9e88b3820b991d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06e79960619f912bc": { "Value": { "ecs_agent_version": "1.69.0", @@ -35423,6 +36467,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-x86_64-ebs" } }, + "ami-0ce42b079327e987c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ce42b079327e987c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ce42b079327e987c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0cf04a8bb30bf1e2e": { "Value": { "ecs_agent_version": "1.74.1", @@ -40999,31 +42079,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ce42b079327e987c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ce42b079327e987c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06c9e88b3820b991d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06c9e88b3820b991d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-062495999fce2fb79", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-062495999fce2fb79" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00403569d16a7d04c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00403569d16a7d04c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-010644bdae1cbf69f", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-00403569d16a7d04c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-010644bdae1cbf69f" + "Value": "ami-00403569d16a7d04c" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -41032,7 +42256,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -41793,6 +43017,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230307.0-x86_64-ebs" } }, + "ami-041121485f4f734b4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-041121485f4f734b4", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-041121485f4f734b4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-04a24d8f7a4890bba": { "Value": { "ecs_agent_version": "1.85.1", @@ -42117,6 +43377,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-x86_64-ebs" } }, + "ami-066123dc4b8aa8e05": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-066123dc4b8aa8e05", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-066123dc4b8aa8e05" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0682a720aa29835dc": { "Value": { "ecs_agent_version": "1.87.0", @@ -42873,6 +44169,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0a7298d2d1a1c6bce": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a7298d2d1a1c6bce", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a7298d2d1a1c6bce" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ab848f7fdb5cc0f2": { "Value": { "ecs_agent_version": "1.86.3", @@ -43233,6 +44565,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0b9619cf0471c7a3e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b9619cf0471c7a3e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b9619cf0471c7a3e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0bb0bce357b6183d6": { "Value": { "ecs_agent_version": "1.73.0", @@ -46581,6 +47949,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-041121485f4f734b4", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-041121485f4f734b4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-066123dc4b8aa8e05", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-066123dc4b8aa8e05" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a7298d2d1a1c6bce", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a7298d2d1a1c6bce" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b9619cf0471c7a3e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b9619cf0471c7a3e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-0006dac33e4ec1474": { "Value": { @@ -47482,6 +48994,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-arm64-ebs" } }, + "ami-053b2604fced7e4bb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-053b2604fced7e4bb", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-053b2604fced7e4bb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-054feefd140361c3e": { "Value": { "ecs_agent_version": "1.79.1", @@ -48346,6 +49894,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-0b1dedffb7483cd07": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b1dedffb7483cd07", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b1dedffb7483cd07" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0b4ec68023641728c": { "Value": { "ecs_agent_version": "1.85.0", @@ -48670,6 +50254,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" } }, + "ami-0cedf6c96a55a7ec3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cedf6c96a55a7ec3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cedf6c96a55a7ec3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0d5f12d1a1d660cb9": { "Value": { "ecs_agent_version": "1.75.0", @@ -48922,6 +50542,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230504.1-arm64-ebs" } }, + "ami-0e7859e12b7371f85": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e7859e12b7371f85", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e7859e12b7371f85" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0eb86ee480801d528": { "Value": { "ecs_agent_version": "1.74.1", @@ -52126,31 +53782,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e7859e12b7371f85", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e7859e12b7371f85" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-053b2604fced7e4bb", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-053b2604fced7e4bb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cedf6c96a55a7ec3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cedf6c96a55a7ec3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b1dedffb7483cd07", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b1dedffb7483cd07" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-094cd45e7f833a443", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b1dedffb7483cd07", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-094cd45e7f833a443" + "Value": "ami-0b1dedffb7483cd07" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -52159,7 +53959,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -52380,6 +54180,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-01f07505bb3860f86": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f07505bb3860f86", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f07505bb3860f86" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-01fe7bfe0d7a1938f": { "Value": { "ecs_agent_version": "1.85.0", @@ -52524,6 +54360,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-02c668f689b9bfedf": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02c668f689b9bfedf", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02c668f689b9bfedf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-02e566ee3ee2cd373": { "Value": { "ecs_agent_version": "1.89.2", @@ -53208,6 +55080,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0bdd36e9d2318376b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bdd36e9d2318376b", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bdd36e9d2318376b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c0e911bd8711defa": { "Value": { "ecs_agent_version": "1.85.3", @@ -53640,6 +55548,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0f502f93283696a72": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f502f93283696a72", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f502f93283696a72" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f8a979e049713720": { "Value": { "ecs_agent_version": "1.85.1", @@ -55260,31 +57204,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bdd36e9d2318376b", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bdd36e9d2318376b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02c668f689b9bfedf", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02c668f689b9bfedf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f502f93283696a72", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f502f93283696a72" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f07505bb3860f86", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f07505bb3860f86" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0d8f825afc47e935b", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-01f07505bb3860f86", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0d8f825afc47e935b" + "Value": "ami-01f07505bb3860f86" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -55293,7 +57381,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -55478,6 +57566,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" } }, + "ami-0150096b43ce4bec5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0150096b43ce4bec5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0150096b43ce4bec5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0189b3459af07446a": { "Value": { "ecs_agent_version": "1.82.0", @@ -56090,6 +58214,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240306.2-x86_64-ebs" } }, + "ami-07f13fe7942ba3a2e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f13fe7942ba3a2e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f13fe7942ba3a2e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-082d5268d361e93d7": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082d5268d361e93d7", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082d5268d361e93d7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0866299613cd5d5a3": { "Value": { "ecs_agent_version": "1.86.3", @@ -56846,6 +59042,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0ffe3b6e9e0a0d3ec": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ffe3b6e9e0a0d3ec", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ffe3b6e9e0a0d3ec" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20240312-x86_64-ebs": { "Value": { "ecs_agent_version": "1.82.0", @@ -58394,31 +60626,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ffe3b6e9e0a0d3ec", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ffe3b6e9e0a0d3ec" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-082d5268d361e93d7", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-082d5268d361e93d7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f13fe7942ba3a2e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f13fe7942ba3a2e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0150096b43ce4bec5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0150096b43ce4bec5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0723d46f64aae66f2", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0150096b43ce4bec5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0723d46f64aae66f2" + "Value": "ami-0150096b43ce4bec5" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58427,35 +60803,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b8a033e0ed55c230", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b9619cf0471c7a3e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b8a033e0ed55c230" + "Value": "ami-0b9619cf0471c7a3e" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58464,35 +60840,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c70e84671c4fafaf", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0afe7d8347f17aa64", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c70e84671c4fafaf" + "Value": "ami-0afe7d8347f17aa64" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -58501,7 +60877,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -62796,6 +65172,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d3f1b9e20c42234d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d3f1b9e20c42234d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-003c4e453d6057f7d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-003c4e453d6057f7d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0572f35fb885fbf25", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0572f35fb885fbf25" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0036f358750e191d0": { "Value": { "ecs_agent_version": "1.76.0", @@ -62832,6 +65316,42 @@ "Value": "al2023-ami-minimal-2023.1.20230912.0-kernel-6.1-x86_64" } }, + "ami-003c4e453d6057f7d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-003c4e453d6057f7d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-003c4e453d6057f7d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-007c5bfe6d7ef25bf": { "Value": { "ecs_agent_version": "1.71.2", @@ -63660,6 +66180,42 @@ "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" } }, + "ami-0572f35fb885fbf25": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0572f35fb885fbf25", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0572f35fb885fbf25" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-067c97577b083954f": { "Value": { "ecs_agent_version": "1.89.2", @@ -64740,6 +67296,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-0d3f1b9e20c42234d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d3f1b9e20c42234d", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d3f1b9e20c42234d" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0db37fa51a7d32f36": { "Value": { "ecs_agent_version": "1.87.1", @@ -67549,6 +70141,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff89dc8e3f75f9ac", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff89dc8e3f75f9ac" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02d1d21ae19fd613a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02d1d21ae19fd613a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f29128bcec495a39", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f29128bcec495a39" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-000be607201d9d6ff": { "Value": { "ecs_agent_version": "1.82.2", @@ -67981,6 +70681,42 @@ "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-arm64" } }, + "ami-02d1d21ae19fd613a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02d1d21ae19fd613a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02d1d21ae19fd613a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-02da5c0c65a162dc6": { "Value": { "ecs_agent_version": "1.86.3", @@ -69781,6 +72517,42 @@ "Value": "al2023-ami-minimal-2023.1.20230912.0-kernel-6.1-arm64" } }, + "ami-0f29128bcec495a39": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f29128bcec495a39", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f29128bcec495a39" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0f2e5933bd108d90a": { "Value": { "ecs_agent_version": "1.81.1", @@ -69925,31 +72697,67 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-arm64" } }, + "ami-0ff89dc8e3f75f9ac": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff89dc8e3f75f9ac", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff89dc8e3f75f9ac" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f9923fa44a389ffb", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-0f29128bcec495a39", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f9923fa44a389ffb" + "Value": "ami-0f29128bcec495a39" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -69958,7 +72766,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a81316c815a35c2b", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a81316c815a35c2b" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-0a81316c815a35c2b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a81316c815a35c2b", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a81316c815a35c2b" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a81316c815a35c2b", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a81316c815a35c2b" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -72339,6 +75257,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fa2e62574a2d44f1", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fa2e62574a2d44f1" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5e046003ce4f920", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5e046003ce4f920" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03dfdfab7b0e113ce", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03dfdfab7b0e113ce" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-005375d069fffb6b5": { "Value": { "ecs_agent_version": "1.82.0", @@ -72807,6 +75833,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-03dfdfab7b0e113ce": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03dfdfab7b0e113ce", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03dfdfab7b0e113ce" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-03e3ef60527dd80ed": { "Value": { "ecs_agent_version": "1.79.1", @@ -74355,6 +77417,42 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-0c5e046003ce4f920": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5e046003ce4f920", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5e046003ce4f920" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0c71845cc3c46dad7": { "Value": { "ecs_agent_version": "1.82.4", @@ -74715,31 +77813,67 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-x86_64" } }, + "ami-0fa2e62574a2d44f1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fa2e62574a2d44f1", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fa2e62574a2d44f1" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-09a380759593805d8", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-03dfdfab7b0e113ce", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-09a380759593805d8" + "Value": "ami-03dfdfab7b0e113ce" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -74748,35 +77882,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-074fbf900bb006d87", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0572f35fb885fbf25", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-074fbf900bb006d87" + "Value": "ami-0572f35fb885fbf25" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -74785,7 +77919,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json b/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json index f731d3230967..48023ca4a4ed 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-south-2.json @@ -508,6 +508,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20230501.0-x86_64-ebs" } }, + "ami-09ca1d465a58cbb27": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-09ca1d465a58cbb27", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-09ca1d465a58cbb27" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-09de542d5dc136db6": { "Value": { "ecs_agent_version": "1.51.0", @@ -1948,13 +1984,49 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-09ca1d465a58cbb27", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-09ca1d465a58cbb27" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "recommended": { "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-077b923fe2da195d2", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-09ca1d465a58cbb27", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -1966,13 +2038,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-077b923fe2da195d2" + "Value": "ami-09ca1d465a58cbb27" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -3102,6 +3174,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-x86_64-ebs" } }, + "ami-05fd37eafb73a0c0e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05fd37eafb73a0c0e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05fd37eafb73a0c0e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-066e09c7e87350ab5": { "Value": { "ecs_agent_version": "1.89.2", @@ -4218,6 +4326,114 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-0caca59f00a76c476": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0caca59f00a76c476", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0caca59f00a76c476" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0ce70d76d0f544a10": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ce70d76d0f544a10", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ce70d76d0f544a10" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0cea675aa16cf8535": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cea675aa16cf8535", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cea675aa16cf8535" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0cf3ba5a12277407f": { "Value": { "ecs_agent_version": "1.86.3", @@ -8106,6 +8322,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cea675aa16cf8535", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cea675aa16cf8535" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0caca59f00a76c476", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0caca59f00a76c476" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ce70d76d0f544a10", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ce70d76d0f544a10" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05fd37eafb73a0c0e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05fd37eafb73a0c0e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-0001e0d7704c1248b": { "Value": { @@ -8143,6 +8503,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-arm64-ebs" } }, + "ami-004d9cf5b37d20607": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-004d9cf5b37d20607", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-004d9cf5b37d20607" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0056973be3a2b30e9": { "Value": { "ecs_agent_version": "1.70.2", @@ -8503,6 +8899,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230822.0-arm64-ebs" } }, + "ami-0370cbf5027580402": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0370cbf5027580402", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0370cbf5027580402" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-038bcab9a12458aa8": { "Value": { "ecs_agent_version": "1.78.0", @@ -8647,6 +9079,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231116.0-arm64-ebs" } }, + "ami-03ec09ad05fd3ead5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03ec09ad05fd3ead5", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03ec09ad05fd3ead5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-040e11e5688282684": { "Value": { "ecs_agent_version": "1.70.0", @@ -9043,6 +9511,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230221.0-arm64-ebs" } }, + "ami-06f27ac17a72f4c51": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06f27ac17a72f4c51", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06f27ac17a72f4c51" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-071b1aca06a129d18": { "Value": { "ecs_agent_version": "1.71.0", @@ -13939,31 +14443,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-004d9cf5b37d20607", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-004d9cf5b37d20607" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06f27ac17a72f4c51", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06f27ac17a72f4c51" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0370cbf5027580402", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0370cbf5027580402" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03ec09ad05fd3ead5", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03ec09ad05fd3ead5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0d34de56cac572082", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-03ec09ad05fd3ead5", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0d34de56cac572082" + "Value": "ami-03ec09ad05fd3ead5" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -13972,7 +14620,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -14805,6 +15453,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240329.0-x86_64-ebs" } }, + "ami-0928eed5248d95245": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0928eed5248d95245", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0928eed5248d95245" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09922665d293be30b": { "Value": { "ecs_agent_version": "1.86.0", @@ -14985,6 +15669,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" } }, + "ami-0c3e0ce158dbf88cb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c3e0ce158dbf88cb", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c3e0ce158dbf88cb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c4ab80af7a5e4931": { "Value": { "ecs_agent_version": "1.86.3", @@ -15093,6 +15813,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0cb9d73b51e14968f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cb9d73b51e14968f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cb9d73b51e14968f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0cbf25fc26f526500": { "Value": { "ecs_agent_version": "1.85.1", @@ -15309,6 +16065,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-x86_64-ebs" } }, + "ami-0e1731767a3b0025b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e1731767a3b0025b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e1731767a3b0025b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0eb1926bb89187326": { "Value": { "ecs_agent_version": "1.89.3", @@ -17289,31 +18081,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c3e0ce158dbf88cb", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c3e0ce158dbf88cb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e1731767a3b0025b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e1731767a3b0025b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0928eed5248d95245", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0928eed5248d95245" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cb9d73b51e14968f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cb9d73b51e14968f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0fe358e53f82a8c85", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0cb9d73b51e14968f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0fe358e53f82a8c85" + "Value": "ami-0cb9d73b51e14968f" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -17322,7 +18258,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -18443,6 +19379,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240306.2-x86_64-ebs" } }, + "ami-0b58dfc91341fa442": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b58dfc91341fa442", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b58dfc91341fa442" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b82febd6dfd14d5a": { "Value": { "ecs_agent_version": "1.82.2", @@ -18695,6 +19667,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0db3b39535e608fa2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0db3b39535e608fa2", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0db3b39535e608fa2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0dfdfc44db41b87fc": { "Value": { "ecs_agent_version": "1.89.3", @@ -18767,6 +19775,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0e63d17d414ab45d4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e63d17d414ab45d4", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e63d17d414ab45d4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e6cbc272940831f7": { "Value": { "ecs_agent_version": "1.86.3", @@ -18803,6 +19847,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-0e6f00def2aa55366": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e6f00def2aa55366", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e6f00def2aa55366" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0eb3df507f78317a0": { "Value": { "ecs_agent_version": "1.87.1", @@ -20639,31 +21719,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e6f00def2aa55366", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e6f00def2aa55366" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b58dfc91341fa442", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b58dfc91341fa442" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e63d17d414ab45d4", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e63d17d414ab45d4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0db3b39535e608fa2", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0db3b39535e608fa2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0dfdfc44db41b87fc", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0db3b39535e608fa2", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0dfdfc44db41b87fc" + "Value": "ami-0db3b39535e608fa2" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -20672,7 +21896,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -21001,6 +22225,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231116.0-x86_64-ebs" } }, + "ami-01c42e10a77e4b51b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c42e10a77e4b51b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c42e10a77e4b51b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-01c6033c968739b8e": { "Value": { "ecs_agent_version": "1.82.2", @@ -21181,6 +22441,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230221.0-x86_64-ebs" } }, + "ami-029a59e887c69e4b9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-029a59e887c69e4b9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-029a59e887c69e4b9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-02ab24bbb70d8b23d": { "Value": { "ecs_agent_version": "1.86.2", @@ -21829,6 +23125,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-060045cfda216c160": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060045cfda216c160", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060045cfda216c160" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-064ac710aa70382b8": { "Value": { "ecs_agent_version": "1.71.1", @@ -22153,6 +23485,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-0728d1df74ac629d1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0728d1df74ac629d1", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0728d1df74ac629d1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-073258fb4096a768c": { "Value": { "ecs_agent_version": "1.88.0", @@ -26221,6 +27589,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c42e10a77e4b51b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c42e10a77e4b51b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0728d1df74ac629d1", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0728d1df74ac629d1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-060045cfda216c160", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-060045cfda216c160" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-029a59e887c69e4b9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-029a59e887c69e4b9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-00127c47a2c4dde86": { "Value": { @@ -27014,6 +28526,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-arm64-ebs" } }, + "ami-03c8c635a069451e5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03c8c635a069451e5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03c8c635a069451e5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-04c002fab83af89e9": { "Value": { "ecs_agent_version": "1.82.1", @@ -28022,6 +29570,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-arm64-ebs" } }, + "ami-0a79c1ffd796c6b56": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a79c1ffd796c6b56", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a79c1ffd796c6b56" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0ac03f5b2010ec3cc": { "Value": { "ecs_agent_version": "1.89.1", @@ -28274,6 +29858,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230515.0-arm64-ebs" } }, + "ami-0c45418a6cb7c66e9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c45418a6cb7c66e9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c45418a6cb7c66e9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0c4b4e8149ac6eaa8": { "Value": { "ecs_agent_version": "1.69.0", @@ -28994,6 +30614,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-arm64-ebs" } }, + "ami-0ff7220bf17ebf114": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff7220bf17ebf114", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff7220bf17ebf114" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-arm64-ebs": { "Value": { "ecs_agent_version": "1.68.0", @@ -31766,31 +33422,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03c8c635a069451e5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03c8c635a069451e5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ff7220bf17ebf114", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ff7220bf17ebf114" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c45418a6cb7c66e9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c45418a6cb7c66e9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a79c1ffd796c6b56", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a79c1ffd796c6b56" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0a4bcac5b8a1a74df", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0a79c1ffd796c6b56", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0a4bcac5b8a1a74df" + "Value": "ami-0a79c1ffd796c6b56" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -31799,7 +33599,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -32452,6 +34252,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-06652bbd9b22d165a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06652bbd9b22d165a", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06652bbd9b22d165a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-06dfd4b0ff13189f8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06dfd4b0ff13189f8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06dfd4b0ff13189f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-070c0a6849979281a": { "Value": { "ecs_agent_version": "1.82.4", @@ -32704,6 +34576,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-09783489e9feb7553": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09783489e9feb7553", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09783489e9feb7553" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-099e7645033687302": { "Value": { "ecs_agent_version": "1.89.1", @@ -32992,6 +34900,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-0b7cf670d234eb989": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7cf670d234eb989", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7cf670d234eb989" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0bb1b2ee3ea3612c8": { "Value": { "ecs_agent_version": "1.89.2", @@ -34900,31 +36844,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7cf670d234eb989", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7cf670d234eb989" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06652bbd9b22d165a", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06652bbd9b22d165a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06dfd4b0ff13189f8", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06dfd4b0ff13189f8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09783489e9feb7553", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09783489e9feb7553" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0f31d8bfa05cc350d", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-09783489e9feb7553", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0f31d8bfa05cc350d" + "Value": "ami-09783489e9feb7553" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -34933,7 +37021,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -35118,6 +37206,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-01de5098b6820758a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01de5098b6820758a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01de5098b6820758a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-01f3d2f54144d316b": { "Value": { "ecs_agent_version": "1.82.2", @@ -35694,6 +37818,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-07f441718278d9cd5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f441718278d9cd5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f441718278d9cd5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-085f89cd8c5c89ab0": { "Value": { "ecs_agent_version": "1.85.0", @@ -35838,6 +37998,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" } }, + "ami-09bc8c5a624aa4a75": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09bc8c5a624aa4a75", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09bc8c5a624aa4a75" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-09c911389dc52da40": { "Value": { "ecs_agent_version": "1.86.3", @@ -36054,6 +38250,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-x86_64-ebs" } }, + "ami-0b7d6d7eb518eb295": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7d6d7eb518eb295", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7d6d7eb518eb295" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c7344f8180584eec": { "Value": { "ecs_agent_version": "1.87.0", @@ -38034,31 +40266,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b7d6d7eb518eb295", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b7d6d7eb518eb295" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f441718278d9cd5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f441718278d9cd5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09bc8c5a624aa4a75", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09bc8c5a624aa4a75" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01de5098b6820758a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01de5098b6820758a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0cfb6c5931199f88b", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-01de5098b6820758a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0cfb6c5931199f88b" + "Value": "ami-01de5098b6820758a" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -38067,35 +40443,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c91459e5972c4aa9", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-029a59e887c69e4b9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c91459e5972c4aa9" + "Value": "ami-029a59e887c69e4b9" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -38104,35 +40480,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0e6458482e7be4a3e", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-05fd37eafb73a0c0e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0e6458482e7be4a3e" + "Value": "ami-05fd37eafb73a0c0e" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -38141,7 +40517,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -40522,6 +42898,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e8f804e8607cbacd", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e8f804e8607cbacd" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-027c02ffc76613757", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-027c02ffc76613757" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02a51fd6b6beaa671", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02a51fd6b6beaa671" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0022311de5d53f507": { "Value": { "ecs_agent_version": "1.79.1", @@ -40882,6 +43366,78 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-027c02ffc76613757": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-027c02ffc76613757", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-027c02ffc76613757" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "ami-02a51fd6b6beaa671": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02a51fd6b6beaa671", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02a51fd6b6beaa671" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0307d6b15003104d5": { "Value": { "ecs_agent_version": "1.82.0", @@ -42646,6 +45202,42 @@ "Value": "al2023-ami-minimal-2023.5.20240819.0-kernel-6.1-x86_64" } }, + "ami-0e8f804e8607cbacd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e8f804e8607cbacd", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e8f804e8607cbacd" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0e9bbac871297b999": { "Value": { "ecs_agent_version": "1.86.0", @@ -45275,6 +47867,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ea64dcf73361bab9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ea64dcf73361bab9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0faa7e1d7ae7df293", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0faa7e1d7ae7df293" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-071afdb3cf3f16f4c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-071afdb3cf3f16f4c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-00126a0f28a0a3726": { "Value": { "ecs_agent_version": "1.81.0", @@ -46355,6 +49055,42 @@ "Value": "al2023-ami-minimal-2023.2.20231113.0-kernel-6.1-arm64" } }, + "ami-071afdb3cf3f16f4c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-071afdb3cf3f16f4c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-071afdb3cf3f16f4c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-079bedbc7456da147": { "Value": { "ecs_agent_version": "1.83.0", @@ -47399,6 +50135,42 @@ "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-arm64" } }, + "ami-0ea64dcf73361bab9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ea64dcf73361bab9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ea64dcf73361bab9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-0eca73621de261bc7": { "Value": { "ecs_agent_version": "1.71.2", @@ -47651,31 +50423,67 @@ "Value": "al2023-ami-minimal-2023.0.20230607.0-kernel-6.1-arm64" } }, + "ami-0faa7e1d7ae7df293": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0faa7e1d7ae7df293", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0faa7e1d7ae7df293" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-044544b33649e4dbe", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-071afdb3cf3f16f4c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-044544b33649e4dbe" + "Value": "ami-071afdb3cf3f16f4c" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -47684,7 +50492,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02713dd8052f1e4c3", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02713dd8052f1e4c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-02713dd8052f1e4c3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02713dd8052f1e4c3", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02713dd8052f1e4c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02713dd8052f1e4c3", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02713dd8052f1e4c3" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -49165,6 +52083,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fac737b1ecdff3dd", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fac737b1ecdff3dd" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-059c6c551dd9863b5", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-059c6c551dd9863b5" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-090399ac71b4f877e", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-090399ac71b4f877e" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-00f097003d5144452": { "Value": { "ecs_agent_version": "1.87.1", @@ -49669,6 +52695,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-059c6c551dd9863b5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-059c6c551dd9863b5", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-059c6c551dd9863b5" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-05d8ed53ffc430958": { "Value": { "ecs_agent_version": "1.84.0", @@ -49813,6 +52875,42 @@ "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" } }, + "ami-090399ac71b4f877e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-090399ac71b4f877e", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-090399ac71b4f877e" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-092c4a5ff56117861": { "Value": { "ecs_agent_version": "1.88.0", @@ -50605,6 +53703,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-0fac737b1ecdff3dd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fac737b1ecdff3dd", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fac737b1ecdff3dd" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0fc2d65f77136f413": { "Value": { "ecs_agent_version": "1.87.0", @@ -50643,29 +53777,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ccd2313c236dc039", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-090399ac71b4f877e", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ccd2313c236dc039" + "Value": "ami-090399ac71b4f877e" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -50674,35 +53808,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ea24f23e4345e18d", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-02a51fd6b6beaa671", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ea24f23e4345e18d" + "Value": "ami-02a51fd6b6beaa671" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -50711,7 +53845,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } } diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json b/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json index a3dbe6d1507a..eaf97e36ed23 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-southeast-1.json @@ -1228,6 +1228,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20211015.1-x86_64-ebs" } }, + "ami-0e3482b8bd1262d59": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0e3482b8bd1262d59", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0e3482b8bd1262d59" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-0e40612a28b34d074": { "Value": { "ecs_agent_version": "1.51.0", @@ -3900,6 +3936,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0e3482b8bd1262d59", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0e3482b8bd1262d59" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.a-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.18.0", @@ -4576,9 +4648,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-07c2124e08654f931", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-0e3482b8bd1262d59", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4590,13 +4662,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-07c2124e08654f931" + "Value": "ami-0e3482b8bd1262d59" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -5654,6 +5726,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-041af6780897cc503": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-041af6780897cc503", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-041af6780897cc503" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-045072b7ebd2e0339": { "Value": { "ecs_agent_version": "1.66.2", @@ -5870,6 +5978,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-04f3fa3c93a5c1bc1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f3fa3c93a5c1bc1", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f3fa3c93a5c1bc1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-04ffdfce4b6b1edab": { "Value": { "ecs_agent_version": "1.82.1", @@ -7094,6 +7238,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211103.0-x86_64-ebs" } }, + "ami-09f4d88304a8a681e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09f4d88304a8a681e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09f4d88304a8a681e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0a1409bf94faa559f": { "Value": { "ecs_agent_version": "1.71.0", @@ -7886,6 +8066,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230612.0-x86_64-ebs" } }, + "ami-0de1dcbed1a4d794a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0de1dcbed1a4d794a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0de1dcbed1a4d794a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e7cf0e02ddae81a9": { "Value": { "ecs_agent_version": "1.83.0", @@ -14070,6 +14286,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0de1dcbed1a4d794a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0de1dcbed1a4d794a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-041af6780897cc503", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-041af6780897cc503" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09f4d88304a8a681e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09f4d88304a8a681e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f3fa3c93a5c1bc1", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f3fa3c93a5c1bc1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-001e0c18eb90b2568": { "Value": { @@ -14467,6 +14827,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220606.1-arm64-ebs" } }, + "ami-01c871bd127994f6c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c871bd127994f6c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c871bd127994f6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-01cad20f15d3f7d41": { "Value": { "ecs_agent_version": "1.57.0", @@ -16195,6 +16591,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-arm64-ebs" } }, + "ami-0969b5a02f80e2964": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0969b5a02f80e2964", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0969b5a02f80e2964" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-09965235741cea1a7": { "Value": { "ecs_agent_version": "1.85.3", @@ -17491,6 +17923,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-arm64-ebs" } }, + "ami-0ec829f13a1ae96cd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec829f13a1ae96cd", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec829f13a1ae96cd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0ed9c3ebaf2a2381a": { "Value": { "ecs_agent_version": "1.85.1", @@ -17527,6 +17995,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-arm64-ebs" } }, + "ami-0f0e294db388d2c1a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f0e294db388d2c1a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f0e294db388d2c1a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0f170fcf9653bf11d": { "Value": { "ecs_agent_version": "1.74.1", @@ -22747,31 +23251,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01c871bd127994f6c", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01c871bd127994f6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ec829f13a1ae96cd", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ec829f13a1ae96cd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f0e294db388d2c1a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f0e294db388d2c1a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0969b5a02f80e2964", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0969b5a02f80e2964" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0598448c7e96c6bcd", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0969b5a02f80e2964", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0598448c7e96c6bcd" + "Value": "ami-0969b5a02f80e2964" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -22780,7 +23428,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -23829,6 +24477,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-x86_64-ebs" } }, + "ami-039fdfad8fd591445": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-039fdfad8fd591445", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-039fdfad8fd591445" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-03aefcb45bf124028": { "Value": { "ecs_agent_version": "1.83.0", @@ -25125,6 +25809,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240318.0-x86_64-ebs" } }, + "ami-09db0c306d94e302d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09db0c306d94e302d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09db0c306d94e302d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0a02a199042d2dd03": { "Value": { "ecs_agent_version": "1.74.1", @@ -25341,6 +26061,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-0b5730c969afa930e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b5730c969afa930e", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b5730c969afa930e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0b970016d0d9ff8f2": { "Value": { "ecs_agent_version": "1.60.1", @@ -25737,6 +26493,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-x86_64-ebs" } }, + "ami-0d45e70603fc4a79c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d45e70603fc4a79c", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d45e70603fc4a79c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0d8758d111ba195ab": { "Value": { "ecs_agent_version": "1.80.0", @@ -32189,31 +32981,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-039fdfad8fd591445", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-039fdfad8fd591445" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09db0c306d94e302d", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09db0c306d94e302d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d45e70603fc4a79c", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d45e70603fc4a79c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b5730c969afa930e", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b5730c969afa930e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-033f6315bca06b2b7", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b5730c969afa930e", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-033f6315bca06b2b7" + "Value": "ami-0b5730c969afa930e" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -32222,7 +33158,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -32515,6 +33451,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-00fff2eeea9437837": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00fff2eeea9437837", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00fff2eeea9437837" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-013e1d4bbdf263b6f": { "Value": { "ecs_agent_version": "1.61.3", @@ -35071,6 +36043,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0c0e17329b4f98609": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c0e17329b4f98609", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c0e17329b4f98609" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c6e9ed7f22d7f234": { "Value": { "ecs_agent_version": "1.74.1", @@ -35431,6 +36439,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-x86_64-ebs" } }, + "ami-0deaa9a426a008fbe": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0deaa9a426a008fbe", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0deaa9a426a008fbe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e099da1a1268ed7f": { "Value": { "ecs_agent_version": "1.80.0", @@ -35575,6 +36619,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" } }, + "ami-0f24a2f10d49196b1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f24a2f10d49196b1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f24a2f10d49196b1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0f44fdc7a6d8636b8": { "Value": { "ecs_agent_version": "1.86.0", @@ -40467,31 +41547,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c0e17329b4f98609", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c0e17329b4f98609" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0deaa9a426a008fbe", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0deaa9a426a008fbe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f24a2f10d49196b1", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f24a2f10d49196b1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00fff2eeea9437837", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00fff2eeea9437837" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b72ce8a3f5c29a7e", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-00fff2eeea9437837", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b72ce8a3f5c29a7e" + "Value": "ami-00fff2eeea9437837" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -40500,7 +41724,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -40649,6 +41873,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-013766bd8d9bf1eaa": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-013766bd8d9bf1eaa", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-013766bd8d9bf1eaa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-017de0d19a90b728d": { "Value": { "ecs_agent_version": "1.74.1", @@ -40685,6 +41945,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230727.0-x86_64-ebs" } }, + "ami-01adcf6d3d27383a3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01adcf6d3d27383a3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01adcf6d3d27383a3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0210f4d072a0aa24d": { "Value": { "ecs_agent_version": "1.84.0", @@ -41441,6 +42737,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230320.0-x86_64-ebs" } }, + "ami-057fe906eec775e0a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057fe906eec775e0a", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057fe906eec775e0a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-05ba46ee093104a5a": { "Value": { "ecs_agent_version": "1.82.1", @@ -42485,6 +43817,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "ami-0b9d178ee92a555b9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b9d178ee92a555b9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b9d178ee92a555b9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b9d27eb102c9f32f": { "Value": { "ecs_agent_version": "1.76.0", @@ -46049,6 +47417,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b9d178ee92a555b9", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b9d178ee92a555b9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057fe906eec775e0a", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057fe906eec775e0a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-013766bd8d9bf1eaa", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-013766bd8d9bf1eaa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01adcf6d3d27383a3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01adcf6d3d27383a3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-003375b60ebe663bc": { "Value": { @@ -46770,6 +48282,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230822.0-arm64-ebs" } }, + "ami-0290a5d042f3a4e8f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0290a5d042f3a4e8f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0290a5d042f3a4e8f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-02fa3dbb74a453084": { "Value": { "ecs_agent_version": "1.89.3", @@ -46878,6 +48426,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-arm64-ebs" } }, + "ami-03a773aa54a47c49d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03a773aa54a47c49d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03a773aa54a47c49d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-03f6664e98628ce3d": { "Value": { "ecs_agent_version": "1.76.0", @@ -47274,6 +48858,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-arm64-ebs" } }, + "ami-058e67940f68a2a92": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-058e67940f68a2a92", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-058e67940f68a2a92" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-05a6f08a8679f9c94": { "Value": { "ecs_agent_version": "1.68.2", @@ -47922,6 +49542,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240109.0-arm64-ebs" } }, + "ami-0ac34f330c4c50e81": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ac34f330c4c50e81", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ac34f330c4c50e81" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0b03960435af0458a": { "Value": { "ecs_agent_version": "1.79.2", @@ -51594,31 +53250,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0290a5d042f3a4e8f", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0290a5d042f3a4e8f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03a773aa54a47c49d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03a773aa54a47c49d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-058e67940f68a2a92", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-058e67940f68a2a92" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ac34f330c4c50e81", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ac34f330c4c50e81" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-06443ab3f5502b9c3", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0ac34f330c4c50e81", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-06443ab3f5502b9c3" + "Value": "ami-0ac34f330c4c50e81" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -51627,7 +53427,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" } } }, @@ -52748,6 +54548,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-x86_64-ebs" } }, + "ami-0b817faa8dade18e4": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b817faa8dade18e4", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b817faa8dade18e4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0bb9a87fd82564ce9": { "Value": { "ecs_agent_version": "1.85.0", @@ -52820,6 +54656,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0c26a1b26c9a48d3d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c26a1b26c9a48d3d", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c26a1b26c9a48d3d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c2b786b676fb5f59": { "Value": { "ecs_agent_version": "1.89.1", @@ -52856,6 +54728,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0c5a6b1577dab026f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5a6b1577dab026f", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5a6b1577dab026f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c67d199fa888a026": { "Value": { "ecs_agent_version": "1.87.0", @@ -52928,6 +54836,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" } }, + "ami-0cc5ad7bb1d1e580f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc5ad7bb1d1e580f", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc5ad7bb1d1e580f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0d79f9671ab37e3c6": { "Value": { "ecs_agent_version": "1.86.3", @@ -54728,31 +56672,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c26a1b26c9a48d3d", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c26a1b26c9a48d3d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5a6b1577dab026f", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5a6b1577dab026f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cc5ad7bb1d1e580f", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cc5ad7bb1d1e580f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b817faa8dade18e4", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b817faa8dade18e4" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0a03513350f08b2bd", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-0b817faa8dade18e4", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0a03513350f08b2bd" + "Value": "ami-0b817faa8dade18e4" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -54761,7 +56849,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -54874,6 +56962,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-01771b4e0938a69e5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01771b4e0938a69e5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01771b4e0938a69e5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0184f964b566e7f09": { "Value": { "ecs_agent_version": "1.82.2", @@ -55990,6 +58114,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-0b09b99e47e9692f1": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b09b99e47e9692f1", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b09b99e47e9692f1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ba00a57f9a169b2a": { "Value": { "ecs_agent_version": "1.86.2", @@ -56170,6 +58330,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-0d93d701538c26260": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d93d701538c26260", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d93d701538c26260" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0e524a48cd668ebeb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e524a48cd668ebeb", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e524a48cd668ebeb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0e7be416a84af0888": { "Value": { "ecs_agent_version": "1.89.2", @@ -57862,31 +60094,175 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e524a48cd668ebeb", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e524a48cd668ebeb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d93d701538c26260", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d93d701538c26260" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b09b99e47e9692f1", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b09b99e47e9692f1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01771b4e0938a69e5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01771b4e0938a69e5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0884a04d4fa81cb0a", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-01771b4e0938a69e5", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0884a04d4fa81cb0a" + "Value": "ami-01771b4e0938a69e5" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -57895,35 +60271,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0b52dceabb6e83aec", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-01adcf6d3d27383a3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0b52dceabb6e83aec" + "Value": "ami-01adcf6d3d27383a3" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -57932,35 +60308,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-00f4aafa990072233", - "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", - "image_version": "2.0.20250129", + "image_id": "ami-04f3fa3c93a5c1bc1", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-00f4aafa990072233" + "Value": "ami-04f3fa3c93a5c1bc1" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20250129" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -57969,7 +60345,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -62264,6 +64640,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f9ce82070df3b6a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f9ce82070df3b6a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04ed2ef90638ef96e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04ed2ef90638ef96e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4ab5bf84166373a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4ab5bf84166373a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-004a1c76ee8e91c7c": { "Value": { "ecs_agent_version": "1.74.1", @@ -62912,6 +65396,78 @@ "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" } }, + "ami-04ed2ef90638ef96e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04ed2ef90638ef96e", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04ed2ef90638ef96e" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "ami-04f9ce82070df3b6a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f9ce82070df3b6a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f9ce82070df3b6a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-05955776db5f2f840": { "Value": { "ecs_agent_version": "1.70.1", @@ -64568,6 +67124,42 @@ "Value": "al2023-ami-minimal-2023.3.20240131.0-kernel-6.1-x86_64" } }, + "ami-0f4ab5bf84166373a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4ab5bf84166373a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4ab5bf84166373a" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0f6d324b7c10077b5": { "Value": { "ecs_agent_version": "1.78.0", @@ -67017,6 +69609,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb86540425b6f85f", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb86540425b6f85f" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0334fe548017b95fc", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0334fe548017b95fc" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02672c9e282d0afdb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02672c9e282d0afdb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-002105a5c70977e51": { "Value": { "ecs_agent_version": "1.82.0", @@ -67485,6 +70185,42 @@ "Value": "al2023-ami-minimal-2023.2.20231113.0-kernel-6.1-arm64" } }, + "ami-02672c9e282d0afdb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02672c9e282d0afdb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02672c9e282d0afdb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0290cefd014c6efe7": { "Value": { "ecs_agent_version": "1.82.4", @@ -67629,6 +70365,42 @@ "Value": "al2023-ami-minimal-2023.4.20240513.0-kernel-6.1-arm64" } }, + "ami-0334fe548017b95fc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0334fe548017b95fc", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0334fe548017b95fc" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-0382a37b59c70ae41": { "Value": { "ecs_agent_version": "1.86.2", @@ -68745,6 +71517,42 @@ "Value": "al2023-ami-minimal-2023.5.20240903.0-kernel-6.1-arm64" } }, + "ami-0bb86540425b6f85f": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bb86540425b6f85f", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bb86540425b6f85f" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, "ami-0bd592fb5d1d4141d": { "Value": { "ecs_agent_version": "1.89.2", @@ -69395,29 +72203,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-093d4a6f7f6350149", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", - "image_version": "2023.0.20250129", + "image_id": "ami-02672c9e282d0afdb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-093d4a6f7f6350149" + "Value": "ami-02672c9e282d0afdb" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -69426,7 +72234,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07878c1c0df34447a", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07878c1c0df34447a" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-07878c1c0df34447a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07878c1c0df34447a", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07878c1c0df34447a" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07878c1c0df34447a", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07878c1c0df34447a" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -71807,6 +74725,114 @@ "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0322f25e889eb6a49", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0322f25e889eb6a49" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c33cf47326af4bf0", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c33cf47326af4bf0" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e3ce4198a45461c8", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e3ce4198a45461c8" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-000acc9e1be48cb07": { "Value": { "ecs_agent_version": "1.86.3", @@ -72311,6 +75337,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-0322f25e889eb6a49": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0322f25e889eb6a49", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0322f25e889eb6a49" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-0348182a4f998bffa": { "Value": { "ecs_agent_version": "1.89.3", @@ -73571,6 +76633,42 @@ "Value": "al2023-ami-minimal-2023.5.20240916.0-kernel-6.1-x86_64" } }, + "ami-0c33cf47326af4bf0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c33cf47326af4bf0", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c33cf47326af4bf0" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "ami-0c50c88b0c709f084": { "Value": { "ecs_agent_version": "1.79.0", @@ -73787,6 +76885,42 @@ "Value": "al2023-ami-minimal-2023.5.20240708.0-kernel-6.1-x86_64" } }, + "ami-0e3ce4198a45461c8": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e3ce4198a45461c8", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e3ce4198a45461c8" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0e60d311f5713062d": { "Value": { "ecs_agent_version": "1.82.3", @@ -74185,29 +77319,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0348182a4f998bffa", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0e3ce4198a45461c8", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0348182a4f998bffa" + "Value": "ami-0e3ce4198a45461c8" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -74216,35 +77350,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.89.3", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-062827b3401298389", - "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", - "image_version": "2023.0.20250129", + "image_id": "ami-0f4ab5bf84166373a", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.89.3" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-062827b3401298389" + "Value": "ami-0f4ab5bf84166373a" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20250129" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -74253,7 +77387,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, diff --git a/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json b/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json index 1dc04037ecdb..cfbb1ffd20db 100644 --- a/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json +++ b/moto/ssm/resources/ecs/optimized_amis/ap-southeast-2.json @@ -112,6 +112,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "ami-0294f97a4b059caad": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0294f97a4b059caad", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0294f97a4b059caad" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "ami-03924f91032cd4ef2": { "Value": { "ecs_agent_version": "1.51.0", @@ -3900,6 +3936,42 @@ "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" } }, + "amzn-ami-2018.03.20250224-amazon-ecs-optimized": { + "Value": { + "ecs_agent_version": "1.51.0", + "ecs_runtime_version": "Docker version 20.10.13", + "image_id": "ami-0294f97a4b059caad", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", + "os": "Amazon Linux", + "schema_version": 1, + "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.51.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 20.10.13" + }, + "image_id": { + "Value": "ami-0294f97a4b059caad" + }, + "image_name": { + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" + }, + "image_version": { + "Value": "2018.03.20250224" + }, + "os": { + "Value": "Amazon Linux" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" + } + }, "amzn-ami-2018.03.a-amazon-ecs-optimized": { "Value": { "ecs_agent_version": "1.18.0", @@ -4576,9 +4648,9 @@ "Value": { "ecs_agent_version": "1.51.0", "ecs_runtime_version": "Docker version 20.10.13", - "image_id": "ami-0f33a6f47c7a422dd", - "image_name": "amzn-ami-2018.03.20241010-amazon-ecs-optimized", - "image_version": "2018.03.20241010", + "image_id": "ami-0294f97a4b059caad", + "image_name": "amzn-ami-2018.03.20250224-amazon-ecs-optimized", + "image_version": "2018.03.20250224", "os": "Amazon Linux", "schema_version": 1, "source_image_name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs" @@ -4590,13 +4662,13 @@ "Value": "Docker version 20.10.13" }, "image_id": { - "Value": "ami-0f33a6f47c7a422dd" + "Value": "ami-0294f97a4b059caad" }, "image_name": { - "Value": "amzn-ami-2018.03.20241010-amazon-ecs-optimized" + "Value": "amzn-ami-2018.03.20250224-amazon-ecs-optimized" }, "image_version": { - "Value": "2018.03.20241010" + "Value": "2018.03.20250224" }, "os": { "Value": "Amazon Linux" @@ -4862,6 +4934,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-x86_64-ebs" } }, + "ami-016941c4cd7fd9039": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-016941c4cd7fd9039", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-016941c4cd7fd9039" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-016dfbb93297168e3": { "Value": { "ecs_agent_version": "1.66.2", @@ -5366,6 +5474,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220426.0-x86_64-ebs" } }, + "ami-03016f4af05fcb4fd": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03016f4af05fcb4fd", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03016f4af05fcb4fd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-030ae4670412c0423": { "Value": { "ecs_agent_version": "1.77.0", @@ -5942,6 +6086,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230418.0-x86_64-ebs" } }, + "ami-04f869e6c7dc8b348": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f869e6c7dc8b348", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f869e6c7dc8b348" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0523ffd1be8111018": { "Value": { "ecs_agent_version": "1.80.0", @@ -6302,6 +6482,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-07054bb3bfd628caa": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07054bb3bfd628caa", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07054bb3bfd628caa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "ami-0749e9fa20827526b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0749e9fa20827526b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0749e9fa20827526b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0775ca431543b2151": { "Value": { "ecs_agent_version": "1.76.0", @@ -6482,6 +6734,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-x86_64-ebs" } }, + "ami-0909befe634e1f7f2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0909befe634e1f7f2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0909befe634e1f7f2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-094732052c326c50f": { "Value": { "ecs_agent_version": "1.81.1", @@ -6590,6 +6878,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240329.0-x86_64-ebs" } }, + "ami-099cd33326a0aa99e": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-099cd33326a0aa99e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-099cd33326a0aa99e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-09bef757bca18281e": { "Value": { "ecs_agent_version": "1.67.1", @@ -7058,6 +7382,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230612.0-x86_64-ebs" } }, + "ami-0af3725550d3f1c45": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0af3725550d3f1c45", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0af3725550d3f1c45" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0b1fafc145aae4126": { "Value": { "ecs_agent_version": "1.79.2", @@ -7202,6 +7562,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241001.0-x86_64-ebs" } }, + "ami-0be7d6694879afe38": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be7d6694879afe38", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be7d6694879afe38" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, "ami-0bec52d270afdcd9b": { "Value": { "ecs_agent_version": "1.87.1", @@ -7526,6 +7922,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-0d9d4bdcd18bd80ee": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d9d4bdcd18bd80ee", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d9d4bdcd18bd80ee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0dd1294c5a7395c06": { "Value": { "ecs_agent_version": "1.68.2", @@ -7886,6 +8318,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211201.0-x86_64-ebs" } }, + "ami-0edae1f47e88c618e": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0edae1f47e88c618e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0edae1f47e88c618e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-0f2b8e543486a6ddf": { "Value": { "ecs_agent_version": "1.85.0", @@ -7994,6 +8462,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240610.1-x86_64-ebs" } }, + "ami-0f625b79e81434e3a": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f625b79e81434e3a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f625b79e81434e3a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, "ami-0f83da25c30ad497b": { "Value": { "ecs_agent_version": "1.88.0", @@ -13494,6 +13998,438 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0edae1f47e88c618e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0edae1f47e88c618e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03016f4af05fcb4fd", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03016f4af05fcb4fd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f625b79e81434e3a", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f625b79e81434e3a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-016941c4cd7fd9039", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-016941c4cd7fd9039" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-099cd33326a0aa99e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-099cd33326a0aa99e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0af3725550d3f1c45", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0af3725550d3f1c45" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07054bb3bfd628caa", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07054bb3bfd628caa" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be7d6694879afe38", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be7d6694879afe38" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0909befe634e1f7f2", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0909befe634e1f7f2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0749e9fa20827526b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0749e9fa20827526b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04f869e6c7dc8b348", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04f869e6c7dc8b348" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d9d4bdcd18bd80ee", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d9d4bdcd18bd80ee" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { "ami-002a0922db693756a": { "Value": { @@ -13639,6 +14575,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-arm64-ebs" } }, + "ami-008d6019f015f03ca": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-008d6019f015f03ca", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-008d6019f015f03ca" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, "ami-0094c194b41635bb7": { "Value": { "ecs_agent_version": "1.76.0", @@ -13675,6 +14647,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230906.0-arm64-ebs" } }, + "ami-00e214ec81d4f9542": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00e214ec81d4f9542", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00e214ec81d4f9542" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, "ami-00ffb472846333069": { "Value": { "ecs_agent_version": "1.82.3", @@ -13747,6 +14755,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220912.1-arm64-ebs" } }, + "ami-0172567257289167b": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0172567257289167b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0172567257289167b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, "ami-01c28ce901dccfb58": { "Value": { "ecs_agent_version": "1.88.0", @@ -14719,6 +15763,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-arm64-ebs" } }, + "ami-04b5724c448b01a84": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04b5724c448b01a84", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04b5724c448b01a84" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-04e92743242c894e9": { "Value": { "ecs_agent_version": "1.62.2", @@ -15655,6 +16735,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240318.0-arm64-ebs" } }, + "ami-08707d40bde2605e6": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08707d40bde2605e6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08707d40bde2605e6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, "ami-08715e80ab663bd74": { "Value": { "ecs_agent_version": "1.85.3", @@ -15727,6 +16843,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240709.1-arm64-ebs" } }, + "ami-08be708be28ee834b": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08be708be28ee834b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08be708be28ee834b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + } + }, "ami-08c7e19eb9ba8a811": { "Value": { "ecs_agent_version": "1.61.3", @@ -16051,6 +17203,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-arm64-ebs" } }, + "ami-09e4dabce7186ff6e": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09e4dabce7186ff6e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09e4dabce7186ff6e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + } + }, "ami-0a6bfb77c1bcf4cbb": { "Value": { "ecs_agent_version": "1.68.0", @@ -16195,6 +17383,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230418.0-arm64-ebs" } }, + "ami-0b0265acbc4e5a100": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b0265acbc4e5a100", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b0265acbc4e5a100" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0b17417858c18da84": { "Value": { "ecs_agent_version": "1.57.0", @@ -16267,6 +17491,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-arm64-ebs" } }, + "ami-0b5bb9049e3dce7ec": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b5bb9049e3dce7ec", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b5bb9049e3dce7ec" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, + "ami-0c3d2cc0a8831c827": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c3d2cc0a8831c827", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c3d2cc0a8831c827" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0c569e2f405158077": { "Value": { "ecs_agent_version": "1.65.0", @@ -16447,6 +17743,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } }, + "ami-0d03a35621cf75f82": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d03a35621cf75f82", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d03a35621cf75f82" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0d8349ec80b14381b": { "Value": { "ecs_agent_version": "1.66.2", @@ -16843,6 +18175,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-arm64-ebs" } }, + "ami-0f9e60a4631b1e8a8": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9e60a4631b1e8a8", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9e60a4631b1e8a8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, "ami-0fe2d42d4fe061564": { "Value": { "ecs_agent_version": "1.86.3", @@ -22127,31 +23495,31 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0cb0f4d6c5e4fd142", - "image_name": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0b5bb9049e3dce7ec", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0cb0f4d6c5e4fd142" + "Value": "ami-0b5bb9049e3dce7ec" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20241120-arm64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20241213-arm64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" }, "os": { "Value": "Amazon Linux 2" @@ -22162,6 +23530,438 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } + }, + "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9e60a4631b1e8a8", + "image_name": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9e60a4631b1e8a8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20241217-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08be708be28ee834b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08be708be28ee834b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250102-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0172567257289167b", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0172567257289167b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250113-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08707d40bde2605e6", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08707d40bde2605e6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250115-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00e214ec81d4f9542", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00e214ec81d4f9542" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250117-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-008d6019f015f03ca", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-008d6019f015f03ca" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250121-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09e4dabce7186ff6e", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09e4dabce7186ff6e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250129-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04b5724c448b01a84", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04b5724c448b01a84" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c3d2cc0a8831c827", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c3d2cc0a8831c827" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b0265acbc4e5a100", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b0265acbc4e5a100" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d03a35621cf75f82", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d03a35621cf75f82" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d03a35621cf75f82", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d03a35621cf75f82" + }, + "image_name": { + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } } }, "gpu": { @@ -22273,6 +24073,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0039ba64e4fec98e2": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0039ba64e4fec98e2", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0039ba64e4fec98e2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-003a0dd4e32887c34": { "Value": { "ecs_agent_version": "1.67.2", @@ -22561,6 +24397,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-012ca3b72519d003f": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-012ca3b72519d003f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-012ca3b72519d003f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-013ed567742e90919": { "Value": { "ecs_agent_version": "1.80.0", @@ -22885,6 +24757,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-02541c11c8f08a1e2": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02541c11c8f08a1e2", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02541c11c8f08a1e2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-0271ba92f5ba45ad3": { "Value": { "ecs_agent_version": "1.85.0", @@ -23209,6 +25117,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-03c22179c68f47520": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03c22179c68f47520", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03c22179c68f47520" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-03f518964f6c2a4e4": { "Value": { "ecs_agent_version": "1.88.0", @@ -23857,6 +25801,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20211103.0-x86_64-ebs" } }, + "ami-06f4217c3b49bb285": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06f4217c3b49bb285", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06f4217c3b49bb285" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-06fb4590537b6cc65": { "Value": { "ecs_agent_version": "1.80.0", @@ -24109,6 +26089,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-085ee758e27361c0b": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-085ee758e27361c0b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-085ee758e27361c0b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-089c8b227a4123a81": { "Value": { "ecs_agent_version": "1.87.0", @@ -24217,6 +26233,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-x86_64-ebs" } }, + "ami-0930810cec02769af": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0930810cec02769af", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0930810cec02769af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "ami-09497693770983ea8": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09497693770983ea8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09497693770983ea8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, "ami-098c44a7c470246e4": { "Value": { "ecs_agent_version": "1.67.2", @@ -24829,6 +26917,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220218.1-x86_64-ebs" } }, + "ami-0bcf0bf16fc564581": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bcf0bf16fc564581", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bcf0bf16fc564581" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, "ami-0bd66c2a458ccaeb5": { "Value": { "ecs_agent_version": "1.82.2", @@ -24865,6 +26989,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240329.0-x86_64-ebs" } }, + "ami-0be5b06d97bf1ff13": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be5b06d97bf1ff13", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be5b06d97bf1ff13" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c3003dcf5b594a11": { "Value": { "ecs_agent_version": "1.72.0", @@ -25333,6 +27493,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-0ebccdf9cd56686dd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ebccdf9cd56686dd", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ebccdf9cd56686dd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0ec3d97a6e504a1d6": { "Value": { "ecs_agent_version": "1.66.2", @@ -25477,6 +27673,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240223.0-x86_64-ebs" } }, + "ami-0fa41ecedf4bc5ffe": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fa41ecedf4bc5ffe", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fa41ecedf4bc5ffe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0fd43114d721973ac": { "Value": { "ecs_agent_version": "1.60.0", @@ -30993,31 +33225,31 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-023fbf767e39718f6", - "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-03c22179c68f47520", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-023fbf767e39718f6" + "Value": "ami-03c22179c68f47520" }, "image_name": { - "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20241213-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" }, "os": { "Value": "Amazon Linux 2" @@ -31028,6 +33260,438 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-085ee758e27361c0b", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-085ee758e27361c0b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09497693770983ea8", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09497693770983ea8" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-02541c11c8f08a1e2", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-02541c11c8f08a1e2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06f4217c3b49bb285", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06f4217c3b49bb285" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fa41ecedf4bc5ffe", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fa41ecedf4bc5ffe" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-012ca3b72519d003f", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-012ca3b72519d003f" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bcf0bf16fc564581", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bcf0bf16fc564581" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0be5b06d97bf1ff13", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0be5b06d97bf1ff13" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ebccdf9cd56686dd", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ebccdf9cd56686dd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0039ba64e4fec98e2", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0039ba64e4fec98e2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0930810cec02769af", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0930810cec02769af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0930810cec02769af", + "image_name": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0930810cec02769af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } } }, "inf": { @@ -31139,6 +33803,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220426.0-x86_64-ebs" } }, + "ami-00c945ec14a881100": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00c945ec14a881100", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00c945ec14a881100" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-00fbb75f1f363d50e": { "Value": { "ecs_agent_version": "1.87.0", @@ -31463,6 +34163,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221103.3-x86_64-ebs" } }, + "ami-024138c155f92e4ce": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-024138c155f92e4ce", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-024138c155f92e4ce" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, "ami-0259e486565a5ecf7": { "Value": { "ecs_agent_version": "1.84.0", @@ -32075,6 +34811,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221004.0-x86_64-ebs" } }, + "ami-057bbb7a5b229f853": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057bbb7a5b229f853", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057bbb7a5b229f853" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-059b30f3fd4cb5ce5": { "Value": { "ecs_agent_version": "1.64.0", @@ -33119,6 +35891,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-09acb528d1913ea2b": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09acb528d1913ea2b", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09acb528d1913ea2b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-09b002eac56da095c": { "Value": { "ecs_agent_version": "1.57.1", @@ -33371,6 +36179,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0b228e766354eee7d": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b228e766354eee7d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b228e766354eee7d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-0b47044dabd88af67": { "Value": { "ecs_agent_version": "1.61.0", @@ -33443,6 +36287,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-x86_64-ebs" } }, + "ami-0baaf3e8e1bb3d9c9": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0baaf3e8e1bb3d9c9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0baaf3e8e1bb3d9c9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0bad2a677a698c948": { "Value": { "ecs_agent_version": "1.79.2", @@ -33551,6 +36431,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20221210.1-x86_64-ebs" } }, + "ami-0bcc5d05d4e449e6c": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bcc5d05d4e449e6c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bcc5d05d4e449e6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-0bce879287a231f7d": { "Value": { "ecs_agent_version": "1.82.4", @@ -33695,6 +36611,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-x86_64-ebs" } }, + "ami-0c5f4fdb38490361d": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5f4fdb38490361d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5f4fdb38490361d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0c65ebfd6df294d49": { "Value": { "ecs_agent_version": "1.59.0", @@ -33731,6 +36683,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220207.1-x86_64-ebs" } }, + "ami-0ca9fbdb5e1459b96": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ca9fbdb5e1459b96", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ca9fbdb5e1459b96" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-0cbcefc130c155362": { "Value": { "ecs_agent_version": "1.70.0", @@ -33911,6 +36899,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20220218.1-x86_64-ebs" } }, + "ami-0d6f549dacb217d12": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d6f549dacb217d12", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d6f549dacb217d12" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0dbea8e1780e231da": { "Value": { "ecs_agent_version": "1.74.1", @@ -34307,6 +37331,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240131.0-x86_64-ebs" } }, + "ami-0f9bf5981b1d41d92": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9bf5981b1d41d92", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9bf5981b1d41d92" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0f9f67ab3a88919de": { "Value": { "ecs_agent_version": "1.83.0", @@ -34415,6 +37475,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230906.0-x86_64-ebs" } }, + "ami-0ffa2ead4e5043195": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ffa2ead4e5043195", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ffa2ead4e5043195" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, "amzn2-ami-ecs-inf-hvm-2.0.20200805-x86_64-ebs": { "Value": { "ecs_agent_version": "1.43.0", @@ -38919,31 +42015,31 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ce94067de30c22bf", - "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0b228e766354eee7d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0ce94067de30c22bf" + "Value": "ami-0b228e766354eee7d" }, "image_name": { - "Value": "amzn2-ami-ecs-inf-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20241213-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" }, "os": { "Value": "Amazon Linux 2" @@ -38954,9 +42050,477 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09acb528d1913ea2b", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09acb528d1913ea2b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-024138c155f92e4ce", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-024138c155f92e4ce" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bcc5d05d4e449e6c", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bcc5d05d4e449e6c" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ca9fbdb5e1459b96", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ca9fbdb5e1459b96" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d6f549dacb217d12", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d6f549dacb217d12" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-057bbb7a5b229f853", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-057bbb7a5b229f853" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ffa2ead4e5043195", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ffa2ead4e5043195" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5f4fdb38490361d", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5f4fdb38490361d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00c945ec14a881100", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00c945ec14a881100" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0baaf3e8e1bb3d9c9", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0baaf3e8e1bb3d9c9" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9bf5981b1d41d92", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9bf5981b1d41d92" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f9bf5981b1d41d92", + "image_name": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f9bf5981b1d41d92" + }, + "image_name": { + "Value": "amzn2-ami-ecs-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } } }, "kernel-5.10": { + "ami-00287daa6a5f0610d": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00287daa6a5f0610d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00287daa6a5f0610d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-002c5d93a7d0975f6": { "Value": { "ecs_agent_version": "1.82.0", @@ -39173,6 +42737,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-013289749f5418f5b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-013289749f5418f5b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-013289749f5418f5b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0150e7bec62267841": { "Value": { "ecs_agent_version": "1.82.0", @@ -39245,6 +42845,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231101.0-x86_64-ebs" } }, + "ami-0163c621eb8afc696": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0163c621eb8afc696", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0163c621eb8afc696" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-018115e3fd00e6400": { "Value": { "ecs_agent_version": "1.69.0", @@ -39641,6 +43277,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240903.0-x86_64-ebs" } }, + "ami-0345b2b25699aeae7": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0345b2b25699aeae7", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0345b2b25699aeae7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, "ami-034aa8f81724dbef3": { "Value": { "ecs_agent_version": "1.74.1", @@ -39677,6 +43349,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230628.0-x86_64-ebs" } }, + "ami-0359b4398b368203e": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0359b4398b368203e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0359b4398b368203e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, "ami-03a88663b6e6e9690": { "Value": { "ecs_agent_version": "1.80.0", @@ -40541,6 +44249,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-x86_64-ebs" } }, + "ami-098a751cc6cf15918": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098a751cc6cf15918", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098a751cc6cf15918" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0a0f6eee4cc28ca2d": { "Value": { "ecs_agent_version": "1.85.3", @@ -40685,6 +44429,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231101.0-x86_64-ebs" } }, + "ami-0acbb1f0ca626febf": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0acbb1f0ca626febf", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0acbb1f0ca626febf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-0ade904371c05ee2d": { "Value": { "ecs_agent_version": "1.87.0", @@ -40829,6 +44609,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230822.0-x86_64-ebs" } }, + "ami-0b806f07f3fc56256": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b806f07f3fc56256", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b806f07f3fc56256" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0b83c21e6f50944c7": { "Value": { "ecs_agent_version": "1.71.2", @@ -41081,6 +44897,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0c6adae7adbb718b5": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6adae7adbb718b5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6adae7adbb718b5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0cc25923e20d463eb": { "Value": { "ecs_agent_version": "1.82.3", @@ -41189,6 +45041,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0d5c1609190375855": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5c1609190375855", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5c1609190375855" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "ami-0d86afc315341a6c5": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d86afc315341a6c5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d86afc315341a6c5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0d96e67bf8c9603c3": { "Value": { "ecs_agent_version": "1.85.1", @@ -41441,6 +45365,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-x86_64-ebs" } }, + "ami-0fd9c3bdecfb968e3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fd9c3bdecfb968e3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fd9c3bdecfb968e3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20230109-x86_64-ebs": { "Value": { "ecs_agent_version": "1.68.0", @@ -43925,7 +47885,475 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5c1609190375855", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5c1609190375855" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0acbb1f0ca626febf", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0acbb1f0ca626febf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0345b2b25699aeae7", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0345b2b25699aeae7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00287daa6a5f0610d", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00287daa6a5f0610d" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0163c621eb8afc696", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0163c621eb8afc696" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-098a751cc6cf15918", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-098a751cc6cf15918" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6adae7adbb718b5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6adae7adbb718b5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0359b4398b368203e", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0359b4398b368203e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b806f07f3fc56256", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b806f07f3fc56256" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d86afc315341a6c5", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d86afc315341a6c5" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-013289749f5418f5b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-013289749f5418f5b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fd9c3bdecfb968e3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fd9c3bdecfb968e3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "arm64": { + "ami-00034e180f0cbd45b": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00034e180f0cbd45b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00034e180f0cbd45b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, "ami-00562875261d37295": { "Value": { "ecs_agent_version": "1.73.0", @@ -44214,6 +48642,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231206.0-arm64-ebs" } }, + "ami-01af9d7f7031bf136": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01af9d7f7031bf136", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01af9d7f7031bf136" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + } + }, "ami-01bb05bbef9bbc750": { "Value": { "ecs_agent_version": "1.82.2", @@ -44502,6 +48966,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-arm64-ebs" } }, + "ami-026a55221ebd0a9b7": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-026a55221ebd0a9b7", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-026a55221ebd0a9b7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, "ami-031c9a424ff292e23": { "Value": { "ecs_agent_version": "1.73.1", @@ -44754,6 +49254,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240719.0-arm64-ebs" } }, + "ami-03f42cd1cc5328d3a": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03f42cd1cc5328d3a", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03f42cd1cc5328d3a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, "ami-0443f54b4d27184c1": { "Value": { "ecs_agent_version": "1.86.0", @@ -44970,6 +49506,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } }, + "ami-05af263575b8e73dd": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05af263575b8e73dd", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05af263575b8e73dd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-05bff04facac18fec": { "Value": { "ecs_agent_version": "1.85.1", @@ -45258,6 +49830,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230504.1-arm64-ebs" } }, + "ami-0794810bb3b53683b": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0794810bb3b53683b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0794810bb3b53683b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, "ami-07a57c71eaa9a3c2d": { "Value": { "ecs_agent_version": "1.85.3", @@ -45330,6 +49938,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241014.0-arm64-ebs" } }, + "ami-07f4f9831e2db7575": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f4f9831e2db7575", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f4f9831e2db7575" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, "ami-0805a006d50737fe5": { "Value": { "ecs_agent_version": "1.86.3", @@ -45798,6 +50442,114 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20231101.0-arm64-ebs" } }, + "ami-0b755dd4c20bfba90": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b755dd4c20bfba90", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b755dd4c20bfba90" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "ami-0bce6e7991fb2af03": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bce6e7991fb2af03", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bce6e7991fb2af03" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, + "ami-0bd859edf55058138": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bd859edf55058138", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bd859edf55058138" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + } + }, "ami-0c0d12a17dacb1fad": { "Value": { "ecs_agent_version": "1.86.3", @@ -46086,6 +50838,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-arm64-ebs" } }, + "ami-0d3585501f0a05feb": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d3585501f0a05feb", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d3585501f0a05feb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, "ami-0d54e6214440d1f34": { "Value": { "ecs_agent_version": "1.78.0", @@ -46122,6 +50910,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20230926.0-arm64-ebs" } }, + "ami-0d5794c24bd530d13": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5794c24bd530d13", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5794c24bd530d13" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, "ami-0d81b8daf75739c0d": { "Value": { "ecs_agent_version": "1.83.0", @@ -48894,31 +53718,31 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0585e9d5c27a85c12", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-00034e180f0cbd45b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0585e9d5c27a85c12" + "Value": "ami-00034e180f0cbd45b" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-arm64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241213-arm64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" }, "os": { "Value": "Amazon Linux 2" @@ -48929,9 +53753,549 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0794810bb3b53683b", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0794810bb3b53683b" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241217-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01af9d7f7031bf136", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01af9d7f7031bf136" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250102-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bce6e7991fb2af03", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bce6e7991fb2af03" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250113-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-03f42cd1cc5328d3a", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-03f42cd1cc5328d3a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250115-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d3585501f0a05feb", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d3585501f0a05feb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250117-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-026a55221ebd0a9b7", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-026a55221ebd0a9b7" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250121-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bd859edf55058138", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bd859edf55058138" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250129-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05af263575b8e73dd", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05af263575b8e73dd" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250206-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b755dd4c20bfba90", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b755dd4c20bfba90" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250211-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d5794c24bd530d13", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d5794c24bd530d13" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250224-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-arm64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f4f9831e2db7575", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f4f9831e2db7575" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07f4f9831e2db7575", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07f4f9831e2db7575" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-arm64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs" + } } }, "gpu": { + "ami-000388ac8cfb44847": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-000388ac8cfb44847", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-000388ac8cfb44847" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "ami-0007da1f883d066de": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0007da1f883d066de", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0007da1f883d066de" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "ami-0084835ab09e8bf57": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0084835ab09e8bf57", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0084835ab09e8bf57" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-008d94099de93f738": { "Value": { "ecs_agent_version": "1.86.2", @@ -48968,6 +54332,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0098e39f26d3deb70": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0098e39f26d3deb70", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0098e39f26d3deb70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "ami-0117d207ce580d87e": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0117d207ce580d87e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0117d207ce580d87e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-0188a9f94a88bf46f": { "Value": { "ecs_agent_version": "1.82.0", @@ -49256,6 +54692,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-04027e4a816532643": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04027e4a816532643", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04027e4a816532643" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-04a8745595e475d06": { "Value": { "ecs_agent_version": "1.85.1", @@ -49616,6 +55088,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-0848ea48dc80d7179": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0848ea48dc80d7179", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0848ea48dc80d7179" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-0896a00db83b7a311": { "Value": { "ecs_agent_version": "1.82.2", @@ -49940,6 +55448,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240620.0-x86_64-ebs" } }, + "ami-0c5ee16f1b3492ee3": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5ee16f1b3492ee3", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5ee16f1b3492ee3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-0cafd18f5dbd416ed": { "Value": { "ecs_agent_version": "1.87.0", @@ -50012,6 +55556,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240318.0-x86_64-ebs" } }, + "ami-0cdc6d2a2631c9cac": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cdc6d2a2631c9cac", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cdc6d2a2631c9cac" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0daedcee81e64b07b": { "Value": { "ecs_agent_version": "1.85.2", @@ -50120,6 +55700,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0e6a09a3631c38bfb": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e6a09a3631c38bfb", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e6a09a3631c38bfb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0ebe91149e65b49df": { "Value": { "ecs_agent_version": "1.88.0", @@ -50156,6 +55772,78 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241031.0-x86_64-ebs" } }, + "ami-0ee4f5816644d49bf": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ee4f5816644d49bf", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ee4f5816644d49bf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0f4f15ede48a466c1": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4f15ede48a466c1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4f15ede48a466c1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-0ff3fccbf0b0ec0d7": { "Value": { "ecs_agent_version": "1.86.3", @@ -51452,31 +57140,31 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-03f3596e2f655f8c9", - "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0117d207ce580d87e", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-03f3596e2f655f8c9" + "Value": "ami-0117d207ce580d87e" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241213-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" }, "os": { "Value": "Amazon Linux 2" @@ -51487,9 +57175,477 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0084835ab09e8bf57", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0084835ab09e8bf57" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0098e39f26d3deb70", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0098e39f26d3deb70" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0007da1f883d066de", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0007da1f883d066de" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f4f15ede48a466c1", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f4f15ede48a466c1" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0cdc6d2a2631c9cac", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0cdc6d2a2631c9cac" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0e6a09a3631c38bfb", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0e6a09a3631c38bfb" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-000388ac8cfb44847", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-000388ac8cfb44847" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-04027e4a816532643", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-04027e4a816532643" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0848ea48dc80d7179", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0848ea48dc80d7179" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ee4f5816644d49bf", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ee4f5816644d49bf" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5ee16f1b3492ee3", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5ee16f1b3492ee3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5ee16f1b3492ee3", + "image_name": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5ee16f1b3492ee3" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-gpu-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } } }, "inf": { + "ami-0008da0898d20673a": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0008da0898d20673a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0008da0898d20673a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, "ami-0015b02807f3d82c6": { "Value": { "ecs_agent_version": "1.88.0", @@ -51526,6 +57682,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, + "ami-0074573da5a8af0e6": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0074573da5a8af0e6", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0074573da5a8af0e6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, "ami-00afcf0acdb42a168": { "Value": { "ecs_agent_version": "1.83.0", @@ -51562,6 +57754,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240529.0-x86_64-ebs" } }, + "ami-01fc595ab92f14b8e": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01fc595ab92f14b8e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01fc595ab92f14b8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-02555461a4046cdf2": { "Value": { "ecs_agent_version": "1.86.3", @@ -51778,6 +58006,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240816.0-x86_64-ebs" } }, + "ami-0517bb7f2d522f479": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0517bb7f2d522f479", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0517bb7f2d522f479" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, "ami-054f8915cc9b5f19c": { "Value": { "ecs_agent_version": "1.88.0", @@ -51886,6 +58150,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240412.0-x86_64-ebs" } }, + "ami-06b2cfe823a82178a": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06b2cfe823a82178a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06b2cfe823a82178a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, "ami-06c56e8e3cbcacc16": { "Value": { "ecs_agent_version": "1.83.0", @@ -51994,6 +58294,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240503.0-x86_64-ebs" } }, + "ami-07ad56e596d2787af": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07ad56e596d2787af", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07ad56e596d2787af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, "ami-08a7336c7c132da3e": { "Value": { "ecs_agent_version": "1.83.0", @@ -52102,6 +58438,150 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240318.0-x86_64-ebs" } }, + "ami-0a7bb4c6855535f10": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a7bb4c6855535f10", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a7bb4c6855535f10" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "ami-0a81254a19a30da42": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a81254a19a30da42", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a81254a19a30da42" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "ami-0aa1063b7e3e2d5d2": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0aa1063b7e3e2d5d2", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0aa1063b7e3e2d5d2" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "ami-0b046fa9352d97082": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b046fa9352d97082", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b046fa9352d97082" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0b6205f754041ac77": { "Value": { "ecs_agent_version": "1.87.1", @@ -52246,6 +58726,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240916.0-x86_64-ebs" } }, + "ami-0bf99589b280f1455": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bf99589b280f1455", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bf99589b280f1455" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, "ami-0c8ada30f792432b2": { "Value": { "ecs_agent_version": "1.85.0", @@ -52426,6 +58942,42 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20240809.0-x86_64-ebs" } }, + "ami-0d9d6ae18824b2d31": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d9d6ae18824b2d31", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d9d6ae18824b2d31" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, "ami-0da0ec372af784699": { "Value": { "ecs_agent_version": "1.82.4", @@ -54010,31 +60562,67 @@ "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } }, - "recommended": { + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.89.1", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0015b02807f3d82c6", - "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0aa1063b7e3e2d5d2", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs", + "image_version": "2.0.20241213", "os": "Amazon Linux 2", "schema_version": 1, "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.89.1" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0015b02807f3d82c6" + "Value": "ami-0aa1063b7e3e2d5d2" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241213-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0008da0898d20673a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs", + "image_version": "2.0.20241217", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0008da0898d20673a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20241217-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20241217" }, "os": { "Value": "Amazon Linux 2" @@ -54045,33 +60633,429 @@ "source_image_name": { "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0517bb7f2d522f479", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs", + "image_version": "2.0.20250102", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0517bb7f2d522f479" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250102-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250102" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20241217.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a7bb4c6855535f10", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs", + "image_version": "2.0.20250113", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a7bb4c6855535f10" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250113-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250113" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0074573da5a8af0e6", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs", + "image_version": "2.0.20250115", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0074573da5a8af0e6" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250115-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250115" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250108.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d9d6ae18824b2d31", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs", + "image_version": "2.0.20250117", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d9d6ae18824b2d31" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250117-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b046fa9352d97082", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs", + "image_version": "2.0.20250121", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b046fa9352d97082" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250121-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250116.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bf99589b280f1455", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs", + "image_version": "2.0.20250129", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bf99589b280f1455" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250129-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06b2cfe823a82178a", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs", + "image_version": "2.0.20250206", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06b2cfe823a82178a" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250206-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a81254a19a30da42", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs", + "image_version": "2.0.20250211", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a81254a19a30da42" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250211-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250211" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01fc595ab92f14b8e", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs", + "image_version": "2.0.20250224", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01fc595ab92f14b8e" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250224-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250201.0-x86_64-ebs" + } + }, + "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07ad56e596d2787af", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07ad56e596d2787af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-07ad56e596d2787af", + "image_name": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", + "os": "Amazon Linux 2", + "schema_version": 1, + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-07ad56e596d2787af" + }, + "image_name": { + "Value": "amzn2-ami-ecs-kernel-5.10-inf-hvm-2.0.20250226-x86_64-ebs" + }, + "image_version": { + "Value": "2.0.20250226" + }, + "os": { + "Value": "Amazon Linux 2" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" + } } }, "recommended": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0c3f9e016ceab4acd", - "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0fd9c3bdecfb968e3", + "image_name": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0c3f9e016ceab4acd" + "Value": "ami-0fd9c3bdecfb968e3" }, "image_name": { - "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-kernel-5.10-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -54080,35 +61064,35 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0a45afc001cb21ab9", - "image_name": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs", - "image_version": "2.0.20241120", + "image_id": "ami-0d9d4bdcd18bd80ee", + "image_name": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs", + "image_version": "2.0.20250226", "os": "Amazon Linux 2", "schema_version": 1, - "source_image_name": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + "source_image_name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0a45afc001cb21ab9" + "Value": "ami-0d9d4bdcd18bd80ee" }, "image_name": { - "Value": "amzn2-ami-ecs-hvm-2.0.20241120-x86_64-ebs" + "Value": "amzn2-ami-ecs-hvm-2.0.20250226-x86_64-ebs" }, "image_version": { - "Value": "2.0.20241120" + "Value": "2.0.20250226" }, "os": { "Value": "Amazon Linux 2" @@ -54117,7 +61101,7 @@ "Value": "1" }, "source_image_name": { - "Value": "amzn2-ami-minimal-hvm-2.0.20241113.1-x86_64-ebs" + "Value": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs" } } }, @@ -58196,6 +65180,330 @@ "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" } }, + "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b99b6bd253734f51", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b99b6bd253734f51" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06fb1039d3ffd487c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06fb1039d3ffd487c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-081848a2f4af47263", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-081848a2f4af47263" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-091a4fdd4fe193feb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-091a4fdd4fe193feb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a20b1ffc3cb736b6", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a20b1ffc3cb736b6" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0058f41536b69ab64", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "image_version": "2023.0.20250129", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0058f41536b69ab64" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0399be201c84b3c9c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0399be201c84b3c9c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6a4521b8a0e2b4b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6a4521b8a0e2b4b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d0d5457f83226c5b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d0d5457f83226c5b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-004bc24942fd663f4": { "Value": { "ecs_agent_version": "1.73.0", @@ -58232,6 +65540,42 @@ "Value": "al2023-ami-minimal-2023.0.20230614.0-kernel-6.1-x86_64" } }, + "ami-0058f41536b69ab64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0058f41536b69ab64", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64", + "image_version": "2023.0.20250129", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0058f41536b69ab64" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + } + }, "ami-0065ed47cc8232748": { "Value": { "ecs_agent_version": "1.86.2", @@ -58880,6 +66224,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-0399be201c84b3c9c": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0399be201c84b3c9c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0399be201c84b3c9c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-044828c2bd9fd9e24": { "Value": { "ecs_agent_version": "1.85.3", @@ -59384,6 +66764,42 @@ "Value": "al2023-ami-minimal-2023.2.20231113.0-kernel-6.1-x86_64" } }, + "ami-06fb1039d3ffd487c": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-06fb1039d3ffd487c", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-06fb1039d3ffd487c" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + } + }, "ami-079dc29e06a361f15": { "Value": { "ecs_agent_version": "1.82.4", @@ -59492,6 +66908,42 @@ "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" } }, + "ami-081848a2f4af47263": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-081848a2f4af47263", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-081848a2f4af47263" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + } + }, "ami-08c2b5fb4dfe2a964": { "Value": { "ecs_agent_version": "1.85.3", @@ -59528,6 +66980,42 @@ "Value": "al2023-ami-minimal-2023.5.20240730.0-kernel-6.1-x86_64" } }, + "ami-091a4fdd4fe193feb": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-091a4fdd4fe193feb", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-091a4fdd4fe193feb" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, "ami-09d18529ac94c4da2": { "Value": { "ecs_agent_version": "1.84.0", @@ -59564,6 +67052,42 @@ "Value": "al2023-ami-minimal-2023.5.20240624.0-kernel-6.1-x86_64" } }, + "ami-0a20b1ffc3cb736b6": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0a20b1ffc3cb736b6", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0a20b1ffc3cb736b6" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, "ami-0a2b38ed006da05c0": { "Value": { "ecs_agent_version": "1.86.3", @@ -59924,6 +67448,42 @@ "Value": "al2023-ami-minimal-2023.2.20231113.0-kernel-6.1-x86_64" } }, + "ami-0b99b6bd253734f51": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b99b6bd253734f51", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b99b6bd253734f51" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + } + }, "ami-0bdc14ef7204bf63a": { "Value": { "ecs_agent_version": "1.84.0", @@ -60068,6 +67628,78 @@ "Value": "al2023-ami-minimal-2023.1.20230705.0-kernel-6.1-x86_64" } }, + "ami-0c6a4521b8a0e2b4b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c6a4521b8a0e2b4b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c6a4521b8a0e2b4b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "ami-0d0d5457f83226c5b": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0d0d5457f83226c5b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0d0d5457f83226c5b" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-0d0ffb7eee692dae4": { "Value": { "ecs_agent_version": "1.77.0", @@ -62517,6 +70149,330 @@ "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-arm64" } }, + "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f2b6f0a8af52fa80", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f2b6f0a8af52fa80" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-090a76bbacbf2bfc9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-090a76bbacbf2bfc9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01a72e35f035cefb4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01a72e35f035cefb4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09d19aaa5edf132c5", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09d19aaa5edf132c5" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f14c0ee29b954379", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f14c0ee29b954379" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b023ee8a9d089a30", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "image_version": "2023.0.20250129", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b023ee8a9d089a30" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08eb574e6215b89ed", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08eb574e6215b89ed" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5de97299175eed0", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5de97299175eed0" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, + "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b55e0611ceceb164", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b55e0611ceceb164" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-00788bf7867354795": { "Value": { "ecs_agent_version": "1.86.2", @@ -62697,6 +70653,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-arm64" } }, + "ami-01a72e35f035cefb4": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01a72e35f035cefb4", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01a72e35f035cefb4" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250110-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-arm64" + } + }, "ami-021cc29da9b72defc": { "Value": { "ecs_agent_version": "1.71.1", @@ -63705,6 +71697,78 @@ "Value": "al2023-ami-minimal-2023.1.20230725.0-kernel-6.1-arm64" } }, + "ami-08eb574e6215b89ed": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-08eb574e6215b89ed", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-08eb574e6215b89ed" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250206-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-arm64" + } + }, + "ami-090a76bbacbf2bfc9": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-090a76bbacbf2bfc9", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-090a76bbacbf2bfc9" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241217-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-arm64" + } + }, "ami-09be69f2b561f9c1a": { "Value": { "ecs_agent_version": "1.84.0", @@ -63741,6 +71805,42 @@ "Value": "al2023-ami-minimal-2023.5.20240701.0-kernel-6.1-arm64" } }, + "ami-09d19aaa5edf132c5": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-09d19aaa5edf132c5", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-09d19aaa5edf132c5" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250117-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + } + }, "ami-0ab31739e97771d06": { "Value": { "ecs_agent_version": "1.79.2", @@ -63849,6 +71949,78 @@ "Value": "al2023-ami-minimal-2023.2.20230920.1-kernel-6.1-arm64" } }, + "ami-0b023ee8a9d089a30": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b023ee8a9d089a30", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64", + "image_version": "2023.0.20250129", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b023ee8a9d089a30" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250129-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64" + } + }, + "ami-0b55e0611ceceb164": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b55e0611ceceb164", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b55e0611ceceb164" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + }, "ami-0b7a841e8b4d80122": { "Value": { "ecs_agent_version": "1.85.2", @@ -64065,6 +72237,42 @@ "Value": "al2023-ami-minimal-2023.4.20240528.0-kernel-6.1-arm64" } }, + "ami-0c5de97299175eed0": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0c5de97299175eed0", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0c5de97299175eed0" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250214-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-arm64" + } + }, "ami-0c9a0285fd5494025": { "Value": { "ecs_agent_version": "1.82.4", @@ -64461,6 +72669,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-arm64" } }, + "ami-0f14c0ee29b954379": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f14c0ee29b954379", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f14c0ee29b954379" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20250121-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-arm64" + } + }, "ami-0f1b99b37f55b86a6": { "Value": { "ecs_agent_version": "1.71.2", @@ -64497,6 +72741,42 @@ "Value": "al2023-ami-minimal-2023.0.20230517.1-kernel-6.1-arm64" } }, + "ami-0f2b6f0a8af52fa80": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0f2b6f0a8af52fa80", + "image_name": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-arm64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0f2b6f0a8af52fa80" + }, + "image_name": { + "Value": "al2023-ami-ecs-hvm-2023.0.20241213-kernel-6.1-arm64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-arm64" + } + }, "ami-0f420f9f9b4d2380c": { "Value": { "ecs_agent_version": "1.76.0", @@ -64679,29 +72959,29 @@ }, "recommended": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-02a4a41ab1a407f3c", - "image_name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64", - "image_version": "2023.0.20241115", + "image_id": "ami-0b55e0611ceceb164", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-arm64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-02a4a41ab1a407f3c" + "Value": "ami-0b55e0611ceceb164" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-arm64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-arm64" }, "image_version": { - "Value": "2023.0.20241115" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -64710,7 +72990,117 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-arm64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64" + } + } + }, + "gpu": { + "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bc8c882015a04b15", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bc8c882015a04b15" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-0bc8c882015a04b15": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bc8c882015a04b15", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bc8c882015a04b15" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "recommended": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0bc8c882015a04b15", + "image_name": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0bc8c882015a04b15" + }, + "image_name": { + "Value": "al2023-ami-ecs-gpu-hvm-2023.0.20250224-kernel-6.1-x86_64-ebs" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, @@ -66731,139 +75121,535 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" } }, - "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64": { - "Value": { - "ecs_agent_version": "1.87.1", - "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-00dbe4f51ece66e80", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", - "image_version": "2023.0.20241017", - "os": "Amazon Linux 2023", - "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" - }, - "ecs_agent_version": { - "Value": "1.87.1" - }, - "ecs_runtime_version": { - "Value": "Docker version 25.0.6" - }, - "image_id": { - "Value": "ami-00dbe4f51ece66e80" - }, - "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64" - }, - "image_version": { - "Value": "2023.0.20241017" - }, - "os": { - "Value": "Amazon Linux 2023" - }, - "schema_version": { - "Value": "1" - }, - "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" - } - }, - "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64": { - "Value": { - "ecs_agent_version": "1.87.1", - "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0ee52f766e2b19e09", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", - "image_version": "2023.0.20241031", - "os": "Amazon Linux 2023", - "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" - }, - "ecs_agent_version": { - "Value": "1.87.1" - }, - "ecs_runtime_version": { - "Value": "Docker version 25.0.6" - }, - "image_id": { - "Value": "ami-0ee52f766e2b19e09" - }, - "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64" - }, - "image_version": { - "Value": "2023.0.20241031" - }, - "os": { - "Value": "Amazon Linux 2023" - }, - "schema_version": { - "Value": "1" - }, - "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" - } - }, - "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64": { - "Value": { - "ecs_agent_version": "1.88.0", - "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-05ddc30004485b11b", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", - "image_version": "2023.0.20241108", - "os": "Amazon Linux 2023", - "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-x86_64" - }, - "ecs_agent_version": { - "Value": "1.88.0" - }, - "ecs_runtime_version": { - "Value": "Docker version 25.0.6" - }, - "image_id": { - "Value": "ami-05ddc30004485b11b" - }, - "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64" - }, - "image_version": { - "Value": "2023.0.20241108" - }, - "os": { - "Value": "Amazon Linux 2023" - }, - "schema_version": { - "Value": "1" - }, - "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-x86_64" - } - }, - "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64": { + "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.87.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00dbe4f51ece66e80", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64", + "image_version": "2023.0.20241017", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.87.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00dbe4f51ece66e80" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241017-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241017" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.87.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0ee52f766e2b19e09", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64", + "image_version": "2023.0.20241031", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.87.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0ee52f766e2b19e09" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241031-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241031" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.88.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05ddc30004485b11b", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64", + "image_version": "2023.0.20241108", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.88.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05ddc30004485b11b" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241108-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241108" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241031.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.88.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-05280d5689b29423b", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", + "image_version": "2023.0.20241115", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.88.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-05280d5689b29423b" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241115" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0794912ffc3e960f1", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0794912ffc3e960f1" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0eec6203bad66a07d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0eec6203bad66a07d" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00d477a09cfec3138", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00d477a09cfec3138" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0295ca9d272beddcc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0295ca9d272beddcc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b4c5c3fbc42666db", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b4c5c3fbc42666db" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00305344fe2890957", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "image_version": "2023.0.20250129", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00305344fe2890957" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250129" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0846101844d3f9e27", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0846101844d3f9e27" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb993b2809160fdc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb993b2809160fdc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, + "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f848e83272be8fb", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f848e83272be8fb" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, + "ami-001bb05cf998464a3": { + "Value": { + "ecs_agent_version": "1.87.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-001bb05cf998464a3", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", + "image_version": "2023.0.20241015", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.87.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-001bb05cf998464a3" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241015" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + } + }, + "ami-001e7bcdac51a9a7d": { "Value": { - "ecs_agent_version": "1.88.0", - "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-05280d5689b29423b", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", - "image_version": "2023.0.20241115", + "ecs_agent_version": "1.85.2", + "ecs_runtime_version": "Docker version 25.0.3", + "image_id": "ami-001e7bcdac51a9a7d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", + "image_version": "2023.0.20240725", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.85.2" }, "ecs_runtime_version": { - "Value": "Docker version 25.0.6" + "Value": "Docker version 25.0.3" }, "image_id": { - "Value": "ami-05280d5689b29423b" + "Value": "ami-001e7bcdac51a9a7d" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20241115" + "Value": "2023.0.20240725" }, "os": { "Value": "Amazon Linux 2023" @@ -66872,70 +75658,34 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" } }, - "ami-001bb05cf998464a3": { + "ami-00305344fe2890957": { "Value": { - "ecs_agent_version": "1.87.0", + "ecs_agent_version": "1.89.3", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-001bb05cf998464a3", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64", - "image_version": "2023.0.20241015", + "image_id": "ami-00305344fe2890957", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64", + "image_version": "2023.0.20250129", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.87.0" + "Value": "1.89.3" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-001bb05cf998464a3" - }, - "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241015-kernel-6.1-x86_64" - }, - "image_version": { - "Value": "2023.0.20241015" - }, - "os": { - "Value": "Amazon Linux 2023" - }, - "schema_version": { - "Value": "1" - }, - "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" - } - }, - "ami-001e7bcdac51a9a7d": { - "Value": { - "ecs_agent_version": "1.85.2", - "ecs_runtime_version": "Docker version 25.0.3", - "image_id": "ami-001e7bcdac51a9a7d", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64", - "image_version": "2023.0.20240725", - "os": "Amazon Linux 2023", - "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" - }, - "ecs_agent_version": { - "Value": "1.85.2" - }, - "ecs_runtime_version": { - "Value": "Docker version 25.0.3" - }, - "image_id": { - "Value": "ami-001e7bcdac51a9a7d" + "Value": "ami-00305344fe2890957" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20240725-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250129-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20240725" + "Value": "2023.0.20250129" }, "os": { "Value": "Amazon Linux 2023" @@ -66944,7 +75694,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.5.20240722.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64" } }, "ami-00af44767c0b9f5c3": { @@ -67091,6 +75841,42 @@ "Value": "al2023-ami-minimal-2023.3.20240205.2-kernel-6.1-x86_64" } }, + "ami-00d477a09cfec3138": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-00d477a09cfec3138", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64", + "image_version": "2023.0.20250110", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-00d477a09cfec3138" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250110-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250110" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250107.0-kernel-6.1-x86_64" + } + }, "ami-00dbe4f51ece66e80": { "Value": { "ecs_agent_version": "1.87.1", @@ -67235,6 +76021,42 @@ "Value": "al2023-ami-minimal-2023.5.20240624.0-kernel-6.1-x86_64" } }, + "ami-01f848e83272be8fb": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-01f848e83272be8fb", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-01f848e83272be8fb" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250224" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" + } + }, "ami-021c1e530ef890dd9": { "Value": { "ecs_agent_version": "1.86.3", @@ -67307,6 +76129,42 @@ "Value": "al2023-ami-minimal-2023.3.20240219.0-kernel-6.1-x86_64" } }, + "ami-0295ca9d272beddcc": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0295ca9d272beddcc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64", + "image_version": "2023.0.20250117", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0295ca9d272beddcc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250117-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250117" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, "ami-029694eaf3b9de830": { "Value": { "ecs_agent_version": "1.83.0", @@ -67883,6 +76741,42 @@ "Value": "al2023-ami-minimal-2023.0.20230503.0-kernel-6.1-x86_64" } }, + "ami-0794912ffc3e960f1": { + "Value": { + "ecs_agent_version": "1.89.1", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0794912ffc3e960f1", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64", + "image_version": "2023.0.20241213", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.1" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0794912ffc3e960f1" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241213-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241213" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241121.0-kernel-6.1-x86_64" + } + }, "ami-07dcc6b31e4683277": { "Value": { "ecs_agent_version": "1.77.0", @@ -67991,6 +76885,42 @@ "Value": "al2023-ami-minimal-2023.1.20230912.0-kernel-6.1-x86_64" } }, + "ami-0846101844d3f9e27": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0846101844d3f9e27", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64", + "image_version": "2023.0.20250206", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0846101844d3f9e27" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250206-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250206" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250203.1-kernel-6.1-x86_64" + } + }, "ami-086ab21bc0e1a8bd9": { "Value": { "ecs_agent_version": "1.85.0", @@ -68351,6 +77281,42 @@ "Value": "al2023-ami-minimal-2023.5.20240805.0-kernel-6.1-x86_64" } }, + "ami-0b4c5c3fbc42666db": { + "Value": { + "ecs_agent_version": "1.89.3", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0b4c5c3fbc42666db", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64", + "image_version": "2023.0.20250121", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.3" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0b4c5c3fbc42666db" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250121-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250121" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250115.0-kernel-6.1-x86_64" + } + }, "ami-0b4d2da77937097e0": { "Value": { "ecs_agent_version": "1.78.0", @@ -68999,6 +77965,42 @@ "Value": "al2023-ami-minimal-2023.6.20241010.0-kernel-6.1-x86_64" } }, + "ami-0eec6203bad66a07d": { + "Value": { + "ecs_agent_version": "1.89.2", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0eec6203bad66a07d", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64", + "image_version": "2023.0.20241217", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.89.2" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0eec6203bad66a07d" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241217-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20241217" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20241212.0-kernel-6.1-x86_64" + } + }, "ami-0f410a0cc5a881449": { "Value": { "ecs_agent_version": "1.71.2", @@ -69035,31 +78037,67 @@ "Value": "al2023-ami-minimal-2023.0.20230517.1-kernel-6.1-x86_64" } }, + "ami-0fb993b2809160fdc": { + "Value": { + "ecs_agent_version": "1.90.0", + "ecs_runtime_version": "Docker version 25.0.6", + "image_id": "ami-0fb993b2809160fdc", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64", + "image_version": "2023.0.20250214", + "os": "Amazon Linux 2023", + "schema_version": 1, + "source_image_name": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + }, + "ecs_agent_version": { + "Value": "1.90.0" + }, + "ecs_runtime_version": { + "Value": "Docker version 25.0.6" + }, + "image_id": { + "Value": "ami-0fb993b2809160fdc" + }, + "image_name": { + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250214-kernel-6.1-x86_64" + }, + "image_version": { + "Value": "2023.0.20250214" + }, + "os": { + "Value": "Amazon Linux 2023" + }, + "schema_version": { + "Value": "1" + }, + "source_image_name": { + "Value": "al2023-ami-minimal-2023.6.20250211.0-kernel-6.1-x86_64" + } + }, "recommended": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-05280d5689b29423b", - "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64", - "image_version": "2023.0.20241115", + "image_id": "ami-01f848e83272be8fb", + "image_name": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-05280d5689b29423b" + "Value": "ami-01f848e83272be8fb" }, "image_name": { - "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-neuron-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20241115" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -69068,35 +78106,35 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, "recommended": { "Value": { - "ecs_agent_version": "1.88.0", + "ecs_agent_version": "1.90.0", "ecs_runtime_version": "Docker version 25.0.6", - "image_id": "ami-0267e832116a2026a", - "image_name": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64", - "image_version": "2023.0.20241115", + "image_id": "ami-0d0d5457f83226c5b", + "image_name": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64", + "image_version": "2023.0.20250224", "os": "Amazon Linux 2023", "schema_version": 1, - "source_image_name": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "source_image_name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" }, "ecs_agent_version": { - "Value": "1.88.0" + "Value": "1.90.0" }, "ecs_runtime_version": { "Value": "Docker version 25.0.6" }, "image_id": { - "Value": "ami-0267e832116a2026a" + "Value": "ami-0d0d5457f83226c5b" }, "image_name": { - "Value": "al2023-ami-ecs-hvm-2023.0.20241115-kernel-6.1-x86_64" + "Value": "al2023-ami-ecs-hvm-2023.0.20250224-kernel-6.1-x86_64" }, "image_version": { - "Value": "2023.0.20241115" + "Value": "2023.0.20250224" }, "os": { "Value": "Amazon Linux 2023" @@ -69105,7 +78143,7 @@ "Value": "1" }, "source_image_name": { - "Value": "al2023-ami-minimal-2023.6.20241111.0-kernel-6.1-x86_64" + "Value": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64" } } }, From 19342fdcc1790d510c448539584dab0a9de12dec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Mar 2025 10:34:14 -0100 Subject: [PATCH 102/103] chore: update EC2 Instance Offerings (#8646) --- .../availability-zone-id/ap-northeast-2.json | 4 + .../availability-zone-id/ap-south-1.json | 8 ++ .../availability-zone-id/ap-southeast-2.json | 12 ++ .../availability-zone-id/eu-central-2.json | 4 + .../availability-zone-id/eu-north-1.json | 48 +++++++ .../availability-zone-id/eu-south-2.json | 4 + .../availability-zone-id/eu-west-3.json | 132 ++++++++++++++++++ .../availability-zone/ap-northeast-2.json | 4 + .../availability-zone/ap-south-1.json | 8 ++ .../availability-zone/ap-southeast-2.json | 12 ++ .../availability-zone/eu-central-2.json | 4 + .../availability-zone/eu-north-1.json | 48 +++++++ .../availability-zone/eu-south-2.json | 4 + .../availability-zone/eu-west-3.json | 132 ++++++++++++++++++ .../region/ap-northeast-2.json | 4 + .../region/ap-south-1.json | 4 + .../region/ap-southeast-2.json | 12 ++ .../region/eu-central-2.json | 4 + .../region/eu-south-2.json | 4 + .../region/eu-west-3.json | 44 ++++++ 20 files changed, 496 insertions(+) diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json index 4ae974a95683..7d1f7457dcc0 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-northeast-2.json @@ -1195,6 +1195,10 @@ "InstanceType": "p3.8xlarge", "Location": "apne2-az1" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "apne2-az1" + }, { "InstanceType": "r3.2xlarge", "Location": "apne2-az1" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json index 756540e3aa96..2248c2a42095 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-south-1.json @@ -1431,6 +1431,10 @@ "InstanceType": "p5.48xlarge", "Location": "aps1-az1" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "aps1-az1" + }, { "InstanceType": "r3.2xlarge", "Location": "aps1-az1" @@ -5619,6 +5623,10 @@ "InstanceType": "p5.48xlarge", "Location": "aps1-az3" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "aps1-az3" + }, { "InstanceType": "r3.2xlarge", "Location": "aps1-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json index ffe3b61217a3..285c92fdc924 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/ap-southeast-2.json @@ -715,6 +715,18 @@ "InstanceType": "f1.4xlarge", "Location": "apse2-az1" }, + { + "InstanceType": "f2.12xlarge", + "Location": "apse2-az1" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "apse2-az1" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "apse2-az1" + }, { "InstanceType": "g4dn.12xlarge", "Location": "apse2-az1" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json index 491148e878c9..eb3883c84dd8 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-central-2.json @@ -839,6 +839,10 @@ "InstanceType": "t4g.xlarge", "Location": "euc2-az1" }, + { + "InstanceType": "u-3tb1.56xlarge", + "Location": "euc2-az1" + }, { "InstanceType": "u-6tb1.112xlarge", "Location": "euc2-az1" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json index b187a7d950bb..a6946ff077be 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-north-1.json @@ -3199,6 +3199,54 @@ "InstanceType": "m7i.xlarge", "Location": "eun1-az2" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.large", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.medium", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eun1-az2" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eun1-az2" + }, { "InstanceType": "mac1.metal", "Location": "eun1-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json index 2952b513397f..27d2a541c154 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-south-2.json @@ -2539,6 +2539,10 @@ "InstanceType": "m8g.xlarge", "Location": "eus2-az2" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "eus2-az2" + }, { "InstanceType": "r5.12xlarge", "Location": "eus2-az2" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json index 52a74c065cc4..9bd5c56a39c6 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone-id/eu-west-3.json @@ -791,6 +791,50 @@ "InstanceType": "m5d.xlarge", "Location": "euw3-az1" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.large", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.metal", + "Location": "euw3-az1" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "euw3-az1" + }, { "InstanceType": "m6g.12xlarge", "Location": "euw3-az1" @@ -2359,6 +2403,50 @@ "InstanceType": "m5d.xlarge", "Location": "euw3-az2" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.large", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.metal", + "Location": "euw3-az2" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "euw3-az2" + }, { "InstanceType": "m6g.12xlarge", "Location": "euw3-az2" @@ -3971,6 +4059,50 @@ "InstanceType": "m5d.xlarge", "Location": "euw3-az3" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.large", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.metal", + "Location": "euw3-az3" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "euw3-az3" + }, { "InstanceType": "m6g.12xlarge", "Location": "euw3-az3" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json index 8c5d7a0651f8..762243284115 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-northeast-2.json @@ -1195,6 +1195,10 @@ "InstanceType": "p3.8xlarge", "Location": "ap-northeast-2a" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-northeast-2a" + }, { "InstanceType": "r3.2xlarge", "Location": "ap-northeast-2a" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json index 4380d9cab016..4fed030bad79 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-south-1.json @@ -1431,6 +1431,10 @@ "InstanceType": "p5.48xlarge", "Location": "ap-south-1a" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-south-1a" + }, { "InstanceType": "r3.2xlarge", "Location": "ap-south-1a" @@ -3667,6 +3671,10 @@ "InstanceType": "p5.48xlarge", "Location": "ap-south-1b" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-south-1b" + }, { "InstanceType": "r3.2xlarge", "Location": "ap-south-1b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json index 419a5cb94f16..e3a18b31c78d 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/ap-southeast-2.json @@ -3151,6 +3151,18 @@ "InstanceType": "f1.4xlarge", "Location": "ap-southeast-2b" }, + { + "InstanceType": "f2.12xlarge", + "Location": "ap-southeast-2b" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "ap-southeast-2b" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "ap-southeast-2b" + }, { "InstanceType": "g4dn.12xlarge", "Location": "ap-southeast-2b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json index 78e41681a8a6..6af10a204309 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-central-2.json @@ -839,6 +839,10 @@ "InstanceType": "t4g.xlarge", "Location": "eu-central-2a" }, + { + "InstanceType": "u-3tb1.56xlarge", + "Location": "eu-central-2a" + }, { "InstanceType": "u-6tb1.112xlarge", "Location": "eu-central-2a" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json index d8cfbdf9a38b..c54284f0e092 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-north-1.json @@ -3199,6 +3199,54 @@ "InstanceType": "m7i.xlarge", "Location": "eu-north-1b" }, + { + "InstanceType": "m8g.12xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.16xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.24xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.2xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.48xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.4xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.8xlarge", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.large", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.medium", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.metal-24xl", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.metal-48xl", + "Location": "eu-north-1b" + }, + { + "InstanceType": "m8g.xlarge", + "Location": "eu-north-1b" + }, { "InstanceType": "mac1.metal", "Location": "eu-north-1b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json index 8ed3a36f51e1..62b3c5abbdbd 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-south-2.json @@ -2539,6 +2539,10 @@ "InstanceType": "m8g.xlarge", "Location": "eu-south-2b" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "eu-south-2b" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-south-2b" diff --git a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json index da6650d318c4..39e5bd722c28 100644 --- a/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json +++ b/moto/ec2/resources/instance_type_offerings/availability-zone/eu-west-3.json @@ -791,6 +791,50 @@ "InstanceType": "m5d.xlarge", "Location": "eu-west-3a" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.large", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.metal", + "Location": "eu-west-3a" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "eu-west-3a" + }, { "InstanceType": "m6g.12xlarge", "Location": "eu-west-3a" @@ -2359,6 +2403,50 @@ "InstanceType": "m5d.xlarge", "Location": "eu-west-3b" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.large", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.metal", + "Location": "eu-west-3b" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "eu-west-3b" + }, { "InstanceType": "m6g.12xlarge", "Location": "eu-west-3b" @@ -3971,6 +4059,50 @@ "InstanceType": "m5d.xlarge", "Location": "eu-west-3c" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.large", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.metal", + "Location": "eu-west-3c" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "eu-west-3c" + }, { "InstanceType": "m6g.12xlarge", "Location": "eu-west-3c" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json index 3e7678bb8283..ba03cf293b5d 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-northeast-2.json @@ -1219,6 +1219,10 @@ "InstanceType": "p4d.24xlarge", "Location": "ap-northeast-2" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-northeast-2" + }, { "InstanceType": "r3.2xlarge", "Location": "ap-northeast-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json b/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json index 290c00d8acf7..a251d6d1f844 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-south-1.json @@ -1455,6 +1455,10 @@ "InstanceType": "p5.48xlarge", "Location": "ap-south-1" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "ap-south-1" + }, { "InstanceType": "r3.2xlarge", "Location": "ap-south-1" diff --git a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json index c05b94ea97d4..c58253ec35ec 100644 --- a/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/ap-southeast-2.json @@ -715,6 +715,18 @@ "InstanceType": "f1.4xlarge", "Location": "ap-southeast-2" }, + { + "InstanceType": "f2.12xlarge", + "Location": "ap-southeast-2" + }, + { + "InstanceType": "f2.48xlarge", + "Location": "ap-southeast-2" + }, + { + "InstanceType": "f2.6xlarge", + "Location": "ap-southeast-2" + }, { "InstanceType": "g4dn.12xlarge", "Location": "ap-southeast-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json index 9050ced0d9e8..c85100324865 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-central-2.json @@ -915,6 +915,10 @@ "InstanceType": "t4g.xlarge", "Location": "eu-central-2" }, + { + "InstanceType": "u-3tb1.56xlarge", + "Location": "eu-central-2" + }, { "InstanceType": "u-6tb1.112xlarge", "Location": "eu-central-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json b/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json index 649a56e6c41d..e14f5dec8472 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-south-2.json @@ -1063,6 +1063,10 @@ "InstanceType": "m8g.xlarge", "Location": "eu-south-2" }, + { + "InstanceType": "p5en.48xlarge", + "Location": "eu-south-2" + }, { "InstanceType": "r5.12xlarge", "Location": "eu-south-2" diff --git a/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json b/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json index c222e027989a..add8fce4ee15 100644 --- a/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json +++ b/moto/ec2/resources/instance_type_offerings/region/eu-west-3.json @@ -847,6 +847,50 @@ "InstanceType": "m5d.xlarge", "Location": "eu-west-3" }, + { + "InstanceType": "m6a.12xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.16xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.24xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.2xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.32xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.48xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.4xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.8xlarge", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.large", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.metal", + "Location": "eu-west-3" + }, + { + "InstanceType": "m6a.xlarge", + "Location": "eu-west-3" + }, { "InstanceType": "m6g.12xlarge", "Location": "eu-west-3" From 0224977538667d4ed6d93a259ba155bd5188b939 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Mar 2025 11:35:07 -0100 Subject: [PATCH 103/103] chore: update SSM default AMI's (#8642) --- .../ec2/resources/latest_amis/af-south-1.json | 122 +++++++------- moto/ec2/resources/latest_amis/ap-east-1.json | 124 +++++++------- .../resources/latest_amis/ap-northeast-1.json | 142 ++++++++-------- .../resources/latest_amis/ap-northeast-2.json | 120 +++++++------- .../resources/latest_amis/ap-northeast-3.json | 110 +++++++------ .../ec2/resources/latest_amis/ap-south-1.json | 117 +++++++------ .../ec2/resources/latest_amis/ap-south-2.json | 124 +++++++------- .../resources/latest_amis/ap-southeast-1.json | 137 +++++++--------- .../resources/latest_amis/ap-southeast-2.json | 145 ++++++++-------- .../resources/latest_amis/ap-southeast-3.json | 114 +++++++------ .../resources/latest_amis/ap-southeast-4.json | 120 +++++++------- .../resources/latest_amis/ap-southeast-5.json | 96 ++++++----- .../resources/latest_amis/ca-central-1.json | 121 ++++++++------ moto/ec2/resources/latest_amis/ca-west-1.json | 92 ++++++----- .../resources/latest_amis/eu-central-1.json | 153 ++++++++--------- .../resources/latest_amis/eu-central-2.json | 120 +++++++------- .../ec2/resources/latest_amis/eu-north-1.json | 128 +++++++-------- .../ec2/resources/latest_amis/eu-south-1.json | 116 +++++++------ .../ec2/resources/latest_amis/eu-south-2.json | 124 +++++++------- moto/ec2/resources/latest_amis/eu-west-1.json | 150 ++++++++--------- moto/ec2/resources/latest_amis/eu-west-2.json | 122 +++++++------- moto/ec2/resources/latest_amis/eu-west-3.json | 120 +++++++------- .../resources/latest_amis/il-central-1.json | 128 +++++++-------- .../resources/latest_amis/me-central-1.json | 126 +++++++------- .../ec2/resources/latest_amis/me-south-1.json | 120 +++++++------- moto/ec2/resources/latest_amis/sa-east-1.json | 153 ++++++++--------- moto/ec2/resources/latest_amis/us-east-1.json | 155 ++++++++++-------- moto/ec2/resources/latest_amis/us-east-2.json | 111 +++++++------ moto/ec2/resources/latest_amis/us-west-1.json | 152 ++++++++--------- moto/ec2/resources/latest_amis/us-west-2.json | 147 +++++++++-------- .../ami-amazon-linux-latest/af-south-1.json | 96 +++++------ .../ami-amazon-linux-latest/ap-east-1.json | 96 +++++------ .../ap-northeast-1.json | 96 +++++------ .../ap-northeast-2.json | 96 +++++------ .../ap-northeast-3.json | 96 +++++------ .../ami-amazon-linux-latest/ap-south-1.json | 96 +++++------ .../ami-amazon-linux-latest/ap-south-2.json | 96 +++++------ .../ap-southeast-1.json | 96 +++++------ .../ap-southeast-2.json | 96 +++++------ .../ap-southeast-3.json | 96 +++++------ .../ap-southeast-4.json | 96 +++++------ .../ap-southeast-5.json | 96 +++++------ .../ami-amazon-linux-latest/ca-central-1.json | 96 +++++------ .../ami-amazon-linux-latest/ca-west-1.json | 96 +++++------ .../ami-amazon-linux-latest/eu-central-1.json | 96 +++++------ .../ami-amazon-linux-latest/eu-central-2.json | 96 +++++------ .../ami-amazon-linux-latest/eu-north-1.json | 96 +++++------ .../ami-amazon-linux-latest/eu-south-1.json | 96 +++++------ .../ami-amazon-linux-latest/eu-south-2.json | 96 +++++------ .../ami-amazon-linux-latest/eu-west-1.json | 96 +++++------ .../ami-amazon-linux-latest/eu-west-2.json | 96 +++++------ .../ami-amazon-linux-latest/eu-west-3.json | 96 +++++------ .../ami-amazon-linux-latest/il-central-1.json | 96 +++++------ .../ami-amazon-linux-latest/me-central-1.json | 96 +++++------ .../ami-amazon-linux-latest/me-south-1.json | 96 +++++------ .../ami-amazon-linux-latest/sa-east-1.json | 96 +++++------ .../ami-amazon-linux-latest/us-east-1.json | 96 +++++------ .../ami-amazon-linux-latest/us-east-2.json | 96 +++++------ .../ami-amazon-linux-latest/us-west-1.json | 96 +++++------ .../ami-amazon-linux-latest/us-west-2.json | 96 +++++------ 60 files changed, 3354 insertions(+), 3335 deletions(-) diff --git a/moto/ec2/resources/latest_amis/af-south-1.json b/moto/ec2/resources/latest_amis/af-south-1.json index c044951bac90..41a071b8b3a0 100644 --- a/moto/ec2/resources/latest_amis/af-south-1.json +++ b/moto/ec2/resources/latest_amis/af-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0e0d19a8e8af59685", + "ami_id": "ami-09c71b71c234b2f11", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "210953353124", "platform": null, "public": true, @@ -13,31 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03bfef557bd6e5f3e", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "210953353124", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-00b34ff79d1df4464", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0d13c8023dc6f5eee", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "210953353124", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03251e602c1e46a66", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-02d303fe50d84398c", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "210953353124", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba2ca11e66479f23", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0a76d8e8676efa547", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "210953353124", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea9a63a1915f734b", + "ami_id": "ami-0a85da3ff7af02a9c", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "210953353124", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d3964c9da0fd83b", + "ami_id": "ami-0c9f0fc5b34c2583b", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "210953353124", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be17a198fa95ffd4", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-00c345b35865a00be", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "210953353124", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-007195a721c187446", + "ami_id": "ami-071ec74a9abd8fec2", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "210953353124", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0671fccf2e013c44d", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0733842416a0df3a2", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "210953353124", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb48e72cf7f2c93f", + "ami_id": "ami-02a781410bf8cbca6", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "210953353124", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ff7c774ed20ff6b7", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-0145cb586de37550b", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "210953353124", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0503be5ebeea0d458", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "ami_id": "ami-01d2b384e20bad78f", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "210953353124", "platform": null, "public": true, @@ -205,6 +200,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d13c8023dc6f5eee", + "ami_id": "ami-0f356b0761b2b8a56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "210953353124", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-east-1.json b/moto/ec2/resources/latest_amis/ap-east-1.json index 314c8fdae68c..7d85142b3fd0 100644 --- a/moto/ec2/resources/latest_amis/ap-east-1.json +++ b/moto/ec2/resources/latest_amis/ap-east-1.json @@ -1,20 +1,4 @@ [ - { - "ami_id": "ami-0c94537106701c2bb", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "910595266909", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, { "ami_id": "ami-0e7183c7da6dd5505", "architecture": "x86_64", @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b6ffb650620d9e40", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0093cd382a344222b", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "910595266909", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ae65cf76b8f70ad", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0a0d6afabf268cb7e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "910595266909", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1252702acf44b5b", + "ami_id": "ami-072c172d6bf7a2ab8", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "910595266909", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0104ab5c6c83c3233", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0ebbe350ac321f042", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "910595266909", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a705047851c7d67e", + "ami_id": "ami-09d50c89eea79b609", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "910595266909", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0397c5400028b418c", + "ami_id": "ami-0123e5d7542358c86", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "910595266909", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a0d6afabf268cb7e", + "ami_id": "ami-049097fc41239c25d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "910595266909", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09d22544dbef846a2", + "ami_id": "ami-0156fbb594d14d341", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "910595266909", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8f784bd57fe0f9a", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0c99b94e29c2060e7", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "910595266909", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fee2704af39b932", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0eb0875904d8c64d4", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "910595266909", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04aad4199686559f2", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0b12ca0dd6f421504", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "910595266909", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04c702a33de745821", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-03f21c54cd9c5f6c6", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "910595266909", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06492ce80d662ed9e", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "ami_id": "ami-04c5063b66ffe6aa6", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "910595266909", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-northeast-1.json b/moto/ec2/resources/latest_amis/ap-northeast-1.json index 71eeefc368a3..475c5e7af8a8 100644 --- a/moto/ec2/resources/latest_amis/ap-northeast-1.json +++ b/moto/ec2/resources/latest_amis/ap-northeast-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0fe2406f5af75ea71", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-05a6915d79508cb98", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0513d7ff96981e787", + "ami_id": "ami-0471534f8818626ed", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,31 +30,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e79fa69b0c7d3401", + "ami_id": "ami-00561c77487da40c1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-082110a9bbac6ae94", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0270541b93beb351e", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0329430a3c81c28e2", + "ami_id": "ami-072298436ce5cb0c4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b4355f17bce1de3", + "ami_id": "ami-0d60652e0357ad94f", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-055bb751da45ef09f", + "ami_id": "ami-0cc2b48c038740582", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02ebc4439e7296501", + "ami_id": "ami-09a73d1fbb2515f95", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa3a23475df2996e", + "ami_id": "ami-0488984a4dbfbb4f3", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a9d152e003e61f8e", + "ami_id": "ami-0b11998eb2c7d1f64", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d527f2d9747c7b2", + "ami_id": "ami-002ace860218ade29", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,31 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0caafe7e75e12208a", + "ami_id": "ami-0329430a3c81c28e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-0ffeb6c61663cf92e", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0471534f8818626ed", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-0b41b77d9b2f81963", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-001c86e93b7d22586", + "ami_id": "ami-0513d7ff96981e787", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,31 +234,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06c6f3fa7959e5fdd", + "ami_id": "ami-0caafe7e75e12208a", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-0b1ecc132e1c4c555", + "ami_id": "ami-0fed4bb210d8c2d4a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +268,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-northeast-2.json b/moto/ec2/resources/latest_amis/ap-northeast-2.json index 48f12e468479..84a6e0da2105 100644 --- a/moto/ec2/resources/latest_amis/ap-northeast-2.json +++ b/moto/ec2/resources/latest_amis/ap-northeast-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-08aa487cc4f6fcc0d", + "ami_id": "ami-08fe4e7862fb0d4c2", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acb4186d7a2cb95c", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-075e056c0f3d02523", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0079f4ef39f05939a", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0fc87f4a8410f936a", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-027ac312b4ff78bb4", + "ami_id": "ami-0891aeb92f786d7a2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2c043e56e9abcc5", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-07a0be44d6a0a3868", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,6 +81,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0108cd65bde8ff96e", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-05422da99421f259e", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0bfe6dd7d14ae24", + "ami_id": "ami-08d62a76228597757", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b179c90538a5c304", + "ami_id": "ami-09a8b6485df1cea56", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09fcdd06a06257200", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0b179c90538a5c304", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01bc8f85a143385bc", + "ami_id": "ami-0f076639221a87f90", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7ad285d9a5510a2", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0ff178d403f71cc8e", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c33d2197ac9fe9c", + "ami_id": "ami-03c13c4d19aa1a6f1", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,31 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f4ec9d6b452f7fb6", + "ami_id": "ami-0532f08d6bf660cd2", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-067d6ed07a781f6b5", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-northeast-3.json b/moto/ec2/resources/latest_amis/ap-northeast-3.json index 9113b477edb9..fa16f1df4c7d 100644 --- a/moto/ec2/resources/latest_amis/ap-northeast-3.json +++ b/moto/ec2/resources/latest_amis/ap-northeast-3.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0557f03cd3e67eca8", + "ami_id": "ami-022158805c478d5d3", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0957d21eb5fac55d6", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-084ca76f93fe39302", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05b15a4fbb42cecfc", + "ami_id": "ami-0ce116ba5b5e740c0", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0864e0717ee0bddb3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "ami_id": "ami-0a4510db241b7aaf2", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0686e688ab9e6d3a8", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0316e0efae0ce53d2", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f335224df73af6d6", + "ami_id": "ami-0864e0717ee0bddb3", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-022158805c478d5d3", + "ami_id": "ami-0002c62a734685afc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09da61898b614578f", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-038a2d56064efe960", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d6888a92f69a5a2", + "ami_id": "ami-09a79bb80d6bc57cf", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014e25b8eea863333", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0be01d0f9896e9858", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-078588408fafc66b7", + "ami_id": "ami-02d5dce2857c6e275", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028bae4323065290e", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0439cd8bc5628c9e8", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-014a9fb8389a37561", + "ami_id": "ami-02c822a6a6841f0bd", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036c694af8914eb01", + "ami_id": "ami-06aff7b1cdd338568", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-south-1.json b/moto/ec2/resources/latest_amis/ap-south-1.json index 9869b7977495..7277e4b82d07 100644 --- a/moto/ec2/resources/latest_amis/ap-south-1.json +++ b/moto/ec2/resources/latest_amis/ap-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0f85f04ff2611dfd8", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "ami_id": "ami-05b5cad4abb7f9a27", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06de06a3e67b340b2", + "ami_id": "ami-0cfc29b64958bc112", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d3e89b21bfdcc33e", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-08cdbcae206da6cd9", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0998b2be8e3343291", + "ami_id": "ami-0d682f26195e9ec0f", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d13d86e8d5811bdc", + "ami_id": "ami-01f11a789b5c73b1b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006904762e5396f75", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-07a9e22d19f073da3", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07a9e22d19f073da3", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-0791dc4749c0c3762", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09c0d3755326acbf0", + "ami_id": "ami-0d3e89b21bfdcc33e", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02972a2a0ac299bb7", + "ami_id": "ami-0f2ce9ce760bd7133", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06134730b06f51b8c", + "ami_id": "ami-0f4f6fd19fad11737", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dedb04d9e747210d", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-009a5d5634e191cf6", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06063117918faf83a", + "ami_id": "ami-0863c41b4c73c8429", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fa46471b02db0ce", + "ami_id": "ami-0d13d86e8d5811bdc", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00d66e7b8208088a3", + "ami_id": "ami-007b6f6e6338e2892", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b0c4d81950666dcb", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-092e82014435e1c40", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-south-2.json b/moto/ec2/resources/latest_amis/ap-south-2.json index f95d8cd9f7c1..73bbda25b8bd 100644 --- a/moto/ec2/resources/latest_amis/ap-south-2.json +++ b/moto/ec2/resources/latest_amis/ap-south-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-073d1fbc6e6f6d689", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-05f9d64591d54b277", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "140264529686", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d81f2cd09b410166", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-08611ae1b1c25bb68", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "140264529686", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08fc52de927d1997d", + "ami_id": "ami-0bfe4690b562de9f0", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "140264529686", "platform": null, "public": true, @@ -45,31 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04d5d8b11c1af1066", + "ami_id": "ami-0bf2c470595a329f0", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", - "owner_id": "140264529686", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0fa4d872b2db37437", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "140264529686", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-009ccf38f9f32a080", + "ami_id": "ami-0f6139a1490f16a43", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "140264529686", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e6898dd80178ff5e", + "ami_id": "ami-0d21b95058541273d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "140264529686", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c4a8ada443218f28", + "ami_id": "ami-011d433a1e8ab9068", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "140264529686", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d6f0d5b7bbf0bef1", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "ami_id": "ami-090b6f65f33bba57a", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "140264529686", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a2f5c261453e1332", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-09e23b3de35f110f6", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "140264529686", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-036ca7d3e7fe7595b", + "ami_id": "ami-0d432158e813b8255", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "140264529686", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-006d55904a2d5756d", + "ami_id": "ami-0d4b8048bad80f480", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "140264529686", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-098ae95d8d62155b9", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0e6898dd80178ff5e", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "140264529686", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-003a4f5091141b9c8", + "ami_id": "ami-0913c3ef5dcd60f9c", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "140264529686", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f474ae1b31df2b4e", + "ami_id": "ami-0d6f0d5b7bbf0bef1", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "140264529686", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-southeast-1.json b/moto/ec2/resources/latest_amis/ap-southeast-1.json index 2bc7d1e50d90..e6cadac41091 100644 --- a/moto/ec2/resources/latest_amis/ap-southeast-1.json +++ b/moto/ec2/resources/latest_amis/ap-southeast-1.json @@ -1,27 +1,11 @@ [ { - "ami_id": "ami-08908d9e195550170", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-08b4f1faa122643f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-0e060e9d48e60801d", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06e5b734ba521bd2c", + "ami_id": "ami-0b340beacb6ac1aaa", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-043ebfd610baa25c6", + "ami_id": "ami-015712baec0c110d9", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c5dcbe8a2d514211", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-04dbab1e907ca0f56", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,23 +64,25 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed168ff9982d676c", + "ami_id": "ami-08b4f1faa122643f9", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { "ami_id": "ami-03cb19ddba3a9264b", @@ -109,31 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "paravirtual" }, { - "ami_id": "ami-04cefe6e023cd8b00", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-02a1122b5622780e6", + "ami_id": "ami-0193334c7f6486b55", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c055f797c1cc760", + "ami_id": "ami-0726c8f833d8aea08", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064566174226ee49d", + "ami_id": "ami-0301dd2fb476c9850", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08ac0020b8e4012e0", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-093a297f96d53070c", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0093ceb06eded359f", + "ami_id": "ami-06b6ca402fabc0ec3", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ba9561b67b5723f", + "ami_id": "ami-0e6122a6f662c1c14", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc77316ce7a2d0a4", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0b03299ddb99998e9", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +217,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -253,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032bed0ebcdbd600e", + "ami_id": "ami-0d8eee72f13bd7a0f", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-southeast-2.json b/moto/ec2/resources/latest_amis/ap-southeast-2.json index f676616cf3d1..942b00eede67 100644 --- a/moto/ec2/resources/latest_amis/ap-southeast-2.json +++ b/moto/ec2/resources/latest_amis/ap-southeast-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-08890d5029cf7cefe", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-064b71eca68aadfb8", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8123dbfb13de66e", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0657e75dc79d2cbec", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0028f3ac0a4c6e1bc", + "ami_id": "ami-04beacff130b78ebe", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,6 +47,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -61,31 +64,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e860b124de216e21", + "ami_id": "ami-0be09614e7b65d505", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-073366a05a89990b0", + "ami_id": "ami-05f57b907e9424ac5", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02554717525068a5e", + "ami_id": "ami-010782e22b4f0514d", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5395a56ccf8d85f", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0028f3ac0a4c6e1bc", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07ba57196a766fc6d", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-046d87b170ccd612f", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,31 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0efaf854e4c5de57c", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-0cb4c7701eeb623ce", + "ami_id": "ami-08c75b0c6627a23d9", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c6291f9f84457ac", + "ami_id": "ami-0d88eb46a731f986d", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-032fe8e30544994dd", + "ami_id": "ami-064f7307bedf5c5b8", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00c97da679c04f4a0", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0deb8c0a292c27c84", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e5f5d9da6e47c7b", + "ami_id": "ami-044b50caba366ec3a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,31 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0be09614e7b65d505", + "ami_id": "ami-067bcc0be19bebd00", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-0eb8f50b0b29ede73", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-southeast-3.json b/moto/ec2/resources/latest_amis/ap-southeast-3.json index 11b9079081dd..c33c2a8d9d72 100644 --- a/moto/ec2/resources/latest_amis/ap-southeast-3.json +++ b/moto/ec2/resources/latest_amis/ap-southeast-3.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0a9a1fc31b71553fe", + "ami_id": "ami-0f6f4df1b77cfe8ba", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "785737495101", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-046cb5c84dfa6257a", + "ami_id": "ami-006fd3a803fd8eaad", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "785737495101", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ac4931cc34eb6454", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0df508a5d2ccd7a96", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "785737495101", "platform": null, "public": true, @@ -45,6 +47,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07d286bb12f11aa99", + "ami_id": "ami-06489676209c884f6", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "785737495101", "platform": null, "public": true, @@ -77,31 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05ad41abed75b602a", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "785737495101", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-09e6d1cb1e0a14355", + "ami_id": "ami-0a06e2e4857d562ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "785737495101", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b00523581bbba14a", + "ami_id": "ami-02a732f5ab0d7b2a4", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "785737495101", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba994e9df4fb52ca", + "ami_id": "ami-08b7bdad09395998e", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "785737495101", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0deb2c4af707cb447", + "ami_id": "ami-03f334ec0609d1021", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "785737495101", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0083345b376f22c16", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0711a53d6cd2dd553", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "785737495101", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-063e2a5745bb02ca3", + "ami_id": "ami-06e6047d17d90f19f", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "785737495101", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a06e2e4857d562ac", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "ami_id": "ami-036f5595560f4dbdf", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "785737495101", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00cc921012a7c8b8e", + "ami_id": "ami-098c0fc0b0dacdc57", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "785737495101", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ab5d5291c5d4ba17", + "ami_id": "ami-0fb64d966795637ff", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "785737495101", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-southeast-4.json b/moto/ec2/resources/latest_amis/ap-southeast-4.json index de2762511715..5e21258ba488 100644 --- a/moto/ec2/resources/latest_amis/ap-southeast-4.json +++ b/moto/ec2/resources/latest_amis/ap-southeast-4.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-071d8d16effbc15e0", + "ami_id": "ami-005bc061831f71e5b", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "212415852945", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ded3386f3358939b", + "ami_id": "ami-02bed1de3a2bf8780", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "212415852945", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa1be3070ed72caa", + "ami_id": "ami-0ba992a208207ef7b", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "212415852945", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-081391b8072681eb3", + "ami_id": "ami-0652cf3b641298878", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "212415852945", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039696392a40f7fa4", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-03de71f0d1ee70776", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "212415852945", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-013b8bcde89e851e4", + "ami_id": "ami-0969596b957b59782", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "212415852945", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-037fd04e71111d762", + "ami_id": "ami-0bf59cdbb87157bc9", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "212415852945", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-041a2d4ed51b98d7a", + "ami_id": "ami-0113943d73c7308ca", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "212415852945", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c647a17fdc5da87b", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0a71dd240aa9014d0", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "212415852945", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-052cb46a0dbf7589e", + "ami_id": "ami-0ae4652ffa69b7121", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "212415852945", "platform": null, "public": true, @@ -157,31 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08005ee5ac32755b1", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "212415852945", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0ae921475f2e5f833", + "ami_id": "ami-0a9b2961cf0036d29", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "212415852945", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a7d62dfd3d45bdf", + "ami_id": "ami-0a6db36b21bd7d87a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "212415852945", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ba992a208207ef7b", + "ami_id": "ami-016405573cca71465", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "212415852945", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e81aa63e514eeed8", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-01a7d62dfd3d45bdf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "212415852945", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ap-southeast-5.json b/moto/ec2/resources/latest_amis/ap-southeast-5.json index 5b1ad1bd59a5..b84c19ee7863 100644 --- a/moto/ec2/resources/latest_amis/ap-southeast-5.json +++ b/moto/ec2/resources/latest_amis/ap-southeast-5.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-023a2419cd91e4157", + "ami_id": "ami-05f5a717b347b19a2", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "860882034098", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acd2401f4878bf7e", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0f00c8ffae9743fec", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "860882034098", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c025fa1e6003f68c", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-09283999c6f2dde8b", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "860882034098", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f39e4592c5386d0", + "ami_id": "ami-0ac7d4986ac9e68e7", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "860882034098", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f2461ab273b8d8df", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0eb577ab8b918c809", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "860882034098", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad0e593cc9e9c7ec", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-022e3e61a0913b884", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "860882034098", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0661575474cd9265b", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-02f3aacf14efb0967", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "860882034098", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038a6a90e90fb4e28", + "ami_id": "ami-055ca449f3f1fb2b8", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "860882034098", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0853e0d6f56324b77", + "ami_id": "ami-09688146b6ab17c57", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "860882034098", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00fa6c74b38667b9b", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0def819d961ab057d", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "860882034098", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f551cd912aa71ec", + "ami_id": "ami-084c51ef79b5a9abb", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "860882034098", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d919f2809efd1f16", + "ami_id": "ami-0e5b1229fc8235ff7", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "860882034098", "platform": null, "public": true, @@ -189,6 +200,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ca-central-1.json b/moto/ec2/resources/latest_amis/ca-central-1.json index 82f9821160f2..825b7874c73f 100644 --- a/moto/ec2/resources/latest_amis/ca-central-1.json +++ b/moto/ec2/resources/latest_amis/ca-central-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0a34e8273f5407a78", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-00a382ab58c2c2dc1", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1e3f2707b2b8925", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-08edacb73fcbe5950", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3e2f2173b3ae1be", + "ami_id": "ami-0a34e8273f5407a78", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00485a61572922c62", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0e1c47112b84fa14e", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00a603d212f519b02", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0a7b272941b932361", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-051ba27d09b12be44", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "ami_id": "ami-0933c563c90df30a7", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07c76b2b4dd7fa4c5", + "ami_id": "ami-06816da431adb7634", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd7fffd60f0beb00", + "ami_id": "ami-01a27b79ff59a002f", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00dbc17e18fdb5181", + "ami_id": "ami-05073582a4b03d785", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01ddda3ec97e8395a", + "ami_id": "ami-0b428cf49a9622332", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-093f1a8fe06b80fb2", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-00dbc17e18fdb5181", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05c5073e360574ee9", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-053026820f396be92", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d5f18fbcad6fd6d6", + "ami_id": "ami-0d9ba497b6be7b8a3", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a7b272941b932361", + "ami_id": "ami-075cfa044dcfd9616", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7500f316a4eaed0", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-05088af2b1144cc0d", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/ca-west-1.json b/moto/ec2/resources/latest_amis/ca-west-1.json index 50fd868898d0..51a4af02f7ec 100644 --- a/moto/ec2/resources/latest_amis/ca-west-1.json +++ b/moto/ec2/resources/latest_amis/ca-west-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-06c45ca9438933639", + "ami_id": "ami-0177ae799a432cc8d", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "499701242899", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-058751bdb3dd81db7", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-057233ad3109fae4f", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "499701242899", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092ef66b19dd05dd6", + "ami_id": "ami-0060afd13481cffa4", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "499701242899", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8c99c47a52baec2", + "ami_id": "ami-0270848b0adae07b6", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "499701242899", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-062568181f7f22c10", + "ami_id": "ami-05586d5f95c77b005", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "499701242899", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-000ed112d27e75981", + "ami_id": "ami-0af03a84950e4499c", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "499701242899", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e0e25c56e023d96", + "ami_id": "ami-0babf413ada24e87d", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "499701242899", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09a1562779a74217b", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-04c396c3459697819", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "499701242899", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d4fd022c59c85b69", + "ami_id": "ami-00ad816e049f2ad7e", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "499701242899", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eda7788777024177", + "ami_id": "ami-0ad082fd91f81f405", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "499701242899", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08dbf8030cb8d091b", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0687b48e06b73f52b", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "499701242899", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c405f218985fa755", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-00cbc3d4437b1dddb", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "499701242899", "platform": null, "public": true, @@ -189,6 +200,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-central-1.json b/moto/ec2/resources/latest_amis/eu-central-1.json index 62c7c4a549c1..c33c59b7196e 100644 --- a/moto/ec2/resources/latest_amis/eu-central-1.json +++ b/moto/ec2/resources/latest_amis/eu-central-1.json @@ -1,27 +1,11 @@ [ { - "ami_id": "ami-0d1d6ae26e73eaa28", + "ami_id": "ami-06ee6255945a96aba", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-0d0c6da0d5245fc0c", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e320147c22e46f12", + "ami_id": "ami-0dd29ccb256c4739a", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-085131ff43045c877", + "ami_id": "ami-0eed1d873392d9145", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d991a34f5bba1637", + "ami_id": "ami-0decd1b3d41a56591", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,31 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0adf95422bdd9cce8", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-02ccbe126fe6afe82", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0e015d8bf82a76383", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ea5b4ffec4dbd33e", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0926257422331a2b7", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06a2635f50afe04b5", + "ami_id": "ami-0ee5d63de11001f2a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c8bcd5478c450b39", + "ami_id": "ami-06033023f666202f4", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0926257422331a2b7", + "ami_id": "ami-09812f0a3923b9250", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,31 +149,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a8e1c086d58b45b2", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0adf95422bdd9cce8", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-04c540dcec8a6320a", + "ami_id": "ami-0e2a782feab4a4e75", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05177692cadf96a35", + "ami_id": "ami-0976ea318264f111d", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b502948e7af13001", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0c70f279e26ecfe71", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd29ccb256c4739a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "ami_id": "ami-06d99a92c80f4f5df", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -253,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cef72b6ede1b3835", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-014eb100f18a84d89", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-central-2.json b/moto/ec2/resources/latest_amis/eu-central-2.json index 3c91bc758423..b974133fd3e2 100644 --- a/moto/ec2/resources/latest_amis/eu-central-2.json +++ b/moto/ec2/resources/latest_amis/eu-central-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0865541464bcfbbc0", + "ami_id": "ami-06215d3de46146df1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "084269151793", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-064e989f882103e91", + "ami_id": "ami-076956770352032ba", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "084269151793", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016f952c7c17c2bc1", + "ami_id": "ami-08132356812b1101b", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "084269151793", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0525c44bb6db2754b", + "ami_id": "ami-0a0c3a3296ccc2a29", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "084269151793", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07dd27968ffc7de78", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-05170e018c4b9fa26", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "084269151793", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a65d611dc227ff57", + "ami_id": "ami-0525c44bb6db2754b", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "084269151793", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-016d8c098d7de3648", + "ami_id": "ami-041cfb55dacab17e0", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "084269151793", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-057e1ad7362ec8870", + "ami_id": "ami-0945c34034a3bd8d1", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "084269151793", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0618a4700b67c0e56", + "ami_id": "ami-061119005f9146390", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "084269151793", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c6caefc19dd95065", + "ami_id": "ami-015e4b4e73152b21e", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "084269151793", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00692d3cea905a856", + "ami_id": "ami-061ace7f89d04b907", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "084269151793", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-077ddea2f41a89759", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-09cab67b3b6e787f4", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "084269151793", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-061ace7f89d04b907", + "ami_id": "ami-0c691e435e9b96619", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "084269151793", "platform": null, "public": true, @@ -205,31 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0540132cffea024eb", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", - "owner_id": "084269151793", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0d24b93ba743c689e", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0531c3ae5e6a43175", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "084269151793", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-north-1.json b/moto/ec2/resources/latest_amis/eu-north-1.json index 431105046704..9f25599b2750 100644 --- a/moto/ec2/resources/latest_amis/eu-north-1.json +++ b/moto/ec2/resources/latest_amis/eu-north-1.json @@ -1,27 +1,11 @@ [ { - "ami_id": "ami-05723e96a8778cff4", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0ac7651d4986abaa9", + "ami_id": "ami-03923f588006c56f2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0726b92c960d82de6", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-054a0f0606534475c", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f16cc5ea5f1cb0a3", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0b765af768614e6c0", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d266d33ca564bca7", + "ami_id": "ami-016038ae9cc8d9f51", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-087fba4aa07ebd20f", + "ami_id": "ami-01ac7012b66081840", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0484cf7398475e3ff", + "ami_id": "ami-03756f109e2dbe1a7", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07db8ca1e2fd00e5a", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-078b8c34e99c9ccc9", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09264649da56db6f0", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "ami_id": "ami-098fb9b180a371e55", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0646ea625a39d51f9", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-08dc4dc5448731424", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09decd00d8a834ba8", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0abbe2cefc6b9766f", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f91edcf87a71f290", + "ami_id": "ami-0ac7651d4986abaa9", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0abbe2cefc6b9766f", + "ami_id": "ami-08fbe5a8c8061068f", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fa7551693547711f", + "ami_id": "ami-0097bd518c8ab7f26", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-028e72c3243655deb", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0d54b0f1416719c63", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-south-1.json b/moto/ec2/resources/latest_amis/eu-south-1.json index 8497b08506a1..e2cd1a02b36b 100644 --- a/moto/ec2/resources/latest_amis/eu-south-1.json +++ b/moto/ec2/resources/latest_amis/eu-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-02a367282cb43fb6a", + "ami_id": "ami-07b3342fead6f416e", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "071630900071", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04b1f5f88b73e108e", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0d18b13f12d7d9bee", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "071630900071", "platform": null, "public": true, @@ -29,6 +30,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039ace91201811d6f", + "ami_id": "ami-028f9b9d5d82a3846", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "071630900071", "platform": null, "public": true, @@ -61,31 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ead55df7ef896c29", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", - "owner_id": "071630900071", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-08d37214fa54f8d62", + "ami_id": "ami-04919d210b8259c13", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "071630900071", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0038b098119fe86c2", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0c85b4d8bedd73034", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "071630900071", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05a8a3af0117b7d50", + "ami_id": "ami-0799a07c2e7bd0d8e", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "071630900071", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0225c342fd02fb8d1", + "ami_id": "ami-02c8b07ea6001f11a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "071630900071", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0799a07c2e7bd0d8e", + "ami_id": "ami-09ad570920fea6a25", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "071630900071", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04acb5c9445fb2439", + "ami_id": "ami-00d8eef5fd88fff7a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "071630900071", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd19cef753f3b5b8", + "ami_id": "ami-09560a1b9409a069e", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "071630900071", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06d09ff1b3d71d720", + "ami_id": "ami-00e3619281c3422e2", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "071630900071", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c95cc285a40b587d", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-051d0e44ef68ed9ec", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "071630900071", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfa50806b201020f", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-06dfd07c7caa09e8a", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "071630900071", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-south-2.json b/moto/ec2/resources/latest_amis/eu-south-2.json index 897d580a0adf..df6658e21b13 100644 --- a/moto/ec2/resources/latest_amis/eu-south-2.json +++ b/moto/ec2/resources/latest_amis/eu-south-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0e59a22effbc09c6b", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-090184113e523c866", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "061882349855", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f384c122a174b9a1", + "ami_id": "ami-0e59a22effbc09c6b", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "061882349855", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fb79df85770e226", + "ami_id": "ami-0c469d1376d8885fc", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "061882349855", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0018d9e522e5788a1", + "ami_id": "ami-047456c943d393211", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "061882349855", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0902857a8a412fc8c", + "ami_id": "ami-082e9199283944f90", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "061882349855", "platform": null, "public": true, @@ -77,31 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0899c92cd3fed84c8", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", - "owner_id": "061882349855", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0f81cad046249a8b2", + "ami_id": "ami-0b8569021b2b6a711", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "061882349855", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-09e1b6271b5796d34", + "ami_id": "ami-0d53b1ee71fa16be8", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "061882349855", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00ec71b5ded8a744a", + "ami_id": "ami-0193076abc313224b", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "061882349855", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-083897c524723258c", + "ami_id": "ami-0b1f01405f746a3cc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "061882349855", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08b03c735463b9ed0", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-03cbda5892f112018", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "061882349855", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f9e77b27ad924e68", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-0004cd00784def094", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "061882349855", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd59109e0de935cc", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0ae13a33778da27ee", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "061882349855", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9d5ac6acb2e2b8f", + "ami_id": "ami-083897c524723258c", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "061882349855", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0348bd110635f6c8c", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0fbf352d1db5a56c9", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "061882349855", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-west-1.json b/moto/ec2/resources/latest_amis/eu-west-1.json index 075c1170a99e..dfe1fdf2d22c 100644 --- a/moto/ec2/resources/latest_amis/eu-west-1.json +++ b/moto/ec2/resources/latest_amis/eu-west-1.json @@ -1,27 +1,11 @@ [ { - "ami_id": "ami-06830c04015a682b2", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-06d41bb61544b22fd", + "ami_id": "ami-00a18294952882aa9", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-039570049f7925817", + "ami_id": "ami-06e7a6db223dc3163", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-066891a8fb78fcd2f", + "ami_id": "ami-092725cd7c3d34243", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,31 +47,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04bf0ad5063e0d5ae", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-03fbd1bfa11a2fcc9", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-092725cd7c3d34243", + "ami_id": "ami-0a89fa9a6d8c7ad98", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-091c45340b5f12b20", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-03acfd8043d52d0a5", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0815a8303464df6b4", + "ami_id": "ami-02a42ddf6d7c28309", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a3aa95487f68ae40", + "ami_id": "ami-0f18151c3faf21c7b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04732e7834c378580", + "ami_id": "ami-0fc389ea796968582", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ebba8fc8759958a0", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0504fa6e3d36a805a", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0baf40bf03e39d1fb", + "ami_id": "ami-084e305595aed748a", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,31 +183,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e3924a5b2c1c5dbd", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "ami_id": "ami-04ac4001db8f4206b", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-03acfd8043d52d0a5", + "ami_id": "ami-049b732d3f35a4f44", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05edf2d87fdbd91c1", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0cd37ce82c94d5300", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,31 +234,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03fbd1bfa11a2fcc9", + "ami_id": "ami-0b853bf507e184143", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-0110c61df1b2de2f0", + "ami_id": "ami-0a3aa95487f68ae40", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +268,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-west-2.json b/moto/ec2/resources/latest_amis/eu-west-2.json index 89f06cda3728..429116a8ed3b 100644 --- a/moto/ec2/resources/latest_amis/eu-west-2.json +++ b/moto/ec2/resources/latest_amis/eu-west-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0941253010c787155", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-03a2093e132f2e6cf", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e25e1b125d1090eb", + "ami_id": "ami-064bc392a0f5f08b0", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a5d2a8b394817cf1", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-07814f2a622004ee6", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0aa9ffd4190a83e11", + "ami_id": "ami-06b277dfdfd595c06", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e8b7a721feb8f465", + "ami_id": "ami-0da7b3d41e60f4f25", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05aea9de2e41707df", + "ami_id": "ami-0eebf19cec0b40d10", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a2093e132f2e6cf", + "ami_id": "ami-0cdb51c8064e24bbc", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067a8f10247460fa8", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-01fdd5697f24695ad", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02d03222240270ad5", + "ami_id": "ami-00710ab5544b60cf7", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d43ee23f1bbf50f1", + "ami_id": "ami-03c97cf0c8e01613d", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,31 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-034a03f97adf7d498", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-028f3f570637b12d4", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0194bc210d425e9fe", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04645fcde5b3e6ba8", + "ami_id": "ami-06b70aca4f444e3bd", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0339dd711870579c8", + "ami_id": "ami-087e584bdd8910e31", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06b70aca4f444e3bd", + "ami_id": "ami-07ec7cb20b9e8826d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/eu-west-3.json b/moto/ec2/resources/latest_amis/eu-west-3.json index 127d102dbef4..b98e40bf12b8 100644 --- a/moto/ec2/resources/latest_amis/eu-west-3.json +++ b/moto/ec2/resources/latest_amis/eu-west-3.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-007c8bae005a90991", + "ami_id": "ami-009fa933414dafea6", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07e691c57c316d45f", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "ami_id": "ami-03884cf3d050bc488", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a56b2858743b2ad8", + "ami_id": "ami-0b7076f28404b2e77", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb67fd4397fdee04", + "ami_id": "ami-004f2229fb9afa698", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0606e7e2029598723", + "ami_id": "ami-014ed4a068afec06d", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c9895c4b882e8daa", + "ami_id": "ami-04652d46bb7135e9a", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cb41e44c0aeff108", + "ami_id": "ami-0cb67fd4397fdee04", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099ac9c06fe807584", + "ami_id": "ami-0446057e5961dfab6", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,31 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0df8c11ec9532f0b2", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-02c5a3215a5b6bf48", + "ami_id": "ami-07e691c57c316d45f", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f3bb80e24b71cd8", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0fec7dae0403a1374", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ad5085afd25c69db", + "ami_id": "ami-096206422ae32b993", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0185a7e47b4effb1a", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-04a8cb5cfd21a1ad6", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb78176400e7474b", + "ami_id": "ami-055c1d546eb5224cf", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08461dc8cd9e834e0", + "ami_id": "ami-0f3ddd16d4e2dc66b", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/il-central-1.json b/moto/ec2/resources/latest_amis/il-central-1.json index ff9d7003b60c..228da828f90a 100644 --- a/moto/ec2/resources/latest_amis/il-central-1.json +++ b/moto/ec2/resources/latest_amis/il-central-1.json @@ -1,27 +1,11 @@ [ { - "ami_id": "ami-068b6ee6e65da9502", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "659248058490", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0da1d303dcb0f0ccd", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0632d5335bb97c65e", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "659248058490", "platform": null, "public": true, @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2390b9eee5604f5", + "ami_id": "ami-0bfe6e05010d8b928", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "659248058490", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0db7f5d7f201c4d26", + "ami_id": "ami-07a8108700bbee58f", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "659248058490", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b66bec06bd21591f", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0e2da027e4efe7a40", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "659248058490", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01be8815ae02adc13", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0225d8c9b74dfb217", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "659248058490", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073e3f2f6066c303d", + "ami_id": "ami-019787945f6ceded3", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "659248058490", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03c39c68efd808294", + "ami_id": "ami-0e2b2ef36a48334f1", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "659248058490", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0359c9dd61a564395", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "ami_id": "ami-064116692d6c6fe14", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "659248058490", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01b37eb481474ce34", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-0ba4a2f4109bddbad", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "659248058490", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c321a13ebb8dbb98", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-0b1653fd7a34be9af", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "659248058490", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-073010268660cd71b", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-076e472dacde091e4", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "659248058490", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ccf5988662db03d1", + "ami_id": "ami-0fb6d931348dcde77", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "659248058490", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03822a05ceb773eaa", + "ami_id": "ami-01b37eb481474ce34", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "659248058490", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e7c829caecbed37c", + "ami_id": "ami-03c39c68efd808294", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "659248058490", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/me-central-1.json b/moto/ec2/resources/latest_amis/me-central-1.json index e3e3ec22d321..dc7949ed2e95 100644 --- a/moto/ec2/resources/latest_amis/me-central-1.json +++ b/moto/ec2/resources/latest_amis/me-central-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-07dbe6e5a34ce6842", + "ami_id": "ami-0c4117cd3d8aa9f9a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "541802698383", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b03131bc935cb0de", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-07e293d6d039ac984", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "541802698383", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f8f9791db5393ddb", + "ami_id": "ami-0e54d5a3f4328e05a", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "541802698383", "platform": null, "public": true, @@ -45,31 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03f02d7001cc9fd97", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "541802698383", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-0116d3cf2d97c8e7a", + "ami_id": "ami-03dd7dedb466fda31", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "541802698383", "platform": null, "public": true, @@ -77,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-024b2b2e900766380", + "ami_id": "ami-07dbe6e5a34ce6842", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "541802698383", "platform": null, "public": true, @@ -93,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0cc92eb1ba6d9c0dc", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0179c27d804a9daf4", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "541802698383", "platform": null, "public": true, @@ -109,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fb2afa2b7adddeca", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0d8d71f4cd0c7075a", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "541802698383", "platform": null, "public": true, @@ -125,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0accd27edad254c67", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0fff6077bd2021b02", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "541802698383", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d8bc674b24d1a49c", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0eb36fe6a4e3636ae", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "541802698383", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0811ca93aef6ce42b", + "ami_id": "ami-08a7bf37706b44e73", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "541802698383", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d1e6b78cb9f98ae7", + "ami_id": "ami-0c437a9e16290f248", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "541802698383", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f350ff53873fc6cf", + "ami_id": "ami-09f52bce03a291ab4", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "541802698383", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031685670e1b875bc", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-0e117f2c5cd0b18b8", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "541802698383", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06016e8589e152251", + "ami_id": "ami-03f02d7001cc9fd97", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "541802698383", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/me-south-1.json b/moto/ec2/resources/latest_amis/me-south-1.json index 77f2d0e0d7ee..0380869f0db2 100644 --- a/moto/ec2/resources/latest_amis/me-south-1.json +++ b/moto/ec2/resources/latest_amis/me-south-1.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-067d8691c71765888", + "ami_id": "ami-05499d41a2a116eea", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "656109587541", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ae778ec612d010b4", + "ami_id": "ami-0fd0526c58d174198", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "656109587541", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dd2cce03341e9fc4", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-09e1dc28b3e0bb941", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "656109587541", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eda99fa316ab08e3", + "ami_id": "ami-0dd2cce03341e9fc4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "656109587541", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02f88e2b5f3bdad9c", + "ami_id": "ami-01ab988ad98ca064a", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "656109587541", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-04aafc350c7e083c3", + "ami_id": "ami-0ad1096679fedb45e", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "656109587541", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f663ce8a02a0acb2", + "ami_id": "ami-0bfda9aa3d22a73eb", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "656109587541", "platform": null, "public": true, @@ -109,31 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06ca2d126ac448b43", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", - "hypervisor": "xen", - "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", - "owner_id": "656109587541", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-09674cbc215a5b7ce", + "ami_id": "ami-09d75aeb71075f055", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "656109587541", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-021617324e501399c", + "ami_id": "ami-0c57e66e676e78bbb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "656109587541", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06f941bda85a79af6", + "ami_id": "ami-0a95ef992b0368b4c", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "656109587541", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0afb3e5f4088017d3", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-095446478380f8e9d", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "656109587541", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fec9ca392a038d45", + "ami_id": "ami-021617324e501399c", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "656109587541", "platform": null, "public": true, @@ -205,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0bb436842d19dae73", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0026192d7e47b11bd", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "656109587541", "platform": null, "public": true, @@ -221,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0794f4086d54433ed", + "ami_id": "ami-068fad8f9c68e138e", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "656109587541", "platform": null, "public": true, @@ -237,6 +234,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/sa-east-1.json b/moto/ec2/resources/latest_amis/sa-east-1.json index e57e95637af6..b2d8fcfc8277 100644 --- a/moto/ec2/resources/latest_amis/sa-east-1.json +++ b/moto/ec2/resources/latest_amis/sa-east-1.json @@ -1,27 +1,28 @@ [ { - "ami_id": "ami-068567c2d6880f29a", + "ami_id": "ami-099a00dcc3e23efdc", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-04a3c459165d154a2", + "ami_id": "ami-02cfee28b56653f5c", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05fa5b967b1f219b9", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0d8043fd324bfd6bb", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,31 +47,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d9549eb6584a70a", + "ami_id": "ami-00e790d5e50d20718", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-0015c20a802f27f24", + "ami_id": "ami-081d377a25d396ece", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f55eca50ec06ba95", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0c02873ff6468ac96", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0572eb591f53d82ac", + "ami_id": "ami-07175a4964c7dbf51", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d633d1d0c11dd87e", + "ami_id": "ami-081f688ac9744913f", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06257920d4cbc3036", + "ami_id": "ami-0572eb591f53d82ac", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,31 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0ed93a8a86d02589e", + "ami_id": "ami-04a3c459165d154a2", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, - { - "ami_id": "ami-06d5a774486abdb57", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e26312e27812e528", + "ami_id": "ami-0765ce05601f5b42c", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0211e0a60d4a68496", + "ami_id": "ami-0ebd60ed5f7e6d01a", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,31 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-099a00dcc3e23efdc", + "ami_id": "ami-0d04d8442d28ce4e5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/sda1", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "paravirtual" - }, - { - "ami_id": "ami-0a4f5c9168896a4f4", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-070da0df5c204693e", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0481f5dbc8c608987", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -253,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-00e684cf1cbe1ac79", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-08cebf222384e82ec", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/us-east-1.json b/moto/ec2/resources/latest_amis/us-east-1.json index fcc3be09f9a3..a100d28d0cad 100644 --- a/moto/ec2/resources/latest_amis/us-east-1.json +++ b/moto/ec2/resources/latest_amis/us-east-1.json @@ -1,43 +1,45 @@ [ { - "ami_id": "ami-0b29c89c15cfb8a6d", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-02a0a9881cc05f389", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-049c803ffbf95fd18", + "ami_id": "ami-0e972d2890378139a", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-0c614dee691cbbf37", + "ami_id": "ami-0ace34e9f53c91c5d", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0acee429d2f2911e3", + "ami_id": "ami-02a53b0d62d37a757", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a757ae97532b4b38", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-0d33050d9d05e2b67", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f214d1b3d031dc53", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0f37c4a1ba152af46", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01f446d4eeaed8a3c", + "ami_id": "ami-0f498873b665ccbdb", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a736851bbaca21e6", + "ami_id": "ami-08b74ed5790045e09", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,31 +132,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e972d2890378139a", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", + "ami_id": "ami-099796375f5591aba", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-0ce4291ae0945f636", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0e4f2b95820b22bb0", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-092fafa51733b3866", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-08523976443f71beb", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d33050d9d05e2b67", + "ami_id": "ami-05b10e08d247fb927", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-025fc28057ecbff0d", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-01f446d4eeaed8a3c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05e2aaacf9d54ddae", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0df19145e878164b6", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,31 +234,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-02a0a9881cc05f389", + "ami_id": "ami-0320f10e7326a3e68", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-032ae1bccc5be78ca", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-08223dc14791687aa", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0536466eb5e1e098c", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-049c803ffbf95fd18", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +285,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/us-east-2.json b/moto/ec2/resources/latest_amis/us-east-2.json index 2cfc06d67c24..c22e032f4267 100644 --- a/moto/ec2/resources/latest_amis/us-east-2.json +++ b/moto/ec2/resources/latest_amis/us-east-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-07c65f0fc562b275d", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-077017b68f8b403a0", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-084cd199e6d1c38c6", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-0c2061ed8133c9960", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-031bb1452a43b486d", + "ami_id": "ami-0d30ab9f2d2a4a63a", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,6 +47,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-050213e8ecaf9647c", + "ami_id": "ami-0ef0a3b4303b17ec5", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03a92a9fe4c1d737a", + "ami_id": "ami-04e9f02d140368f36", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0eb82d3722687df7a", + "ami_id": "ami-08c048583e7accd18", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-018875e7376831abe", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "ami_id": "ami-0e23053bbed0dfd76", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d87cd594c972f7e6", + "ami_id": "ami-0327d24710a8bdf5a", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-068d2c697ea9eefd5", + "ami_id": "ami-0e7b3e7766d24a6ff", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-038d7fb916be6fe7d", + "ami_id": "ami-05958f3959932c0c6", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0105b95f3119505db", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-050213e8ecaf9647c", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +200,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0c649d908a8acc79f", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-0eb82d3722687df7a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,15 +217,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-03940c82eb474940f", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-0fc82f4dabc05670b", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -221,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a1b723b67d95aa0b", + "ami_id": "ami-087c15d9c91d7c392", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,6 +251,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/us-west-1.json b/moto/ec2/resources/latest_amis/us-west-1.json index 76e1e3f2aa3a..808d391d81e3 100644 --- a/moto/ec2/resources/latest_amis/us-west-1.json +++ b/moto/ec2/resources/latest_amis/us-west-1.json @@ -1,20 +1,4 @@ [ - { - "ami_id": "ami-019556f0a2ed33748", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", - "hypervisor": "xen", - "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", - "owner_id": "137112412989", - "platform": null, - "public": true, - "root_device_name": "/dev/xvda", - "root_device_type": "ebs", - "sriov": "simple", - "state": "available", - "virtualization_type": "hvm" - }, { "ami_id": "ami-00c7594bf585ed2f8", "architecture": "x86_64", @@ -29,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01a25c5ada4321ca4", + "ami_id": "ami-005bde867b3e3b55d", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01cb79f762a5ac139", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-001b119bd47542f52", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0225af4723bf19f31", + "ami_id": "ami-01a25c5ada4321ca4", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,31 +64,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-05024efc7c12fe83e", + "ami_id": "ami-0979281b47bd9306b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-019481e8fb78a2831", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "ami_id": "ami-010b368595cf93399", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,31 +98,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-035508b47628ce4d5", - "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", + "ami_id": "ami-01522daefc32e82ce", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-0f30c7150f0c20f37", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-01891d4f3898759b2", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -141,15 +132,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-06114d52c0976a495", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "ami_id": "ami-019481e8fb78a2831", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,15 +149,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0083d338f94092649", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-033ec81ee893e9f0f", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -173,15 +166,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0810e059735ce3a9d", + "ami_id": "ami-0579f32049c590471", "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,15 +183,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0f538343c99c514d9", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-06531e4e72c7bf42d", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -205,31 +200,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08d4f6bbae664bd41", + "ami_id": "ami-035508b47628ce4d5", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-0c4c60455c4fa3ea5", - "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "ami_id": "ami-06b643203f7909461", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,15 +234,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-047be44302360a8c7", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-094b981da55429bfc", + "architecture": "x86_64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -253,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0dfa9f9795100123a", + "ami_id": "ami-04a8a201475bda83b", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +268,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ec2/resources/latest_amis/us-west-2.json b/moto/ec2/resources/latest_amis/us-west-2.json index e07429016f71..424ca0de8706 100644 --- a/moto/ec2/resources/latest_amis/us-west-2.json +++ b/moto/ec2/resources/latest_amis/us-west-2.json @@ -1,11 +1,11 @@ [ { - "ami_id": "ami-0943c5647c051803d", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 HVM gp2", + "ami_id": "ami-01e51f6eab4001911", + "architecture": "x86_64", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -13,15 +13,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0d7d857b0b59e8d60", - "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-02019c3fe961f228f", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-arm64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -29,15 +30,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0b3872a15ade63858", + "ami_id": "ami-06e76e30b61d6b96e", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-x86_64-ebs", + "name": "amzn2-ami-minimal-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -45,15 +47,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08f90a6b4d0d8bb1a", + "ami_id": "ami-07cf0ce00f5310f98", "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250123.4 arm64 HVM gp2", + "description": "Amazon Linux 2 LTS Arm64 Kernel 5.10 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-arm64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -61,15 +64,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0696e233fcd5f173e", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM gp2", + "ami_id": "ami-0e6f666acd96a928f", + "architecture": "arm64", + "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250220.0 arm64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-gp2", + "name": "amzn2-ami-hvm-2.0.20250220.0-arm64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -77,15 +81,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-08c2229f389a1ba08", + "ami_id": "ami-027951e78de46a00e", "architecture": "x86_64", - "description": "Amazon Linux 2 AMI 2.0.20250123.4 x86_64 HVM ebs", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -93,15 +98,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0a897ba00eaed7398", + "ami_id": "ami-085ead5d496a7df3a", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 x86_64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-x86_64", "owner_id": "137112412989", "platform": null, "public": true, @@ -109,15 +115,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-067d435ee698a3ff3", + "ami_id": "ami-0ff6043467eb495ac", "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 HVM kernel-6.1", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 Minimal HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-2023.6.20250128.0-kernel-6.1-arm64", + "name": "al2023-ami-minimal-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -125,31 +132,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01eb87b911b951e1b", + "ami_id": "ami-0ec97a477d5016bb4", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-0fc126a5457ec8751", + "ami_id": "ami-04c217a46f3b71b26", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, @@ -157,31 +166,33 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0fd11ab7e33010a99", + "ami_id": "ami-01d63655b1179be60", "architecture": "x86_64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 x86_64 Minimal HVM kernel-6.1", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-x86_64", + "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/xvda", + "root_device_name": "/dev/sda1", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "hvm" + "tags": {}, + "virtualization_type": "paravirtual" }, { - "ami_id": "ami-048a3a89c9760319a", + "ami_id": "ami-097133556d56b9617", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", + "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", + "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -189,47 +200,50 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-01d63655b1179be60", + "ami_id": "ami-01eb87b911b951e1b", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal PV ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-minimal-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-0ec97a477d5016bb4", + "ami_id": "ami-0fc126a5457ec8751", "architecture": "x86_64", - "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 PV ebs", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 Minimal HVM ebs", "hypervisor": "xen", "image_type": "machine", - "name": "amzn-ami-pv-2018.03.0.20231218.0-x86_64-ebs", + "name": "amzn-ami-minimal-hvm-2018.03.0.20231218.0-x86_64-ebs", "owner_id": "137112412989", "platform": null, "public": true, - "root_device_name": "/dev/sda1", + "root_device_name": "/dev/xvda", "root_device_type": "ebs", "sriov": "simple", "state": "available", - "virtualization_type": "paravirtual" + "tags": {}, + "virtualization_type": "hvm" }, { - "ami_id": "ami-03908669959edfc4d", - "architecture": "arm64", - "description": "Amazon Linux 2 LTS Arm64 AMI 2.0.20250123.4 arm64 Minimal HVM ebs", + "ami_id": "ami-048a3a89c9760319a", + "architecture": "x86_64", + "description": "Amazon Linux AMI 2018.03.0.20231218.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-minimal-hvm-2.0.20250123.4-arm64-ebs", + "name": "amzn-ami-hvm-2018.03.0.20231218.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -237,15 +251,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-0e2cdd213f1d9ce7f", - "architecture": "x86_64", - "description": "Amazon Linux 2 Kernel 5.10 AMI 2.0.20250123.4 x86_64 HVM ebs", + "ami_id": "ami-021c478d943abe2da", + "architecture": "arm64", + "description": "Amazon Linux 2023 AMI 2023.6.20250218.2 arm64 HVM kernel-6.1", "hypervisor": "xen", "image_type": "machine", - "name": "amzn2-ami-kernel-5.10-hvm-2.0.20250123.4-x86_64-ebs", + "name": "al2023-ami-2023.6.20250218.2-kernel-6.1-arm64", "owner_id": "137112412989", "platform": null, "public": true, @@ -253,15 +268,16 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" }, { - "ami_id": "ami-07eb0ada8ce4a8ac9", - "architecture": "arm64", - "description": "Amazon Linux 2023 AMI 2023.6.20250128.0 arm64 Minimal HVM kernel-6.1", + "ami_id": "ami-04c0ab8f1251f1600", + "architecture": "x86_64", + "description": "Amazon Linux 2 AMI 2.0.20250220.0 x86_64 HVM gp2", "hypervisor": "xen", "image_type": "machine", - "name": "al2023-ami-minimal-2023.6.20250128.0-kernel-6.1-arm64", + "name": "amzn2-ami-hvm-2.0.20250220.0-x86_64-gp2", "owner_id": "137112412989", "platform": null, "public": true, @@ -269,6 +285,7 @@ "root_device_type": "ebs", "sriov": "simple", "state": "available", + "tags": {}, "virtualization_type": "hvm" } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json b/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json index b89feac031ec..207d5df4c8b7 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/af-south-1.json @@ -2,38 +2,38 @@ { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105765.099, + "LastModifiedDate": 1740179916.438, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-03bfef557bd6e5f3e", - "Version": 75 + "Value": "ami-01d2b384e20bad78f", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105766.043, + "LastModifiedDate": 1740179917.398, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0671fccf2e013c44d", - "Version": 75 + "Value": "ami-071ec74a9abd8fec2", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105769.741, + "LastModifiedDate": 1740179921.161, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0671fccf2e013c44d", - "Version": 75 + "Value": "ami-071ec74a9abd8fec2", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105766.989, + "LastModifiedDate": 1740179918.354, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-06d3964c9da0fd83b", - "Version": 75 + "Value": "ami-0733842416a0df3a2", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -65,65 +65,65 @@ { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754160.192, + "LastModifiedDate": 1740531772.218, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0e0d19a8e8af59685", - "Version": 109 + "Value": "ami-02a781410bf8cbca6", + "Version": 111 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754161.138, + "LastModifiedDate": 1740531773.167, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ea9a63a1915f734b", - "Version": 109 + "Value": "ami-02d303fe50d84398c", + "Version": 111 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754164.799, + "LastModifiedDate": 1740531776.963, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0ba2ca11e66479f23", - "Version": 101 + "Value": "ami-0c9f0fc5b34c2583b", + "Version": 103 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105768.829, + "LastModifiedDate": 1740179920.228, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-03bfef557bd6e5f3e", - "Version": 75 + "Value": "ami-01d2b384e20bad78f", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105767.914, + "LastModifiedDate": 1740179919.282, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0be17a198fa95ffd4", - "Version": 75 + "Value": "ami-09c71b71c234b2f11", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105770.668, + "LastModifiedDate": 1740179922.092, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-06d3964c9da0fd83b", - "Version": 75 + "Value": "ami-0733842416a0df3a2", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105771.575, + "LastModifiedDate": 1740179923.076, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0be17a198fa95ffd4", - "Version": 75 + "Value": "ami-09c71b71c234b2f11", + "Version": 78 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -137,47 +137,47 @@ { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754159.248, + "LastModifiedDate": 1740531771.25, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-00b34ff79d1df4464", - "Version": 101 + "Value": "ami-00c345b35865a00be", + "Version": 103 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754162.047, + "LastModifiedDate": 1740531774.113, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-03251e602c1e46a66", - "Version": 89 + "Value": "ami-0145cb586de37550b", + "Version": 91 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754162.974, + "LastModifiedDate": 1740531775.059, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-007195a721c187446", - "Version": 89 + "Value": "ami-0a76d8e8676efa547", + "Version": 91 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754163.879, + "LastModifiedDate": 1740531775.999, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0cb48e72cf7f2c93f", - "Version": 89 + "Value": "ami-0a85da3ff7af02a9c", + "Version": 91 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754165.719, + "LastModifiedDate": 1740531777.901, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0503be5ebeea0d458", - "Version": 109 + "Value": "ami-0f356b0761b2b8a56", + "Version": 111 }, { "ARN": "arn:aws:ssm:af-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-s3", diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json index 29acf96e2815..c0a1c71e3477 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-east-1.json @@ -2,29 +2,29 @@ { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105766.045, + "LastModifiedDate": 1740179915.782, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0397c5400028b418c", - "Version": 75 + "Value": "ami-0123e5d7542358c86", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105765.019, + "LastModifiedDate": 1740179914.695, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-00fee2704af39b932", - "Version": 75 + "Value": "ami-0093cd382a344222b", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105766.577, + "LastModifiedDate": 1740179916.324, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-04aad4199686559f2", - "Version": 75 + "Value": "ami-0eb0875904d8c64d4", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -56,83 +56,83 @@ { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754158.896, + "LastModifiedDate": 1740531800.23, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0c8f784bd57fe0f9a", - "Version": 118 + "Value": "ami-09d50c89eea79b609", + "Version": 120 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754159.456, + "LastModifiedDate": 1740531800.871, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0104ab5c6c83c3233", - "Version": 118 + "Value": "ami-03f21c54cd9c5f6c6", + "Version": 120 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754160.551, + "LastModifiedDate": 1740531801.976, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0a705047851c7d67e", - "Version": 87 + "Value": "ami-049097fc41239c25d", + "Version": 89 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754161.639, + "LastModifiedDate": 1740531803.098, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-04c702a33de745821", - "Version": 99 + "Value": "ami-0156fbb594d14d341", + "Version": 101 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105763.429, + "LastModifiedDate": 1740179913.017, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-01ae65cf76b8f70ad", - "Version": 75 + "Value": "ami-04c5063b66ffe6aa6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105763.973, + "LastModifiedDate": 1740179913.584, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0397c5400028b418c", - "Version": 75 + "Value": "ami-0123e5d7542358c86", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105765.545, + "LastModifiedDate": 1740179915.235, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-01ae65cf76b8f70ad", - "Version": 75 + "Value": "ami-04c5063b66ffe6aa6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105764.494, + "LastModifiedDate": 1740179914.143, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-04aad4199686559f2", - "Version": 75 + "Value": "ami-0eb0875904d8c64d4", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105767.092, + "LastModifiedDate": 1740179916.865, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-00fee2704af39b932", - "Version": 75 + "Value": "ami-0093cd382a344222b", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -155,37 +155,37 @@ { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754158.32, + "LastModifiedDate": 1740531799.66, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0b6ffb650620d9e40", - "Version": 99 + "Value": "ami-0c99b94e29c2060e7", + "Version": 101 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754160.002, + "LastModifiedDate": 1740531801.436, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-09d22544dbef846a2", - "Version": 87 + "Value": "ami-0ebbe350ac321f042", + "Version": 89 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754161.108, + "LastModifiedDate": 1740531802.547, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0d1252702acf44b5b", - "Version": 87 + "Value": "ami-0b12ca0dd6f421504", + "Version": 89 }, { "ARN": "arn:aws:ssm:ap-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754162.202, + "LastModifiedDate": 1740531803.662, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06492ce80d662ed9e", - "Version": 118 + "Value": "ami-072c172d6bf7a2ab8", + "Version": 120 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json index 49dfff729d86..2483308e23de 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105735.174, + "LastModifiedDate": 1740179913.714, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0ffeb6c61663cf92e", - "Version": 108 + "Value": "ami-0d60652e0357ad94f", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105735.683, + "LastModifiedDate": 1740179914.249, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-06c6f3fa7959e5fdd", - "Version": 108 + "Value": "ami-072298436ce5cb0c4", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105736.187, + "LastModifiedDate": 1740179914.766, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0aa3a23475df2996e", - "Version": 108 + "Value": "ami-0488984a4dbfbb4f3", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105736.69, + "LastModifiedDate": 1740179915.254, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0fe2406f5af75ea71", - "Version": 108 + "Value": "ami-002ace860218ade29", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105738.121, + "LastModifiedDate": 1740179916.714, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0aa3a23475df2996e", - "Version": 108 + "Value": "ami-0488984a4dbfbb4f3", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754158.264, + "LastModifiedDate": 1740531798.954, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-001c86e93b7d22586", - "Version": 140 + "Value": "ami-0fed4bb210d8c2d4a", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754158.8, + "LastModifiedDate": 1740531799.468, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-02ebc4439e7296501", - "Version": 140 + "Value": "ami-00561c77487da40c1", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754159.757, + "LastModifiedDate": 1740531800.442, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-055bb751da45ef09f", - "Version": 92 + "Value": "ami-0270541b93beb351e", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105737.636, + "LastModifiedDate": 1740179916.25, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-06c6f3fa7959e5fdd", - "Version": 108 + "Value": "ami-072298436ce5cb0c4", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105738.602, + "LastModifiedDate": 1740179917.194, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0fe2406f5af75ea71", - "Version": 108 + "Value": "ami-002ace860218ade29", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754157.685, + "LastModifiedDate": 1740531798.435, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-082110a9bbac6ae94", - "Version": 123 + "Value": "ami-05a6915d79508cb98", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754159.273, + "LastModifiedDate": 1740531799.952, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-01b4355f17bce1de3", - "Version": 92 + "Value": "ami-0b41b77d9b2f81963", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754160.221, + "LastModifiedDate": 1740531800.911, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-02d527f2d9747c7b2", - "Version": 92 + "Value": "ami-09a73d1fbb2515f95", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754160.678, + "LastModifiedDate": 1740531801.385, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0a9d152e003e61f8e", - "Version": 123 + "Value": "ami-0b11998eb2c7d1f64", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105737.159, + "LastModifiedDate": 1740179915.736, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0ffeb6c61663cf92e", - "Version": 108 + "Value": "ami-0d60652e0357ad94f", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:ap-northeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754161.158, + "LastModifiedDate": 1740531801.882, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0b1ecc132e1c4c555", - "Version": 140 + "Value": "ami-0cc2b48c038740582", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json index d5cf069024c2..d37660c50577 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105743.976, + "LastModifiedDate": 1740179919.566, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0b0bfe6dd7d14ae24", - "Version": 108 + "Value": "ami-0532f08d6bf660cd2", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105744.553, + "LastModifiedDate": 1740179920.118, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0a2c043e56e9abcc5", - "Version": 108 + "Value": "ami-075e056c0f3d02523", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105745.085, + "LastModifiedDate": 1740179920.652, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0079f4ef39f05939a", - "Version": 108 + "Value": "ami-07a0be44d6a0a3868", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105745.615, + "LastModifiedDate": 1740179921.16, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0108cd65bde8ff96e", - "Version": 108 + "Value": "ami-03c13c4d19aa1a6f1", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105747.218, + "LastModifiedDate": 1740179922.728, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0079f4ef39f05939a", - "Version": 108 + "Value": "ami-07a0be44d6a0a3868", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754167.858, + "LastModifiedDate": 1740531804.847, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-067d6ed07a781f6b5", - "Version": 140 + "Value": "ami-0fc87f4a8410f936a", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754168.393, + "LastModifiedDate": 1740531805.407, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-01bc8f85a143385bc", - "Version": 140 + "Value": "ami-0891aeb92f786d7a2", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754169.414, + "LastModifiedDate": 1740531806.45, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0a7ad285d9a5510a2", - "Version": 92 + "Value": "ami-0f076639221a87f90", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105746.147, + "LastModifiedDate": 1740179921.686, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0b0bfe6dd7d14ae24", - "Version": 108 + "Value": "ami-0532f08d6bf660cd2", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105746.677, + "LastModifiedDate": 1740179922.205, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0a2c043e56e9abcc5", - "Version": 108 + "Value": "ami-075e056c0f3d02523", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105747.745, + "LastModifiedDate": 1740179923.252, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0108cd65bde8ff96e", - "Version": 108 + "Value": "ami-03c13c4d19aa1a6f1", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754167.304, + "LastModifiedDate": 1740531804.28, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0f4ec9d6b452f7fb6", - "Version": 108 + "Value": "ami-05422da99421f259e", + "Version": 110 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754168.902, + "LastModifiedDate": 1740531805.925, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0acb4186d7a2cb95c", - "Version": 92 + "Value": "ami-0ff178d403f71cc8e", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754169.928, + "LastModifiedDate": 1740531806.97, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-07c33d2197ac9fe9c", - "Version": 92 + "Value": "ami-08fe4e7862fb0d4c2", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754170.431, + "LastModifiedDate": 1740531807.507, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-09fcdd06a06257200", - "Version": 108 + "Value": "ami-08d62a76228597757", + "Version": 110 }, { "ARN": "arn:aws:ssm:ap-northeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754170.955, + "LastModifiedDate": 1740531808.041, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-08aa487cc4f6fcc0d", - "Version": 140 + "Value": "ami-09a8b6485df1cea56", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json index 8e3f69ef35bc..1d8aaffaa14d 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-northeast-3.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105749.59, + "LastModifiedDate": 1740179925.381, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-05b15a4fbb42cecfc", - "Version": 108 + "Value": "ami-0be01d0f9896e9858", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105750.028, + "LastModifiedDate": 1740179925.813, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-036c694af8914eb01", - "Version": 108 + "Value": "ami-0439cd8bc5628c9e8", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105750.562, + "LastModifiedDate": 1740179926.231, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-028bae4323065290e", - "Version": 108 + "Value": "ami-0a4510db241b7aaf2", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105750.984, + "LastModifiedDate": 1740179926.658, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-014e25b8eea863333", - "Version": 108 + "Value": "ami-02c822a6a6841f0bd", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105752.212, + "LastModifiedDate": 1740179927.889, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-028bae4323065290e", - "Version": 108 + "Value": "ami-0a4510db241b7aaf2", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754173.49, + "LastModifiedDate": 1740531810.61, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0557f03cd3e67eca8", - "Version": 106 + "Value": "ami-06aff7b1cdd338568", + "Version": 108 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754173.929, + "LastModifiedDate": 1740531811.03, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-00d6888a92f69a5a2", - "Version": 106 + "Value": "ami-0316e0efae0ce53d2", + "Version": 108 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754174.923, + "LastModifiedDate": 1740531811.832, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-014a9fb8389a37561", - "Version": 92 + "Value": "ami-09a79bb80d6bc57cf", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105751.4, + "LastModifiedDate": 1740179927.077, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-05b15a4fbb42cecfc", - "Version": 108 + "Value": "ami-0be01d0f9896e9858", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105751.807, + "LastModifiedDate": 1740179927.485, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-036c694af8914eb01", - "Version": 108 + "Value": "ami-0439cd8bc5628c9e8", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105752.658, + "LastModifiedDate": 1740179928.305, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-014e25b8eea863333", - "Version": 108 + "Value": "ami-02c822a6a6841f0bd", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754173.061, + "LastModifiedDate": 1740531810.184, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-078588408fafc66b7", - "Version": 106 + "Value": "ami-02d5dce2857c6e275", + "Version": 108 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754174.509, + "LastModifiedDate": 1740531811.415, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0686e688ab9e6d3a8", - "Version": 92 + "Value": "ami-0ce116ba5b5e740c0", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754175.327, + "LastModifiedDate": 1740531812.255, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0957d21eb5fac55d6", - "Version": 92 + "Value": "ami-0002c62a734685afc", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754175.76, + "LastModifiedDate": 1740531812.675, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-09da61898b614578f", - "Version": 106 + "Value": "ami-084ca76f93fe39302", + "Version": 108 }, { "ARN": "arn:aws:ssm:ap-northeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754176.167, + "LastModifiedDate": 1740531813.104, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f335224df73af6d6", - "Version": 106 + "Value": "ami-038a2d56064efe960", + "Version": 108 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json index f32840cc95bd..7a398158cd0b 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-south-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105755.547, + "LastModifiedDate": 1740179931.454, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0b0c4d81950666dcb", - "Version": 108 + "Value": "ami-05b5cad4abb7f9a27", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105756.366, + "LastModifiedDate": 1740179932.283, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-05fa46471b02db0ce", - "Version": 108 + "Value": "ami-0d682f26195e9ec0f", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105757.189, + "LastModifiedDate": 1740179933.083, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-006904762e5396f75", - "Version": 108 + "Value": "ami-0791dc4749c0c3762", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105758.021, + "LastModifiedDate": 1740179933.909, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-00d66e7b8208088a3", - "Version": 108 + "Value": "ami-007b6f6e6338e2892", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105760.452, + "LastModifiedDate": 1740179936.327, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-006904762e5396f75", - "Version": 108 + "Value": "ami-0791dc4749c0c3762", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754180.391, + "LastModifiedDate": 1740531817.049, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0998b2be8e3343291", - "Version": 140 + "Value": "ami-009a5d5634e191cf6", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754181.214, + "LastModifiedDate": 1740531817.854, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-09c0d3755326acbf0", - "Version": 140 + "Value": "ami-0f4f6fd19fad11737", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754182.853, + "LastModifiedDate": 1740531819.409, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06134730b06f51b8c", - "Version": 92 + "Value": "ami-092e82014435e1c40", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105758.836, + "LastModifiedDate": 1740179934.714, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0b0c4d81950666dcb", - "Version": 108 + "Value": "ami-05b5cad4abb7f9a27", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105759.652, + "LastModifiedDate": 1740179935.515, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-05fa46471b02db0ce", - "Version": 108 + "Value": "ami-0d682f26195e9ec0f", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105761.252, + "LastModifiedDate": 1740179937.142, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-00d66e7b8208088a3", - "Version": 108 + "Value": "ami-007b6f6e6338e2892", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754179.558, + "LastModifiedDate": 1740531816.221, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-06063117918faf83a", - "Version": 123 + "Value": "ami-0cfc29b64958bc112", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754182.039, + "LastModifiedDate": 1740531818.645, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0dedb04d9e747210d", - "Version": 92 + "Value": "ami-0863c41b4c73c8429", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754183.675, + "LastModifiedDate": 1740531820.186, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-02972a2a0ac299bb7", - "Version": 92 + "Value": "ami-0f2ce9ce760bd7133", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754184.49, + "LastModifiedDate": 1740531820.981, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-06de06a3e67b340b2", - "Version": 123 + "Value": "ami-08cdbcae206da6cd9", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754185.315, + "LastModifiedDate": 1740531821.772, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f85f04ff2611dfd8", - "Version": 140 + "Value": "ami-01f11a789b5c73b1b", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json index a11d373e1d61..cd3469da24a2 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-south-2.json @@ -2,128 +2,128 @@ { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105736.25, + "LastModifiedDate": 1740179886.236, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0a2f5c261453e1332", - "Version": 75 + "Value": "ami-0bfe4690b562de9f0", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105737.006, + "LastModifiedDate": 1740179887.004, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0d81f2cd09b410166", - "Version": 75 + "Value": "ami-09e23b3de35f110f6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105739.212, + "LastModifiedDate": 1740179889.206, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0a2f5c261453e1332", - "Version": 75 + "Value": "ami-0bfe4690b562de9f0", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105740.69, + "LastModifiedDate": 1740179890.7, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-08fc52de927d1997d", - "Version": 75 + "Value": "ami-0913c3ef5dcd60f9c", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754159.052, + "LastModifiedDate": 1740531772.147, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0fa4d872b2db37437", - "Version": 68 + "Value": "ami-08611ae1b1c25bb68", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754159.793, + "LastModifiedDate": 1740531772.892, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f474ae1b31df2b4e", - "Version": 68 + "Value": "ami-0d4b8048bad80f480", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754160.534, + "LastModifiedDate": 1740531773.634, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-073d1fbc6e6f6d689", - "Version": 68 + "Value": "ami-0f6139a1490f16a43", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754162.725, + "LastModifiedDate": 1740531775.802, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-036ca7d3e7fe7595b", - "Version": 68 + "Value": "ami-011d433a1e8ab9068", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754163.466, + "LastModifiedDate": 1740531776.516, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-003a4f5091141b9c8", - "Version": 68 + "Value": "ami-05f9d64591d54b277", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754164.229, + "LastModifiedDate": 1740531777.241, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-04d5d8b11c1af1066", - "Version": 68 + "Value": "ami-0d21b95058541273d", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105739.958, + "LastModifiedDate": 1740179889.943, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0d81f2cd09b410166", - "Version": 75 + "Value": "ami-09e23b3de35f110f6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105737.739, + "LastModifiedDate": 1740179887.744, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-08fc52de927d1997d", - "Version": 75 + "Value": "ami-0913c3ef5dcd60f9c", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105738.483, + "LastModifiedDate": 1740179888.48, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0c4a8ada443218f28", - "Version": 75 + "Value": "ami-0d432158e813b8255", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105741.413, + "LastModifiedDate": 1740179891.406, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0c4a8ada443218f28", - "Version": 75 + "Value": "ami-0d432158e813b8255", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -155,19 +155,19 @@ { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754161.243, + "LastModifiedDate": 1740531774.373, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-098ae95d8d62155b9", - "Version": 68 + "Value": "ami-090b6f65f33bba57a", + "Version": 70 }, { "ARN": "arn:aws:ssm:ap-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754161.989, + "LastModifiedDate": 1740531775.09, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-006d55904a2d5756d", - "Version": 68 + "Value": "ami-0bf2c470595a329f0", + "Version": 70 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json index 03e985d75f74..993fd9349993 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105763.811, + "LastModifiedDate": 1740179940.164, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-00c055f797c1cc760", - "Version": 108 + "Value": "ami-0e060e9d48e60801d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105764.469, + "LastModifiedDate": 1740179940.805, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-08908d9e195550170", - "Version": 108 + "Value": "ami-0b03299ddb99998e9", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105765.126, + "LastModifiedDate": 1740179941.463, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-043ebfd610baa25c6", - "Version": 108 + "Value": "ami-0193334c7f6486b55", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105765.756, + "LastModifiedDate": 1740179942.106, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-06e5b734ba521bd2c", - "Version": 108 + "Value": "ami-04dbab1e907ca0f56", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105767.613, + "LastModifiedDate": 1740179944.014, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-043ebfd610baa25c6", - "Version": 108 + "Value": "ami-0193334c7f6486b55", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754188.853, + "LastModifiedDate": 1740531825.282, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-08ac0020b8e4012e0", - "Version": 141 + "Value": "ami-0b340beacb6ac1aaa", + "Version": 143 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754189.479, + "LastModifiedDate": 1740531825.919, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0093ceb06eded359f", - "Version": 141 + "Value": "ami-0301dd2fb476c9850", + "Version": 143 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754190.717, + "LastModifiedDate": 1740531827.138, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-04cefe6e023cd8b00", - "Version": 92 + "Value": "ami-0e6122a6f662c1c14", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105767.013, + "LastModifiedDate": 1740179943.39, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-08908d9e195550170", - "Version": 108 + "Value": "ami-0b03299ddb99998e9", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105768.229, + "LastModifiedDate": 1740179944.63, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-06e5b734ba521bd2c", - "Version": 108 + "Value": "ami-04dbab1e907ca0f56", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754188.205, + "LastModifiedDate": 1740531824.656, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0c5dcbe8a2d514211", - "Version": 123 + "Value": "ami-015712baec0c110d9", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754190.106, + "LastModifiedDate": 1740531826.538, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0cc77316ce7a2d0a4", - "Version": 92 + "Value": "ami-0726c8f833d8aea08", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754191.318, + "LastModifiedDate": 1740531827.747, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-00ba9561b67b5723f", - "Version": 92 + "Value": "ami-0d8eee72f13bd7a0f", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754191.929, + "LastModifiedDate": 1740531828.352, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-02a1122b5622780e6", - "Version": 123 + "Value": "ami-093a297f96d53070c", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105766.391, + "LastModifiedDate": 1740179942.754, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-00c055f797c1cc760", - "Version": 108 + "Value": "ami-0e060e9d48e60801d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:ap-southeast-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754192.544, + "LastModifiedDate": 1740531828.965, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-032bed0ebcdbd600e", - "Version": 141 + "Value": "ami-06b6ca402fabc0ec3", + "Version": 143 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json index bf7e90a3063f..507f2d88f2a5 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105770.547, + "LastModifiedDate": 1740179947.325, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0a5395a56ccf8d85f", - "Version": 108 + "Value": "ami-0deb8c0a292c27c84", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105771.123, + "LastModifiedDate": 1740179947.924, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-07ba57196a766fc6d", - "Version": 108 + "Value": "ami-064b71eca68aadfb8", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105771.681, + "LastModifiedDate": 1740179948.509, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0cb4c7701eeb623ce", - "Version": 108 + "Value": "ami-08c75b0c6627a23d9", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105772.249, + "LastModifiedDate": 1740179949.068, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0c8123dbfb13de66e", - "Version": 108 + "Value": "ami-010782e22b4f0514d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105773.938, + "LastModifiedDate": 1740179950.764, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0cb4c7701eeb623ce", - "Version": 108 + "Value": "ami-08c75b0c6627a23d9", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754195.764, + "LastModifiedDate": 1740531832.226, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-00e5f5d9da6e47c7b", - "Version": 140 + "Value": "ami-04beacff130b78ebe", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754196.341, + "LastModifiedDate": 1740531832.791, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-032fe8e30544994dd", - "Version": 140 + "Value": "ami-044b50caba366ec3a", + "Version": 142 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754197.461, + "LastModifiedDate": 1740531834.095, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-02554717525068a5e", - "Version": 92 + "Value": "ami-067bcc0be19bebd00", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105773.383, + "LastModifiedDate": 1740179950.192, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-07ba57196a766fc6d", - "Version": 108 + "Value": "ami-064b71eca68aadfb8", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105774.566, + "LastModifiedDate": 1740179951.317, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0c8123dbfb13de66e", - "Version": 108 + "Value": "ami-010782e22b4f0514d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754195.175, + "LastModifiedDate": 1740531831.637, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-00c6291f9f84457ac", - "Version": 123 + "Value": "ami-0657e75dc79d2cbec", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754196.902, + "LastModifiedDate": 1740531833.421, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-08890d5029cf7cefe", - "Version": 92 + "Value": "ami-0d88eb46a731f986d", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754198.015, + "LastModifiedDate": 1740531834.647, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-00c97da679c04f4a0", - "Version": 92 + "Value": "ami-064f7307bedf5c5b8", + "Version": 94 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754198.589, + "LastModifiedDate": 1740531835.2, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0eb8f50b0b29ede73", - "Version": 123 + "Value": "ami-046d87b170ccd612f", + "Version": 125 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105772.815, + "LastModifiedDate": 1740179949.628, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0a5395a56ccf8d85f", - "Version": 108 + "Value": "ami-0deb8c0a292c27c84", + "Version": 112 }, { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:ap-southeast-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754199.146, + "LastModifiedDate": 1740531835.842, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-073366a05a89990b0", - "Version": 140 + "Value": "ami-05f57b907e9424ac5", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json index f353383e3cd4..0a6b405ae07b 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-3.json @@ -2,29 +2,29 @@ { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105763.72, + "LastModifiedDate": 1740179913.981, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-063e2a5745bb02ca3", - "Version": 75 + "Value": "ami-06e6047d17d90f19f", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105767.054, + "LastModifiedDate": 1740179917.332, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0ba994e9df4fb52ca", - "Version": 75 + "Value": "ami-02a732f5ab0d7b2a4", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105767.697, + "LastModifiedDate": 1740179917.976, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-05ad41abed75b602a", - "Version": 75 + "Value": "ami-06489676209c884f6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -38,101 +38,101 @@ { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754130.137, + "LastModifiedDate": 1740531770.281, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0ac4931cc34eb6454", - "Version": 83 + "Value": "ami-036f5595560f4dbdf", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754132.152, + "LastModifiedDate": 1740531772.249, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0ab5d5291c5d4ba17", - "Version": 83 + "Value": "ami-0711a53d6cd2dd553", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754132.813, + "LastModifiedDate": 1740531772.907, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-00cc921012a7c8b8e", - "Version": 83 + "Value": "ami-006fd3a803fd8eaad", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754133.466, + "LastModifiedDate": 1740531773.551, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-046cb5c84dfa6257a", - "Version": 83 + "Value": "ami-03f334ec0609d1021", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754134.115, + "LastModifiedDate": 1740531774.171, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-07d286bb12f11aa99", - "Version": 83 + "Value": "ami-0fb64d966795637ff", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754134.77, + "LastModifiedDate": 1740531774.807, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0deb2c4af707cb447", - "Version": 83 + "Value": "ami-098c0fc0b0dacdc57", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105764.385, + "LastModifiedDate": 1740179914.665, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0ba994e9df4fb52ca", - "Version": 75 + "Value": "ami-02a732f5ab0d7b2a4", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105766.367, + "LastModifiedDate": 1740179916.684, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-063e2a5745bb02ca3", - "Version": 75 + "Value": "ami-06e6047d17d90f19f", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105765.057, + "LastModifiedDate": 1740179915.323, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-05ad41abed75b602a", - "Version": 75 + "Value": "ami-06489676209c884f6", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105765.711, + "LastModifiedDate": 1740179916.02, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0083345b376f22c16", - "Version": 75 + "Value": "ami-0f6f4df1b77cfe8ba", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105768.351, + "LastModifiedDate": 1740179918.615, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0083345b376f22c16", - "Version": 75 + "Value": "ami-0f6f4df1b77cfe8ba", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -155,19 +155,19 @@ { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754130.823, + "LastModifiedDate": 1740531770.945, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0a9a1fc31b71553fe", - "Version": 83 + "Value": "ami-08b7bdad09395998e", + "Version": 85 }, { "ARN": "arn:aws:ssm:ap-southeast-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754131.488, + "LastModifiedDate": 1740531771.593, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0b00523581bbba14a", - "Version": 83 + "Value": "ami-0df508a5d2ccd7a96", + "Version": 85 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-4.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-4.json index 1f45aa3c2fa6..7e183ae5f00c 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-4.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-4.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105763.708, + "LastModifiedDate": 1740179886.017, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-071d8d16effbc15e0", - "Version": 75 + "Value": "ami-0652cf3b641298878", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105766.628, + "LastModifiedDate": 1740179888.865, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0fa1be3070ed72caa", - "Version": 75 + "Value": "ami-0a9b2961cf0036d29", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105764.914, + "LastModifiedDate": 1740179887.146, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-08005ee5ac32755b1", - "Version": 75 + "Value": "ami-03de71f0d1ee70776", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105767.193, + "LastModifiedDate": 1740179889.431, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-08005ee5ac32755b1", - "Version": 75 + "Value": "ami-03de71f0d1ee70776", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105767.738, + "LastModifiedDate": 1740179889.998, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-039696392a40f7fa4", - "Version": 75 + "Value": "ami-0969596b957b59782", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -56,65 +56,65 @@ { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754386.73, + "LastModifiedDate": 1740531798.687, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-081391b8072681eb3", - "Version": 65 + "Value": "ami-0113943d73c7308ca", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754387.317, + "LastModifiedDate": 1740531799.279, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0c647a17fdc5da87b", - "Version": 65 + "Value": "ami-0a6db36b21bd7d87a", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754388.434, + "LastModifiedDate": 1740531800.437, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0e81aa63e514eeed8", - "Version": 65 + "Value": "ami-005bc061831f71e5b", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754390.129, + "LastModifiedDate": 1740531802.094, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-041a2d4ed51b98d7a", - "Version": 65 + "Value": "ami-0a71dd240aa9014d0", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105764.3, + "LastModifiedDate": 1740179886.596, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0fa1be3070ed72caa", - "Version": 75 + "Value": "ami-0a9b2961cf0036d29", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105766.056, + "LastModifiedDate": 1740179888.309, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-071d8d16effbc15e0", - "Version": 75 + "Value": "ami-0652cf3b641298878", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105765.496, + "LastModifiedDate": 1740179887.729, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-039696392a40f7fa4", - "Version": 75 + "Value": "ami-0969596b957b59782", + "Version": 78 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -137,37 +137,37 @@ { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754387.879, + "LastModifiedDate": 1740531799.864, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ae921475f2e5f833", - "Version": 65 + "Value": "ami-0bf59cdbb87157bc9", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754388.997, + "LastModifiedDate": 1740531800.984, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-037fd04e71111d762", - "Version": 65 + "Value": "ami-0ae4652ffa69b7121", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754389.567, + "LastModifiedDate": 1740531801.542, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-052cb46a0dbf7589e", - "Version": 65 + "Value": "ami-016405573cca71465", + "Version": 67 }, { "ARN": "arn:aws:ssm:ap-southeast-4::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754390.694, + "LastModifiedDate": 1740531802.653, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0ded3386f3358939b", - "Version": 65 + "Value": "ami-02bed1de3a2bf8780", + "Version": 67 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-5.json b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-5.json index 6c5aa03c77db..1618c2c16b87 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-5.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ap-southeast-5.json @@ -2,145 +2,145 @@ { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105739.148, + "LastModifiedDate": 1740179888.174, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0acd2401f4878bf7e", - "Version": 25 + "Value": "ami-0e5b1229fc8235ff7", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105741.555, + "LastModifiedDate": 1740179890.584, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0acd2401f4878bf7e", - "Version": 25 + "Value": "ami-0e5b1229fc8235ff7", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105739.738, + "LastModifiedDate": 1740179888.769, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0f2461ab273b8d8df", - "Version": 25 + "Value": "ami-022e3e61a0913b884", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105740.352, + "LastModifiedDate": 1740179889.377, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-038a6a90e90fb4e28", - "Version": 25 + "Value": "ami-09688146b6ab17c57", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105742.163, + "LastModifiedDate": 1740179891.166, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0f2461ab273b8d8df", - "Version": 25 + "Value": "ami-022e3e61a0913b884", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105742.756, + "LastModifiedDate": 1740179891.774, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-038a6a90e90fb4e28", - "Version": 25 + "Value": "ami-09688146b6ab17c57", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754130.969, + "LastModifiedDate": 1740531798.576, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-08f39e4592c5386d0", - "Version": 18 + "Value": "ami-0ac7d4986ac9e68e7", + "Version": 20 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754133.402, + "LastModifiedDate": 1740531801.027, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-00fa6c74b38667b9b", - "Version": 21 + "Value": "ami-09283999c6f2dde8b", + "Version": 23 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754134.044, + "LastModifiedDate": 1740531801.617, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0853e0d6f56324b77", - "Version": 20 + "Value": "ami-084c51ef79b5a9abb", + "Version": 22 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754135.213, + "LastModifiedDate": 1740531802.806, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06f551cd912aa71ec", - "Version": 20 + "Value": "ami-02f3aacf14efb0967", + "Version": 22 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105738.51, + "LastModifiedDate": 1740179887.543, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-023a2419cd91e4157", - "Version": 25 + "Value": "ami-05f5a717b347b19a2", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105740.952, + "LastModifiedDate": 1740179889.99, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-023a2419cd91e4157", - "Version": 25 + "Value": "ami-05f5a717b347b19a2", + "Version": 28 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754131.58, + "LastModifiedDate": 1740531799.198, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0d919f2809efd1f16", - "Version": 19 + "Value": "ami-055ca449f3f1fb2b8", + "Version": 21 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754132.198, + "LastModifiedDate": 1740531799.819, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ad0e593cc9e9c7ec", - "Version": 21 + "Value": "ami-0eb577ab8b918c809", + "Version": 23 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754132.824, + "LastModifiedDate": 1740531800.413, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0661575474cd9265b", - "Version": 18 + "Value": "ami-0f00c8ffae9743fec", + "Version": 20 }, { "ARN": "arn:aws:ssm:ap-southeast-5::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754134.628, + "LastModifiedDate": 1740531802.212, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0c025fa1e6003f68c", - "Version": 18 + "Value": "ami-0def819d961ab057d", + "Version": 20 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json index ac3060d2f5d1..00a6a2da481b 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ca-central-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105776.204, + "LastModifiedDate": 1740179953.312, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-00a603d212f519b02", - "Version": 108 + "Value": "ami-08edacb73fcbe5950", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105776.538, + "LastModifiedDate": 1740179953.666, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0d5f18fbcad6fd6d6", - "Version": 108 + "Value": "ami-05073582a4b03d785", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105776.873, + "LastModifiedDate": 1740179954.027, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0fd7fffd60f0beb00", - "Version": 108 + "Value": "ami-05088af2b1144cc0d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105777.202, + "LastModifiedDate": 1740179954.349, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0e7500f316a4eaed0", - "Version": 108 + "Value": "ami-0d9ba497b6be7b8a3", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105778.2, + "LastModifiedDate": 1740179955.322, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0fd7fffd60f0beb00", - "Version": 108 + "Value": "ami-05088af2b1144cc0d", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754201.428, + "LastModifiedDate": 1740531838.271, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-01ddda3ec97e8395a", - "Version": 141 + "Value": "ami-075cfa044dcfd9616", + "Version": 143 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754201.765, + "LastModifiedDate": 1740531838.635, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-07c76b2b4dd7fa4c5", - "Version": 141 + "Value": "ami-06816da431adb7634", + "Version": 143 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754202.433, + "LastModifiedDate": 1740531839.33, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0b3e2f2173b3ae1be", - "Version": 92 + "Value": "ami-053026820f396be92", + "Version": 94 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105777.551, + "LastModifiedDate": 1740179954.68, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-00a603d212f519b02", - "Version": 108 + "Value": "ami-08edacb73fcbe5950", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105777.86, + "LastModifiedDate": 1740179954.993, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0d5f18fbcad6fd6d6", - "Version": 108 + "Value": "ami-05073582a4b03d785", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105778.498, + "LastModifiedDate": 1740179955.66, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0e7500f316a4eaed0", - "Version": 108 + "Value": "ami-0d9ba497b6be7b8a3", + "Version": 112 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754201.086, + "LastModifiedDate": 1740531837.869, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-05c5073e360574ee9", - "Version": 108 + "Value": "ami-00a382ab58c2c2dc1", + "Version": 110 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754202.093, + "LastModifiedDate": 1740531838.978, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-00485a61572922c62", - "Version": 92 + "Value": "ami-0933c563c90df30a7", + "Version": 94 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754202.733, + "LastModifiedDate": 1740531839.684, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0d1e3f2707b2b8925", - "Version": 92 + "Value": "ami-0e1c47112b84fa14e", + "Version": 94 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754203.038, + "LastModifiedDate": 1740531840.054, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-093f1a8fe06b80fb2", - "Version": 108 + "Value": "ami-01a27b79ff59a002f", + "Version": 110 }, { "ARN": "arn:aws:ssm:ca-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754203.363, + "LastModifiedDate": 1740531840.407, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-051ba27d09b12be44", - "Version": 141 + "Value": "ami-0b428cf49a9622332", + "Version": 143 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/ca-west-1.json b/moto/ssm/resources/ami-amazon-linux-latest/ca-west-1.json index 84a2b9e44777..570a06818585 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/ca-west-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/ca-west-1.json @@ -2,145 +2,145 @@ { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105996.063, + "LastModifiedDate": 1740180171.55, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-08dbf8030cb8d091b", - "Version": 46 + "Value": "ami-057233ad3109fae4f", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105996.797, + "LastModifiedDate": 1740180172.26, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-08dbf8030cb8d091b", - "Version": 46 + "Value": "ami-057233ad3109fae4f", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105996.959, + "LastModifiedDate": 1740180172.414, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0eda7788777024177", - "Version": 46 + "Value": "ami-05586d5f95c77b005", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105996.631, + "LastModifiedDate": 1740180172.089, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-09e0e25c56e023d96", - "Version": 46 + "Value": "ami-0687b48e06b73f52b", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105997.128, + "LastModifiedDate": 1740180172.563, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-092ef66b19dd05dd6", - "Version": 46 + "Value": "ami-00ad816e049f2ad7e", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105997.305, + "LastModifiedDate": 1740180172.721, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-09e0e25c56e023d96", - "Version": 46 + "Value": "ami-0687b48e06b73f52b", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754398.374, + "LastModifiedDate": 1740532057.114, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0a8c99c47a52baec2", - "Version": 37 + "Value": "ami-0060afd13481cffa4", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754398.931, + "LastModifiedDate": 1740532057.665, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-09a1562779a74217b", - "Version": 37 + "Value": "ami-00cbc3d4437b1dddb", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754399.281, + "LastModifiedDate": 1740532058.019, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-062568181f7f22c10", - "Version": 37 + "Value": "ami-0177ae799a432cc8d", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754399.441, + "LastModifiedDate": 1740532058.192, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0d4fd022c59c85b69", - "Version": 37 + "Value": "ami-0270848b0adae07b6", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105996.242, + "LastModifiedDate": 1740180171.726, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0eda7788777024177", - "Version": 46 + "Value": "ami-05586d5f95c77b005", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105996.422, + "LastModifiedDate": 1740180171.92, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-092ef66b19dd05dd6", - "Version": 46 + "Value": "ami-00ad816e049f2ad7e", + "Version": 49 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754398.562, + "LastModifiedDate": 1740532057.314, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0c405f218985fa755", - "Version": 37 + "Value": "ami-0ad082fd91f81f405", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754398.744, + "LastModifiedDate": 1740532057.493, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-000ed112d27e75981", - "Version": 37 + "Value": "ami-0af03a84950e4499c", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754399.102, + "LastModifiedDate": 1740532057.851, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-058751bdb3dd81db7", - "Version": 37 + "Value": "ami-04c396c3459697819", + "Version": 39 }, { "ARN": "arn:aws:ssm:ca-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754399.599, + "LastModifiedDate": 1740532058.371, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06c45ca9438933639", - "Version": 37 + "Value": "ami-0babf413ada24e87d", + "Version": 39 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json index 33784212fc90..84dc5698e3f2 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-central-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105780.671, + "LastModifiedDate": 1740179958.178, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-04c540dcec8a6320a", - "Version": 108 + "Value": "ami-06d99a92c80f4f5df", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105781.266, + "LastModifiedDate": 1740179958.768, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-02ccbe126fe6afe82", - "Version": 108 + "Value": "ami-06ee6255945a96aba", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105781.982, + "LastModifiedDate": 1740179959.355, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0ea5b4ffec4dbd33e", - "Version": 108 + "Value": "ami-06033023f666202f4", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105782.558, + "LastModifiedDate": 1740179959.92, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0b502948e7af13001", - "Version": 108 + "Value": "ami-0976ea318264f111d", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105784.248, + "LastModifiedDate": 1740179961.612, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0ea5b4ffec4dbd33e", - "Version": 108 + "Value": "ami-06033023f666202f4", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754206.475, + "LastModifiedDate": 1740531843.636, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0d0c6da0d5245fc0c", - "Version": 140 + "Value": "ami-0ee5d63de11001f2a", + "Version": 142 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754207.099, + "LastModifiedDate": 1740531844.252, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-085131ff43045c877", - "Version": 140 + "Value": "ami-014eb100f18a84d89", + "Version": 142 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754208.23, + "LastModifiedDate": 1740531845.413, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-05177692cadf96a35", - "Version": 92 + "Value": "ami-0decd1b3d41a56591", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105783.69, + "LastModifiedDate": 1740179961.052, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-02ccbe126fe6afe82", - "Version": 108 + "Value": "ami-06ee6255945a96aba", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105784.811, + "LastModifiedDate": 1740179962.172, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0b502948e7af13001", - "Version": 108 + "Value": "ami-0976ea318264f111d", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754205.885, + "LastModifiedDate": 1740531843.003, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0cef72b6ede1b3835", - "Version": 123 + "Value": "ami-0e2a782feab4a4e75", + "Version": 125 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754207.672, + "LastModifiedDate": 1740531844.84, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0a8e1c086d58b45b2", - "Version": 92 + "Value": "ami-0e015d8bf82a76383", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754208.792, + "LastModifiedDate": 1740531845.992, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0e320147c22e46f12", - "Version": 92 + "Value": "ami-09812f0a3923b9250", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754209.356, + "LastModifiedDate": 1740531846.593, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0c8bcd5478c450b39", - "Version": 123 + "Value": "ami-0c70f279e26ecfe71", + "Version": 125 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105783.118, + "LastModifiedDate": 1740179960.479, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-04c540dcec8a6320a", - "Version": 108 + "Value": "ami-06d99a92c80f4f5df", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:eu-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754209.941, + "LastModifiedDate": 1740531847.179, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06a2635f50afe04b5", - "Version": 140 + "Value": "ami-0eed1d873392d9145", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json index 358daa93dbae..2bab3c858a50 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-central-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738106004.642, + "LastModifiedDate": 1740180185.755, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0618a4700b67c0e56", - "Version": 73 + "Value": "ami-05170e018c4b9fa26", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738106005.178, + "LastModifiedDate": 1740180186.309, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0a65d611dc227ff57", - "Version": 73 + "Value": "ami-0a0c3a3296ccc2a29", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738106004.089, + "LastModifiedDate": 1740180185.181, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-00692d3cea905a856", - "Version": 73 + "Value": "ami-0531c3ae5e6a43175", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738106005.724, + "LastModifiedDate": 1740180186.862, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-016d8c098d7de3648", - "Version": 73 + "Value": "ami-08132356812b1101b", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738106006.295, + "LastModifiedDate": 1740180187.41, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-00692d3cea905a856", - "Version": 73 + "Value": "ami-0531c3ae5e6a43175", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -56,65 +56,65 @@ { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754437.205, + "LastModifiedDate": 1740532098.969, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0540132cffea024eb", - "Version": 67 + "Value": "ami-041cfb55dacab17e0", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754437.8, + "LastModifiedDate": 1740532099.566, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-07dd27968ffc7de78", - "Version": 67 + "Value": "ami-015e4b4e73152b21e", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754438.937, + "LastModifiedDate": 1740532100.736, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-016f952c7c17c2bc1", - "Version": 67 + "Value": "ami-09cab67b3b6e787f4", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754439.496, + "LastModifiedDate": 1740532101.323, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0c6caefc19dd95065", - "Version": 67 + "Value": "ami-06215d3de46146df1", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738106002.381, + "LastModifiedDate": 1740180183.462, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0618a4700b67c0e56", - "Version": 73 + "Value": "ami-05170e018c4b9fa26", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738106002.969, + "LastModifiedDate": 1740180184.057, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0a65d611dc227ff57", - "Version": 73 + "Value": "ami-0a0c3a3296ccc2a29", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738106003.534, + "LastModifiedDate": 1740180184.632, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-016d8c098d7de3648", - "Version": 73 + "Value": "ami-08132356812b1101b", + "Version": 76 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -137,37 +137,37 @@ { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754438.373, + "LastModifiedDate": 1740532100.159, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-077ddea2f41a89759", - "Version": 67 + "Value": "ami-076956770352032ba", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754440.071, + "LastModifiedDate": 1740532101.907, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-057e1ad7362ec8870", - "Version": 67 + "Value": "ami-0c691e435e9b96619", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754440.643, + "LastModifiedDate": 1740532102.479, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0d24b93ba743c689e", - "Version": 67 + "Value": "ami-061119005f9146390", + "Version": 69 }, { "ARN": "arn:aws:ssm:eu-central-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754441.201, + "LastModifiedDate": 1740532103.065, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-064e989f882103e91", - "Version": 67 + "Value": "ami-0945c34034a3bd8d1", + "Version": 69 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json index df92c7a452e8..4848c6ecbf61 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-north-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105787.155, + "LastModifiedDate": 1740179964.853, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0f16cc5ea5f1cb0a3", - "Version": 108 + "Value": "ami-054a0f0606534475c", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105787.795, + "LastModifiedDate": 1740179965.502, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-087fba4aa07ebd20f", - "Version": 108 + "Value": "ami-016038ae9cc8d9f51", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105788.437, + "LastModifiedDate": 1740179966.177, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-05723e96a8778cff4", - "Version": 108 + "Value": "ami-078b8c34e99c9ccc9", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105789.088, + "LastModifiedDate": 1740179966.825, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0f91edcf87a71f290", - "Version": 108 + "Value": "ami-0d54b0f1416719c63", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105791.001, + "LastModifiedDate": 1740179968.717, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-05723e96a8778cff4", - "Version": 108 + "Value": "ami-078b8c34e99c9ccc9", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754213.36, + "LastModifiedDate": 1740531850.656, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-07db8ca1e2fd00e5a", - "Version": 130 + "Value": "ami-03756f109e2dbe1a7", + "Version": 132 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754214.036, + "LastModifiedDate": 1740531851.334, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0484cf7398475e3ff", - "Version": 130 + "Value": "ami-08fbe5a8c8061068f", + "Version": 132 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754215.303, + "LastModifiedDate": 1740531852.663, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0726b92c960d82de6", - "Version": 94 + "Value": "ami-0b765af768614e6c0", + "Version": 96 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105789.734, + "LastModifiedDate": 1740179967.47, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0f16cc5ea5f1cb0a3", - "Version": 108 + "Value": "ami-054a0f0606534475c", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105790.365, + "LastModifiedDate": 1740179968.085, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-087fba4aa07ebd20f", - "Version": 108 + "Value": "ami-016038ae9cc8d9f51", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105791.622, + "LastModifiedDate": 1740179969.37, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0f91edcf87a71f290", - "Version": 108 + "Value": "ami-0d54b0f1416719c63", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754212.572, + "LastModifiedDate": 1740531849.946, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-028e72c3243655deb", - "Version": 110 + "Value": "ami-08dc4dc5448731424", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754214.671, + "LastModifiedDate": 1740531852.004, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0fa7551693547711f", - "Version": 94 + "Value": "ami-0097bd518c8ab7f26", + "Version": 96 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754215.921, + "LastModifiedDate": 1740531853.336, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0d266d33ca564bca7", - "Version": 94 + "Value": "ami-01ac7012b66081840", + "Version": 96 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754216.537, + "LastModifiedDate": 1740531853.991, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-09decd00d8a834ba8", - "Version": 110 + "Value": "ami-098fb9b180a371e55", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-north-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754217.157, + "LastModifiedDate": 1740531854.682, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-09264649da56db6f0", - "Version": 130 + "Value": "ami-03923f588006c56f2", + "Version": 132 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json index 8734c3829926..ebc124f99c6d 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-south-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105992.272, + "LastModifiedDate": 1740180163.663, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0dfa50806b201020f", - "Version": 75 + "Value": "ami-02c8b07ea6001f11a", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105990.489, + "LastModifiedDate": 1740180161.929, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-08d37214fa54f8d62", - "Version": 75 + "Value": "ami-0c85b4d8bedd73034", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105991.086, + "LastModifiedDate": 1740180162.508, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-02a367282cb43fb6a", - "Version": 75 + "Value": "ami-051d0e44ef68ed9ec", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105992.849, + "LastModifiedDate": 1740180164.248, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-08d37214fa54f8d62", - "Version": 75 + "Value": "ami-0c85b4d8bedd73034", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105993.439, + "LastModifiedDate": 1740180164.837, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-02a367282cb43fb6a", - "Version": 75 + "Value": "ami-051d0e44ef68ed9ec", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -74,47 +74,47 @@ { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754389.645, + "LastModifiedDate": 1740532012.073, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-039ace91201811d6f", - "Version": 89 + "Value": "ami-028f9b9d5d82a3846", + "Version": 91 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754390.223, + "LastModifiedDate": 1740532012.665, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0ead55df7ef896c29", - "Version": 89 + "Value": "ami-0d18b13f12d7d9bee", + "Version": 91 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105989.271, + "LastModifiedDate": 1740180160.691, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0fd19cef753f3b5b8", - "Version": 75 + "Value": "ami-06dfd07c7caa09e8a", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105989.878, + "LastModifiedDate": 1740180161.298, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0dfa50806b201020f", - "Version": 75 + "Value": "ami-02c8b07ea6001f11a", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105991.681, + "LastModifiedDate": 1740180163.092, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0fd19cef753f3b5b8", - "Version": 75 + "Value": "ami-06dfd07c7caa09e8a", + "Version": 78 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -128,56 +128,56 @@ { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754387.866, + "LastModifiedDate": 1740532010.249, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-04b1f5f88b73e108e", - "Version": 101 + "Value": "ami-04919d210b8259c13", + "Version": 103 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754388.476, + "LastModifiedDate": 1740532010.88, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-05a8a3af0117b7d50", - "Version": 109 + "Value": "ami-07b3342fead6f416e", + "Version": 111 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754389.065, + "LastModifiedDate": 1740532011.482, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-04acb5c9445fb2439", - "Version": 109 + "Value": "ami-00e3619281c3422e2", + "Version": 111 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754390.783, + "LastModifiedDate": 1740532013.267, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0038b098119fe86c2", - "Version": 89 + "Value": "ami-00d8eef5fd88fff7a", + "Version": 91 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754391.354, + "LastModifiedDate": 1740532013.88, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0c95cc285a40b587d", - "Version": 101 + "Value": "ami-09560a1b9409a069e", + "Version": 103 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754391.958, + "LastModifiedDate": 1740532014.48, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0225c342fd02fb8d1", - "Version": 109 + "Value": "ami-09ad570920fea6a25", + "Version": 111 }, { "ARN": "arn:aws:ssm:eu-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-s3", diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json index 191dba86edba..9c92e0622252 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-south-2.json @@ -2,38 +2,38 @@ { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105972.787, + "LastModifiedDate": 1740180204.876, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0348bd110635f6c8c", - "Version": 74 + "Value": "ami-0c469d1376d8885fc", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105975.867, + "LastModifiedDate": 1740180207.929, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-09e1b6271b5796d34", - "Version": 74 + "Value": "ami-047456c943d393211", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105974.644, + "LastModifiedDate": 1740180206.711, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0902857a8a412fc8c", - "Version": 74 + "Value": "ami-082e9199283944f90", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105977.121, + "LastModifiedDate": 1740180209.154, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0902857a8a412fc8c", - "Version": 74 + "Value": "ami-082e9199283944f90", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -47,83 +47,83 @@ { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754434.157, + "LastModifiedDate": 1740532032.416, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0c9d5ac6acb2e2b8f", - "Version": 66 + "Value": "ami-0d53b1ee71fa16be8", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754434.781, + "LastModifiedDate": 1740532033.07, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-03fb79df85770e226", - "Version": 66 + "Value": "ami-090184113e523c866", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754436.025, + "LastModifiedDate": 1740532034.339, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0f81cad046249a8b2", - "Version": 66 + "Value": "ami-0b8569021b2b6a711", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754436.645, + "LastModifiedDate": 1740532034.97, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0899c92cd3fed84c8", - "Version": 66 + "Value": "ami-0193076abc313224b", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754437.261, + "LastModifiedDate": 1740532035.607, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0018d9e522e5788a1", - "Version": 66 + "Value": "ami-0fbf352d1db5a56c9", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105973.419, + "LastModifiedDate": 1740180205.505, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-09e1b6271b5796d34", - "Version": 74 + "Value": "ami-047456c943d393211", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105975.257, + "LastModifiedDate": 1740180207.326, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0348bd110635f6c8c", - "Version": 74 + "Value": "ami-0c469d1376d8885fc", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105974.022, + "LastModifiedDate": 1740180206.107, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-00ec71b5ded8a744a", - "Version": 74 + "Value": "ami-0004cd00784def094", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105976.511, + "LastModifiedDate": 1740180208.529, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-00ec71b5ded8a744a", - "Version": 74 + "Value": "ami-0004cd00784def094", + "Version": 77 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,28 +146,28 @@ { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754432.886, + "LastModifiedDate": 1740532031.114, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-08b03c735463b9ed0", - "Version": 66 + "Value": "ami-0ae13a33778da27ee", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754433.519, + "LastModifiedDate": 1740532031.774, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0fd59109e0de935cc", - "Version": 66 + "Value": "ami-03cbda5892f112018", + "Version": 68 }, { "ARN": "arn:aws:ssm:eu-south-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754435.402, + "LastModifiedDate": 1740532033.706, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f384c122a174b9a1", - "Version": 66 + "Value": "ami-0b1f01405f746a3cc", + "Version": 68 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json index 98a074f8a18b..b7d41eba09ba 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105793.831, + "LastModifiedDate": 1740179975.875, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-04bf0ad5063e0d5ae", - "Version": 108 + "Value": "ami-0fc389ea796968582", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105794.336, + "LastModifiedDate": 1740179976.371, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-05edf2d87fdbd91c1", - "Version": 108 + "Value": "ami-0a89fa9a6d8c7ad98", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105794.832, + "LastModifiedDate": 1740179976.872, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-06830c04015a682b2", - "Version": 108 + "Value": "ami-04ac4001db8f4206b", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105795.318, + "LastModifiedDate": 1740179977.354, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0baf40bf03e39d1fb", - "Version": 108 + "Value": "ami-084e305595aed748a", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105796.75, + "LastModifiedDate": 1740179978.819, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-06830c04015a682b2", - "Version": 108 + "Value": "ami-04ac4001db8f4206b", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754220.208, + "LastModifiedDate": 1740531861.752, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-06d41bb61544b22fd", - "Version": 140 + "Value": "ami-02a42ddf6d7c28309", + "Version": 142 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754220.695, + "LastModifiedDate": 1740531862.269, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-066891a8fb78fcd2f", - "Version": 140 + "Value": "ami-049b732d3f35a4f44", + "Version": 142 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754221.65, + "LastModifiedDate": 1740531863.431, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0815a8303464df6b4", - "Version": 92 + "Value": "ami-0b853bf507e184143", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105796.271, + "LastModifiedDate": 1740179978.337, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-05edf2d87fdbd91c1", - "Version": 108 + "Value": "ami-0a89fa9a6d8c7ad98", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105797.271, + "LastModifiedDate": 1740179979.286, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0baf40bf03e39d1fb", - "Version": 108 + "Value": "ami-084e305595aed748a", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754219.723, + "LastModifiedDate": 1740531861.238, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-091c45340b5f12b20", - "Version": 128 + "Value": "ami-0cd37ce82c94d5300", + "Version": 130 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754221.176, + "LastModifiedDate": 1740531862.922, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-039570049f7925817", - "Version": 92 + "Value": "ami-06e7a6db223dc3163", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754222.119, + "LastModifiedDate": 1740531863.938, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ebba8fc8759958a0", - "Version": 92 + "Value": "ami-00a18294952882aa9", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754222.594, + "LastModifiedDate": 1740531864.452, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-04732e7834c378580", - "Version": 128 + "Value": "ami-0504fa6e3d36a805a", + "Version": 130 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105795.793, + "LastModifiedDate": 1740179977.841, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-04bf0ad5063e0d5ae", - "Version": 108 + "Value": "ami-0fc389ea796968582", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754223.073, + "LastModifiedDate": 1740531864.948, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0110c61df1b2de2f0", - "Version": 140 + "Value": "ami-0f18151c3faf21c7b", + "Version": 142 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json index 2f3c28d040c1..41f4cb4c0688 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105802.751, + "LastModifiedDate": 1740179981.744, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0a5d2a8b394817cf1", - "Version": 108 + "Value": "ami-03c97cf0c8e01613d", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105803.308, + "LastModifiedDate": 1740179982.314, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0aa9ffd4190a83e11", - "Version": 108 + "Value": "ami-00710ab5544b60cf7", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105803.878, + "LastModifiedDate": 1740179982.867, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0941253010c787155", - "Version": 108 + "Value": "ami-0194bc210d425e9fe", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105804.413, + "LastModifiedDate": 1740179983.41, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-034a03f97adf7d498", - "Version": 108 + "Value": "ami-07814f2a622004ee6", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105805.965, + "LastModifiedDate": 1740179985.03, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0941253010c787155", - "Version": 108 + "Value": "ami-0194bc210d425e9fe", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754229.815, + "LastModifiedDate": 1740531868.029, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0339dd711870579c8", - "Version": 139 + "Value": "ami-07ec7cb20b9e8826d", + "Version": 141 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754230.357, + "LastModifiedDate": 1740531868.6, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-02d03222240270ad5", - "Version": 139 + "Value": "ami-0eebf19cec0b40d10", + "Version": 141 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754231.363, + "LastModifiedDate": 1740531869.702, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-067a8f10247460fa8", - "Version": 92 + "Value": "ami-087e584bdd8910e31", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105804.92, + "LastModifiedDate": 1740179983.954, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0a5d2a8b394817cf1", - "Version": 108 + "Value": "ami-03c97cf0c8e01613d", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105805.448, + "LastModifiedDate": 1740179984.489, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0aa9ffd4190a83e11", - "Version": 108 + "Value": "ami-00710ab5544b60cf7", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105806.508, + "LastModifiedDate": 1740179985.577, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-034a03f97adf7d498", - "Version": 108 + "Value": "ami-07814f2a622004ee6", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754229.263, + "LastModifiedDate": 1740531867.456, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0e25e1b125d1090eb", - "Version": 108 + "Value": "ami-0da7b3d41e60f4f25", + "Version": 110 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754230.869, + "LastModifiedDate": 1740531869.15, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0d43ee23f1bbf50f1", - "Version": 92 + "Value": "ami-064bc392a0f5f08b0", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754231.859, + "LastModifiedDate": 1740531870.286, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-028f3f570637b12d4", - "Version": 92 + "Value": "ami-0cdb51c8064e24bbc", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754232.38, + "LastModifiedDate": 1740531870.827, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0e8b7a721feb8f465", - "Version": 108 + "Value": "ami-01fdd5697f24695ad", + "Version": 110 }, { "ARN": "arn:aws:ssm:eu-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754232.899, + "LastModifiedDate": 1740531871.384, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-04645fcde5b3e6ba8", - "Version": 139 + "Value": "ami-06b277dfdfd595c06", + "Version": 141 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json index 7939bc0fa7bf..85e542f0d857 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/eu-west-3.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105808.65, + "LastModifiedDate": 1740179988.021, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0185a7e47b4effb1a", - "Version": 108 + "Value": "ami-03884cf3d050bc488", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105809.243, + "LastModifiedDate": 1740179988.612, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-08461dc8cd9e834e0", - "Version": 108 + "Value": "ami-0446057e5961dfab6", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105809.817, + "LastModifiedDate": 1740179989.172, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0eb78176400e7474b", - "Version": 108 + "Value": "ami-0b7076f28404b2e77", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105810.401, + "LastModifiedDate": 1740179989.747, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-099ac9c06fe807584", - "Version": 108 + "Value": "ami-04652d46bb7135e9a", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105812.079, + "LastModifiedDate": 1740179991.43, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0eb78176400e7474b", - "Version": 108 + "Value": "ami-0b7076f28404b2e77", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754235.895, + "LastModifiedDate": 1740531874.508, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-02c5a3215a5b6bf48", - "Version": 141 + "Value": "ami-009fa933414dafea6", + "Version": 143 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754236.462, + "LastModifiedDate": 1740531875.194, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-03f3bb80e24b71cd8", - "Version": 141 + "Value": "ami-004f2229fb9afa698", + "Version": 143 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754237.564, + "LastModifiedDate": 1740531876.349, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-007c8bae005a90991", - "Version": 92 + "Value": "ami-04a8cb5cfd21a1ad6", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105810.956, + "LastModifiedDate": 1740179990.303, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0185a7e47b4effb1a", - "Version": 108 + "Value": "ami-03884cf3d050bc488", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105811.511, + "LastModifiedDate": 1740179990.872, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-08461dc8cd9e834e0", - "Version": 108 + "Value": "ami-0446057e5961dfab6", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105812.631, + "LastModifiedDate": 1740179991.995, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-099ac9c06fe807584", - "Version": 108 + "Value": "ami-04652d46bb7135e9a", + "Version": 112 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754235.325, + "LastModifiedDate": 1740531873.914, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0df8c11ec9532f0b2", - "Version": 108 + "Value": "ami-014ed4a068afec06d", + "Version": 110 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754237.017, + "LastModifiedDate": 1740531875.771, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0a56b2858743b2ad8", - "Version": 92 + "Value": "ami-055c1d546eb5224cf", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754238.1, + "LastModifiedDate": 1740531876.917, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ad5085afd25c69db", - "Version": 92 + "Value": "ami-096206422ae32b993", + "Version": 94 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754238.661, + "LastModifiedDate": 1740531877.502, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0606e7e2029598723", - "Version": 108 + "Value": "ami-0fec7dae0403a1374", + "Version": 110 }, { "ARN": "arn:aws:ssm:eu-west-3::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754239.225, + "LastModifiedDate": 1740531878.086, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0c9895c4b882e8daa", - "Version": 141 + "Value": "ami-0f3ddd16d4e2dc66b", + "Version": 143 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/il-central-1.json b/moto/ssm/resources/ami-amazon-linux-latest/il-central-1.json index 3d242f3a2ae8..80a91e7a9e63 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/il-central-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/il-central-1.json @@ -2,29 +2,29 @@ { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105993.766, + "LastModifiedDate": 1740180163.617, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-03822a05ceb773eaa", - "Version": 71 + "Value": "ami-0632d5335bb97c65e", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105996.006, + "LastModifiedDate": 1740180165.687, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-068b6ee6e65da9502", - "Version": 71 + "Value": "ami-0b1653fd7a34be9af", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105996.694, + "LastModifiedDate": 1740180166.372, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-03822a05ceb773eaa", - "Version": 71 + "Value": "ami-0632d5335bb97c65e", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -38,101 +38,101 @@ { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754368.398, + "LastModifiedDate": 1740532028.006, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0e7c829caecbed37c", - "Version": 64 + "Value": "ami-019787945f6ceded3", + "Version": 66 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754369.115, + "LastModifiedDate": 1740532028.711, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0b66bec06bd21591f", - "Version": 62 + "Value": "ami-0225d8c9b74dfb217", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754370.55, + "LastModifiedDate": 1740532030.122, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0e2390b9eee5604f5", - "Version": 62 + "Value": "ami-0e2b2ef36a48334f1", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754371.236, + "LastModifiedDate": 1740532030.831, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0ccf5988662db03d1", - "Version": 62 + "Value": "ami-076e472dacde091e4", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754371.926, + "LastModifiedDate": 1740532031.528, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-01be8815ae02adc13", - "Version": 62 + "Value": "ami-064116692d6c6fe14", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754372.61, + "LastModifiedDate": 1740532032.245, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-073e3f2f6066c303d", - "Version": 62 + "Value": "ami-0fb6d931348dcde77", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105993.047, + "LastModifiedDate": 1740180162.91, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-068b6ee6e65da9502", - "Version": 71 + "Value": "ami-0b1653fd7a34be9af", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105994.607, + "LastModifiedDate": 1740180164.318, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-073010268660cd71b", - "Version": 71 + "Value": "ami-0e2da027e4efe7a40", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105995.31, + "LastModifiedDate": 1740180165.0, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0c321a13ebb8dbb98", - "Version": 71 + "Value": "ami-0bfe6e05010d8b928", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105997.405, + "LastModifiedDate": 1740180167.049, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-073010268660cd71b", - "Version": 71 + "Value": "ami-0e2da027e4efe7a40", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105998.112, + "LastModifiedDate": 1740180167.736, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0c321a13ebb8dbb98", - "Version": 71 + "Value": "ami-0bfe6e05010d8b928", + "Version": 74 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -155,19 +155,19 @@ { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754367.669, + "LastModifiedDate": 1740532027.251, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0da1d303dcb0f0ccd", - "Version": 62 + "Value": "ami-0ba4a2f4109bddbad", + "Version": 64 }, { "ARN": "arn:aws:ssm:il-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754369.838, + "LastModifiedDate": 1740532029.433, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0db7f5d7f201c4d26", - "Version": 62 + "Value": "ami-07a8108700bbee58f", + "Version": 64 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json b/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json index 43e172af9fee..4f5cecc6d454 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/me-central-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105738.319, + "LastModifiedDate": 1740179888.373, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-031685670e1b875bc", - "Version": 75 + "Value": "ami-03dd7dedb466fda31", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105739.28, + "LastModifiedDate": 1740179889.333, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0b03131bc935cb0de", - "Version": 75 + "Value": "ami-0c4117cd3d8aa9f9a", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105743.074, + "LastModifiedDate": 1740179893.074, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0b03131bc935cb0de", - "Version": 75 + "Value": "ami-0c4117cd3d8aa9f9a", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105740.244, + "LastModifiedDate": 1740179890.276, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0accd27edad254c67", - "Version": 75 + "Value": "ami-08a7bf37706b44e73", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105744.028, + "LastModifiedDate": 1740179894.022, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0accd27edad254c67", - "Version": 75 + "Value": "ami-08a7bf37706b44e73", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754130.935, + "LastModifiedDate": 1740531771.524, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0116d3cf2d97c8e7a", - "Version": 70 + "Value": "ami-0eb36fe6a4e3636ae", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754133.824, + "LastModifiedDate": 1740531774.229, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0fb2afa2b7adddeca", - "Version": 70 + "Value": "ami-07e293d6d039ac984", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754137.593, + "LastModifiedDate": 1740531777.808, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0d1e6b78cb9f98ae7", - "Version": 70 + "Value": "ami-0e54d5a3f4328e05a", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105742.136, + "LastModifiedDate": 1740179892.142, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-031685670e1b875bc", - "Version": 75 + "Value": "ami-03dd7dedb466fda31", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105741.204, + "LastModifiedDate": 1740179891.218, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-024b2b2e900766380", - "Version": 75 + "Value": "ami-0e117f2c5cd0b18b8", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105744.938, + "LastModifiedDate": 1740179894.936, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-024b2b2e900766380", - "Version": 75 + "Value": "ami-0e117f2c5cd0b18b8", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -128,46 +128,46 @@ { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754131.904, + "LastModifiedDate": 1740531772.428, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f350ff53873fc6cf", - "Version": 70 + "Value": "ami-09f52bce03a291ab4", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754132.851, + "LastModifiedDate": 1740531773.324, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0cc92eb1ba6d9c0dc", - "Version": 70 + "Value": "ami-0c437a9e16290f248", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754134.748, + "LastModifiedDate": 1740531775.122, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0d8bc674b24d1a49c", - "Version": 70 + "Value": "ami-0d8d71f4cd0c7075a", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754135.708, + "LastModifiedDate": 1740531776.016, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0f8f9791db5393ddb", - "Version": 70 + "Value": "ami-0fff6077bd2021b02", + "Version": 72 }, { "ARN": "arn:aws:ssm:me-central-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754136.652, + "LastModifiedDate": 1740531776.906, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0811ca93aef6ce42b", - "Version": 70 + "Value": "ami-0179c27d804a9daf4", + "Version": 72 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json b/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json index 1ae330361c04..946451af450c 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/me-south-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105739.849, + "LastModifiedDate": 1740179914.959, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0afb3e5f4088017d3", - "Version": 75 + "Value": "ami-09e1dc28b3e0bb941", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105742.894, + "LastModifiedDate": 1740179918.013, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0afb3e5f4088017d3", - "Version": 75 + "Value": "ami-09e1dc28b3e0bb941", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105741.389, + "LastModifiedDate": 1740179916.543, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-06ca2d126ac448b43", - "Version": 75 + "Value": "ami-0ad1096679fedb45e", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105744.387, + "LastModifiedDate": 1740179919.514, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-06ca2d126ac448b43", - "Version": 75 + "Value": "ami-0ad1096679fedb45e", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105745.135, + "LastModifiedDate": 1740179920.24, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-06f941bda85a79af6", - "Version": 75 + "Value": "ami-05499d41a2a116eea", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-s3", @@ -56,65 +56,65 @@ { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754158.207, + "LastModifiedDate": 1740531799.956, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-04aafc350c7e083c3", - "Version": 101 + "Value": "ami-0fd0526c58d174198", + "Version": 103 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754159.723, + "LastModifiedDate": 1740531801.503, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0f663ce8a02a0acb2", - "Version": 116 + "Value": "ami-01ab988ad98ca064a", + "Version": 118 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754161.916, + "LastModifiedDate": 1740531803.795, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-02f88e2b5f3bdad9c", - "Version": 89 + "Value": "ami-0c57e66e676e78bbb", + "Version": 91 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754163.398, + "LastModifiedDate": 1740531805.339, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-09674cbc215a5b7ce", - "Version": 116 + "Value": "ami-095446478380f8e9d", + "Version": 118 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105740.618, + "LastModifiedDate": 1740179915.795, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0bb436842d19dae73", - "Version": 75 + "Value": "ami-0a95ef992b0368b4c", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105743.631, + "LastModifiedDate": 1740179918.785, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0bb436842d19dae73", - "Version": 75 + "Value": "ami-0a95ef992b0368b4c", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105742.146, + "LastModifiedDate": 1740179917.27, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-06f941bda85a79af6", - "Version": 75 + "Value": "ami-05499d41a2a116eea", + "Version": 78 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -146,38 +146,38 @@ { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754158.967, + "LastModifiedDate": 1740531800.736, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-067d8691c71765888", - "Version": 116 + "Value": "ami-09d75aeb71075f055", + "Version": 118 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754160.457, + "LastModifiedDate": 1740531802.268, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0794f4086d54433ed", - "Version": 89 + "Value": "ami-068fad8f9c68e138e", + "Version": 91 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754161.191, + "LastModifiedDate": 1740531803.034, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0fec9ca392a038d45", - "Version": 89 + "Value": "ami-0bfda9aa3d22a73eb", + "Version": 91 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754162.655, + "LastModifiedDate": 1740531804.579, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0ae778ec612d010b4", - "Version": 101 + "Value": "ami-0026192d7e47b11bd", + "Version": 103 }, { "ARN": "arn:aws:ssm:me-south-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", diff --git a/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json b/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json index f7f9af4f8789..49cc4123406e 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/sa-east-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105815.122, + "LastModifiedDate": 1740179994.824, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-06d5a774486abdb57", - "Version": 108 + "Value": "ami-0ebd60ed5f7e6d01a", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105815.882, + "LastModifiedDate": 1740179995.573, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-05fa5b967b1f219b9", - "Version": 108 + "Value": "ami-02cfee28b56653f5c", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105816.609, + "LastModifiedDate": 1740179996.285, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0211e0a60d4a68496", - "Version": 108 + "Value": "ami-0c02873ff6468ac96", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105817.332, + "LastModifiedDate": 1740179997.013, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0015c20a802f27f24", - "Version": 108 + "Value": "ami-0d04d8442d28ce4e5", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105819.464, + "LastModifiedDate": 1740179999.146, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-0211e0a60d4a68496", - "Version": 108 + "Value": "ami-0c02873ff6468ac96", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754242.757, + "LastModifiedDate": 1740531881.73, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-068567c2d6880f29a", - "Version": 141 + "Value": "ami-00e790d5e50d20718", + "Version": 143 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754243.505, + "LastModifiedDate": 1740531882.524, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0f55eca50ec06ba95", - "Version": 141 + "Value": "ami-081d377a25d396ece", + "Version": 143 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754244.901, + "LastModifiedDate": 1740531884.012, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0ed93a8a86d02589e", - "Version": 92 + "Value": "ami-07175a4964c7dbf51", + "Version": 94 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105818.771, + "LastModifiedDate": 1740179998.459, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-05fa5b967b1f219b9", - "Version": 108 + "Value": "ami-02cfee28b56653f5c", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105820.176, + "LastModifiedDate": 1740179999.863, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0015c20a802f27f24", - "Version": 108 + "Value": "ami-0d04d8442d28ce4e5", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754242.016, + "LastModifiedDate": 1740531880.971, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0a4f5c9168896a4f4", - "Version": 108 + "Value": "ami-0481f5dbc8c608987", + "Version": 110 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754244.212, + "LastModifiedDate": 1740531883.248, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-00e684cf1cbe1ac79", - "Version": 92 + "Value": "ami-0d8043fd324bfd6bb", + "Version": 94 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754245.603, + "LastModifiedDate": 1740531884.748, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-070da0df5c204693e", - "Version": 92 + "Value": "ami-08cebf222384e82ec", + "Version": 94 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754246.314, + "LastModifiedDate": 1740531885.47, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0d633d1d0c11dd87e", - "Version": 108 + "Value": "ami-081f688ac9744913f", + "Version": 110 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105818.052, + "LastModifiedDate": 1740179997.726, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-06d5a774486abdb57", - "Version": 108 + "Value": "ami-0ebd60ed5f7e6d01a", + "Version": 112 }, { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:sa-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754247.066, + "LastModifiedDate": 1740531886.218, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0e26312e27812e528", - "Version": 141 + "Value": "ami-0765ce05601f5b42c", + "Version": 143 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json b/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json index 8da29ecf2e2c..36c9cfdc2c8e 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/us-east-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105822.377, + "LastModifiedDate": 1740180002.735, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-0b29c89c15cfb8a6d", - "Version": 80 + "Value": "ami-0f37c4a1ba152af46", + "Version": 84 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105822.754, + "LastModifiedDate": 1740180003.118, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0c614dee691cbbf37", - "Version": 108 + "Value": "ami-05b10e08d247fb927", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105823.109, + "LastModifiedDate": 1740180003.469, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-025fc28057ecbff0d", - "Version": 108 + "Value": "ami-0df19145e878164b6", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105823.459, + "LastModifiedDate": 1740180003.841, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0a736851bbaca21e6", - "Version": 108 + "Value": "ami-0320f10e7326a3e68", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105824.443, + "LastModifiedDate": 1740180004.885, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-025fc28057ecbff0d", - "Version": 108 + "Value": "ami-0df19145e878164b6", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754250.191, + "LastModifiedDate": 1740531889.624, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-05e2aaacf9d54ddae", - "Version": 139 + "Value": "ami-0f498873b665ccbdb", + "Version": 141 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754250.547, + "LastModifiedDate": 1740531890.04, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-032ae1bccc5be78ca", - "Version": 140 + "Value": "ami-0ace34e9f53c91c5d", + "Version": 142 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754251.227, + "LastModifiedDate": 1740531890.812, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-092fafa51733b3866", - "Version": 92 + "Value": "ami-0e4f2b95820b22bb0", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105824.124, + "LastModifiedDate": 1740180004.543, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0c614dee691cbbf37", - "Version": 108 + "Value": "ami-05b10e08d247fb927", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105824.779, + "LastModifiedDate": 1740180005.214, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0a736851bbaca21e6", - "Version": 108 + "Value": "ami-0320f10e7326a3e68", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754249.836, + "LastModifiedDate": 1740531889.194, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0536466eb5e1e098c", - "Version": 126 + "Value": "ami-08223dc14791687aa", + "Version": 128 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754250.9, + "LastModifiedDate": 1740531890.426, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0ce4291ae0945f636", - "Version": 92 + "Value": "ami-08523976443f71beb", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754251.582, + "LastModifiedDate": 1740531891.195, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0f214d1b3d031dc53", - "Version": 92 + "Value": "ami-02a53b0d62d37a757", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754251.939, + "LastModifiedDate": 1740531891.592, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0a757ae97532b4b38", - "Version": 126 + "Value": "ami-099796375f5591aba", + "Version": 128 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105823.786, + "LastModifiedDate": 1740180004.191, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-0b29c89c15cfb8a6d", - "Version": 80 + "Value": "ami-0f37c4a1ba152af46", + "Version": 84 }, { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754252.29, + "LastModifiedDate": 1740531891.989, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0acee429d2f2911e3", - "Version": 139 + "Value": "ami-08b74ed5790045e09", + "Version": 141 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json b/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json index c701ec72534e..3c6ea4b17cea 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/us-east-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105826.317, + "LastModifiedDate": 1740180007.114, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-031bb1452a43b486d", - "Version": 108 + "Value": "ami-0d30ab9f2d2a4a63a", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105826.631, + "LastModifiedDate": 1740180007.437, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-018875e7376831abe", - "Version": 108 + "Value": "ami-0fc82f4dabc05670b", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105826.926, + "LastModifiedDate": 1740180007.744, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-03940c82eb474940f", - "Version": 108 + "Value": "ami-0e23053bbed0dfd76", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105827.384, + "LastModifiedDate": 1740180008.064, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-068d2c697ea9eefd5", - "Version": 108 + "Value": "ami-05958f3959932c0c6", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105828.288, + "LastModifiedDate": 1740180009.007, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-03940c82eb474940f", - "Version": 108 + "Value": "ami-0e23053bbed0dfd76", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,56 +65,56 @@ { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754254.492, + "LastModifiedDate": 1740531894.432, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-084cd199e6d1c38c6", - "Version": 139 + "Value": "ami-087c15d9c91d7c392", + "Version": 141 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754254.817, + "LastModifiedDate": 1740531894.783, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0a1b723b67d95aa0b", - "Version": 139 + "Value": "ami-0e7b3e7766d24a6ff", + "Version": 141 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754255.438, + "LastModifiedDate": 1740531895.449, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0d87cd594c972f7e6", - "Version": 92 + "Value": "ami-0327d24710a8bdf5a", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105827.686, + "LastModifiedDate": 1740180008.366, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-031bb1452a43b486d", - "Version": 108 + "Value": "ami-0d30ab9f2d2a4a63a", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105827.98, + "LastModifiedDate": 1740180008.715, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-018875e7376831abe", - "Version": 108 + "Value": "ami-0fc82f4dabc05670b", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105828.595, + "LastModifiedDate": 1740180009.399, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-068d2c697ea9eefd5", - "Version": 108 + "Value": "ami-05958f3959932c0c6", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,46 +146,46 @@ { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754254.172, + "LastModifiedDate": 1740531894.034, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0c649d908a8acc79f", - "Version": 127 + "Value": "ami-077017b68f8b403a0", + "Version": 129 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754255.15, + "LastModifiedDate": 1740531895.115, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-03a92a9fe4c1d737a", - "Version": 92 + "Value": "ami-04e9f02d140368f36", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754255.73, + "LastModifiedDate": 1740531895.791, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-07c65f0fc562b275d", - "Version": 92 + "Value": "ami-0ef0a3b4303b17ec5", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754256.023, + "LastModifiedDate": 1740531896.144, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-0105b95f3119505db", - "Version": 127 + "Value": "ami-0c2061ed8133c9960", + "Version": 129 }, { "ARN": "arn:aws:ssm:us-east-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754256.376, + "LastModifiedDate": 1740531896.474, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-038d7fb916be6fe7d", - "Version": 139 + "Value": "ami-08c048583e7accd18", + "Version": 141 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json b/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json index c5b220c45db9..bbdf84fa4bb1 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/us-west-1.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105829.764, + "LastModifiedDate": 1740180010.941, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-06114d52c0976a495", - "Version": 108 + "Value": "ami-033ec81ee893e9f0f", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105830.011, + "LastModifiedDate": 1740180011.149, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-08d4f6bbae664bd41", - "Version": 108 + "Value": "ami-094b981da55429bfc", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105830.237, + "LastModifiedDate": 1740180011.359, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-047be44302360a8c7", - "Version": 108 + "Value": "ami-06b643203f7909461", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105830.438, + "LastModifiedDate": 1740180011.568, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0c4c60455c4fa3ea5", - "Version": 108 + "Value": "ami-005bde867b3e3b55d", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105831.024, + "LastModifiedDate": 1740180012.171, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-047be44302360a8c7", - "Version": 108 + "Value": "ami-06b643203f7909461", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754258.059, + "LastModifiedDate": 1740531898.238, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0f538343c99c514d9", - "Version": 141 + "Value": "ami-0979281b47bd9306b", + "Version": 143 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754258.27, + "LastModifiedDate": 1740531898.446, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0dfa9f9795100123a", - "Version": 141 + "Value": "ami-01891d4f3898759b2", + "Version": 143 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754258.628, + "LastModifiedDate": 1740531898.833, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0083d338f94092649", - "Version": 92 + "Value": "ami-0579f32049c590471", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105830.837, + "LastModifiedDate": 1740180011.961, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-08d4f6bbae664bd41", - "Version": 108 + "Value": "ami-094b981da55429bfc", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105831.218, + "LastModifiedDate": 1740180012.358, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0c4c60455c4fa3ea5", - "Version": 108 + "Value": "ami-005bde867b3e3b55d", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754257.855, + "LastModifiedDate": 1740531897.994, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-01cb79f762a5ac139", - "Version": 108 + "Value": "ami-06531e4e72c7bf42d", + "Version": 110 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754258.448, + "LastModifiedDate": 1740531898.648, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0f30c7150f0c20f37", - "Version": 92 + "Value": "ami-010b368595cf93399", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754258.819, + "LastModifiedDate": 1740531899.02, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0810e059735ce3a9d", - "Version": 92 + "Value": "ami-001b119bd47542f52", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754258.987, + "LastModifiedDate": 1740531899.231, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-019556f0a2ed33748", - "Version": 108 + "Value": "ami-01522daefc32e82ce", + "Version": 110 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105830.637, + "LastModifiedDate": 1740180011.775, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-06114d52c0976a495", - "Version": 108 + "Value": "ami-033ec81ee893e9f0f", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:us-west-1::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754259.19, + "LastModifiedDate": 1740531899.422, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0225af4723bf19f31", - "Version": 141 + "Value": "ami-04a8a201475bda83b", + "Version": 143 } ] \ No newline at end of file diff --git a/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json b/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json index 60eccfeedbf6..55ffb4b83507 100644 --- a/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json +++ b/moto/ssm/resources/ami-amazon-linux-latest/us-west-2.json @@ -2,47 +2,47 @@ { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105832.573, + "LastModifiedDate": 1740180014.256, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-arm64", "Type": "String", - "Value": "ami-067d435ee698a3ff3", - "Version": 108 + "Value": "ami-021c478d943abe2da", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105832.738, + "LastModifiedDate": 1740180014.456, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0a897ba00eaed7398", - "Version": 108 + "Value": "ami-027951e78de46a00e", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "DataType": "text", - "LastModifiedDate": 1738105832.893, + "LastModifiedDate": 1740180014.598, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-arm64", "Type": "String", - "Value": "ami-07eb0ada8ce4a8ac9", - "Version": 108 + "Value": "ami-0ff6043467eb495ac", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "DataType": "text", - "LastModifiedDate": 1738105833.032, + "LastModifiedDate": 1740180014.742, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-6.1-x86_64", "Type": "String", - "Value": "ami-0fd11ab7e33010a99", - "Version": 108 + "Value": "ami-085ead5d496a7df3a", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105833.466, + "LastModifiedDate": 1740180015.164, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-arm64", "Type": "String", - "Value": "ami-07eb0ada8ce4a8ac9", - "Version": 108 + "Value": "ami-0ff6043467eb495ac", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-gp2", @@ -65,47 +65,47 @@ { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754261.133, + "LastModifiedDate": 1740531901.482, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-08c2229f389a1ba08", - "Version": 139 + "Value": "ami-04c217a46f3b71b26", + "Version": 141 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754261.286, + "LastModifiedDate": 1740531901.663, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0d7d857b0b59e8d60", - "Version": 139 + "Value": "ami-04c0ab8f1251f1600", + "Version": 141 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754261.582, + "LastModifiedDate": 1740531901.964, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0e2cdd213f1d9ce7f", - "Version": 92 + "Value": "ami-01e51f6eab4001911", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105833.317, + "LastModifiedDate": 1740180015.017, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-x86_64", "Type": "String", - "Value": "ami-0a897ba00eaed7398", - "Version": 108 + "Value": "ami-027951e78de46a00e", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "DataType": "text", - "LastModifiedDate": 1738105833.625, + "LastModifiedDate": 1740180015.305, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-minimal-kernel-default-x86_64", "Type": "String", - "Value": "ami-0fd11ab7e33010a99", - "Version": 108 + "Value": "ami-085ead5d496a7df3a", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-hvm-x86_64-ebs", @@ -146,47 +146,47 @@ { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754260.988, + "LastModifiedDate": 1740531901.273, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-arm64-gp2", "Type": "String", - "Value": "ami-0943c5647c051803d", - "Version": 127 + "Value": "ami-0e6f666acd96a928f", + "Version": 129 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "DataType": "text", - "LastModifiedDate": 1737754261.431, + "LastModifiedDate": 1740531901.809, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-arm64-gp2", "Type": "String", - "Value": "ami-08f90a6b4d0d8bb1a", - "Version": 92 + "Value": "ami-07cf0ce00f5310f98", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "DataType": "text", - "LastModifiedDate": 1737754261.722, + "LastModifiedDate": 1740531902.129, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-kernel-5.10-hvm-x86_64-gp2", "Type": "String", - "Value": "ami-0696e233fcd5f173e", - "Version": 92 + "Value": "ami-097133556d56b9617", + "Version": 94 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "DataType": "text", - "LastModifiedDate": 1737754261.882, + "LastModifiedDate": 1740531902.289, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-arm64-ebs", "Type": "String", - "Value": "ami-03908669959edfc4d", - "Version": 127 + "Value": "ami-02019c3fe961f228f", + "Version": 129 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "DataType": "text", - "LastModifiedDate": 1738105833.176, + "LastModifiedDate": 1740180014.882, "Name": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-default-arm64", "Type": "String", - "Value": "ami-067d435ee698a3ff3", - "Version": 108 + "Value": "ami-021c478d943abe2da", + "Version": 112 }, { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn-ami-minimal-hvm-x86_64-ebs", @@ -218,10 +218,10 @@ { "ARN": "arn:aws:ssm:us-west-2::parameter/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "DataType": "text", - "LastModifiedDate": 1737754262.013, + "LastModifiedDate": 1740531902.465, "Name": "/aws/service/ami-amazon-linux-latest/amzn2-ami-minimal-hvm-x86_64-ebs", "Type": "String", - "Value": "ami-0b3872a15ade63858", - "Version": 139 + "Value": "ami-06e76e30b61d6b96e", + "Version": 141 } ] \ No newline at end of file